@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a1f3a;
  --navy-light: #252b4a;
  --lavender: #9b8ec4;
  --lavender-light: #c4b8e8;
  --cream: #f5f0e8;
  --cream-dark: #ede5d8;
  --gold: #c9a96e;
  --text: #2c2c3e;
  --text-muted: #6b6880;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "DM Sans", sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26, 31, 58, 0.1);
  --shadow-lg: 0 12px 48px rgba(26, 31, 58, 0.18);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--navy);
}
.btn-dark:hover {
  background: transparent;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
.section-title.light {
  color: var(--cream);
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 10px;
}
.section-sub.light {
  color: var(--lavender-light);
}

.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 10px auto 0;
}

.tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-gold {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
}
.tag-lavender {
  background: rgba(155, 142, 196, 0.15);
  color: var(--lavender);
}

/* ═══════════════════════════════════════
   HEADER — Collapsible slide-in
═══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#site-header.visible {
  transform: translateY(0);
  pointer-events: all;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 31, 58, 0.97);
  backdrop-filter: blur(16px);
  padding: 0 32px;
  height: 62px;
  border-bottom: 1px solid rgba(155, 142, 196, 0.2);
}
.header-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.75);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(155, 142, 196, 0.18);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: rgba(155, 142, 196, 0.18);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(26, 31, 58, 0.99);
  padding: 16px 24px 20px;
  border-bottom: 1px solid rgba(155, 142, 196, 0.2);
}
.mobile-nav a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.8);
  padding: 9px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--cream);
  background: rgba(155, 142, 196, 0.18);
}
.mobile-nav .mobile-cta {
  margin-top: 10px;
}

.header-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 999;
  cursor: pointer;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1001;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #2d2250 55%,
    #1a1f3a 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 65% 50%,
    rgba(155, 142, 196, 0.12) 0%,
    transparent 70%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 40px;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--lavender-light);
}
.hero-text {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 440px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(155, 142, 196, 0.2);
}
.stat-item .num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 3px;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: 24px 8px 24px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(155, 142, 196, 0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 190px;
}
.hero-card .card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
}
.hero-card .card-sub {
  font-size: 0.72rem;
  color: var(--lavender-light);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════ */
.intro-strip {
  background: var(--navy-light);
  padding: 18px 0;
  border-bottom: 1px solid rgba(155, 142, 196, 0.12);
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.6);
}
.strip-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-section {
  padding: 86px 0;
  background: var(--cream);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.how-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--gold));
}
.how-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(155, 142, 196, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.how-icon {
  font-size: 1.6rem;
  color: var(--lavender);
  margin-bottom: 14px;
}
.how-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.how-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   FEATURES SPLIT
═══════════════════════════════════════ */
.features-section {
  padding: 86px 0;
  background: var(--cream-dark);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lavender), #7b6db0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.features-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.features-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  padding: 86px 0;
  background: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(155, 142, 196, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.testi-card:hover {
  border-color: var(--lavender);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--white);
}
.testi-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
}
.testi-role {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   APPROACH / PHILOSOPHY
═══════════════════════════════════════ */
.approach-section {
  padding: 86px 0;
  background: var(--cream);
}
.approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.approach-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.approach-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.approach-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.approach-point {
  display: flex;
  gap: 14px;
}
.ap-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lavender);
  flex-shrink: 0;
  margin-top: 6px;
}
.approach-point h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.approach-point p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #2d2250 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(155, 142, 196, 0.1) 0%,
    transparent 70%
  );
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band .section-title {
  margin-bottom: 12px;
}
.cta-band .section-sub {
  margin: 0 auto;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   SUBPAGE HERO
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2250 100%);
  padding: 110px 0 64px;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a {
  color: var(--lavender-light);
}
.page-hero .breadcrumb i {
  font-size: 0.6rem;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  font-weight: 300;
}
.page-hero p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  max-width: 560px;
  margin: 14px auto 0;
}

/* ═══════════════════════════════════════
   CONTENT SECTIONS (subpages)
═══════════════════════════════════════ */
.content-section {
  padding: 72px 0;
}
.content-section.bg-alt {
  background: var(--cream-dark);
}
.content-section.bg-dark {
  background: var(--navy);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.content-article h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.content-article h2.light {
  color: var(--cream);
}
.content-article p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-article p.light {
  color: rgba(245, 240, 232, 0.7);
}
.content-article ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.content-article ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.content-article ul li i {
  color: var(--lavender);
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.content-article ul.light-list li {
  color: rgba(245, 240, 232, 0.7);
}
.content-article ul.light-list li i {
  color: var(--gold);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.tip-card:hover {
  transform: translateY(-3px);
}
.tip-card i {
  font-size: 1.4rem;
  color: var(--lavender);
  margin-bottom: 12px;
}
.tip-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.tip-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.step-row h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.step-row p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.6);
}

.quote-block {
  background: linear-gradient(135deg, var(--lavender), #7b6db0);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.quote-block cite {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 31, 58, 0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover {
  background: rgba(155, 142, 196, 0.06);
}
.faq-q i {
  color: var(--lavender);
  transition: transform var(--transition);
  font-size: 0.75rem;
}
.faq-q.open i {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 20px 16px;
}
.faq-a p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  font-size: 1.8rem;
  color: var(--lavender);
  margin-bottom: 12px;
}
.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--lavender), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.team-card .role {
  font-size: 0.75rem;
  color: var(--lavender);
  margin-bottom: 8px;
}
.team-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-section {
  padding: 72px 0;
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.contact-info-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(155, 142, 196, 0.12);
}
.contact-info-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.contact-info-panel > p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(155, 142, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-text .cd-label {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cd-text .cd-value {
  font-size: 0.88rem;
  color: var(--cream);
}

.contact-form-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-panel > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(155, 142, 196, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--cream);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(155, 142, 196, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
}
.consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--lavender);
  flex-shrink: 0;
  margin-top: 2px;
}
.consent-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-row label a {
  color: var(--lavender);
  text-decoration: underline;
}

.map-section {
  padding: 0 0 72px;
  background: var(--cream);
}
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════
   404 & THANK YOU
═══════════════════════════════════════ */
.full-page-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2d2250 100%);
  padding: 48px 24px;
}
.full-page-inner {
  max-width: 540px;
}
.full-page-icon {
  font-size: 3.5rem;
  color: var(--lavender);
  margin-bottom: 20px;
}
.full-page-section h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 14px;
}
.full-page-section p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 28px;
}
.full-page-section .btn-outline {
  margin: 6px;
}

/* ═══════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════ */
.policy-section {
  padding: 72px 0 80px;
}
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}
.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 32px 0 10px;
}
.policy-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 22px 0 8px;
}
.policy-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.policy-content ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  list-style: disc;
}
.policy-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.policy-date i {
  color: var(--lavender);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(155, 142, 196, 0.12);
  padding: 36px 0 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--lavender-light);
}
.footer-copy {
  font-size: 0.73rem;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(155, 142, 196, 0.1);
}

/* ═══════════════════════════════════════
   COOKIE POPUP
═══════════════════════════════════════ */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(640px, calc(100vw - 48px));
  background: rgba(26, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(155, 142, 196, 0.25);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  opacity: 0;
}
.cookie-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-popup.hide {
  transform: translateX(-50%) translateY(130px);
  opacity: 0;
}
.cookie-text {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
  min-width: 200px;
}
.cookie-text a {
  color: var(--lavender-light);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity var(--transition);
}
.cookie-accept:hover {
  opacity: 0.85;
}
.cookie-decline {
  background: transparent;
  color: rgba(245, 240, 232, 0.5);
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}

/* ═══════════════════════════════════════
   PRODUCTS / SUBPAGE SPECIALS
═══════════════════════════════════════ */
.products-section {
  padding: 86px 0;
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-top {
  background: linear-gradient(135deg, var(--navy), #2d2250);
  padding: 36px 24px;
  text-align: center;
}
.product-icon {
  font-size: 2.2rem;
  color: var(--lavender-light);
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
}
.product-body {
  padding: 22px 22px 26px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-features li i {
  color: var(--lavender);
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-img-wrap {
    display: none;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .approach-cols {
    grid-template-columns: 1fr;
  }
  .approach-img-wrap {
    display: none;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-two-col {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 948px) {
  .header-inner {
    padding: 0 20px;
  }
  .nav-links,
  .header-cta .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
  }
  .mobile-nav.open {
    display: flex;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }
  .intro-strip-inner {
    gap: 20px;
  }
}

@media (max-width: 440px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    justify-content: center;
  }
  .contact-form-panel {
    padding: 28px 20px;
  }
  .contact-info-panel {
    padding: 28px 20px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cookie-popup {
    bottom: 12px;
    padding: 16px 18px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 12px;
  }
  .hero-badge {
    font-size: 0.65rem;
  }
}
