/* ============================================================
   Coastal Point Digital — Premium Design System
   Fonts:  Fraunces (display serif) + Inter (body)
   Palette:
     --cream:   #faf9f7   warm off-white, main bg
     --cream-2: #f2efe9   slightly deeper, alternating sections
     --ink:     #0d1117   near-black, primary text
     --muted:   #6b7280   secondary text
     --accent:  #1a4fa0   coastal deep blue
     --border:  rgba(13,17,23,0.10)
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #faf9f7;
  --cream-2:      #f2efe9;
  --cream-3:      #e8e3da;
  --ink:          #0d1117;
  --ink-60:       rgba(13,17,23,0.60);
  --ink-30:       rgba(13,17,23,0.30);
  --white:        #ffffff;
  --muted:        #6b7280;
  --mid:          #374151;
  --accent:       #1a4fa0;
  --accent-dark:  #133d82;
  --accent-hi:    #4a82d0;
  --accent-pale:  #eff6ff;
  --border:       rgba(13,17,23,0.10);
  --border-dark:  rgba(255,255,255,0.10);

  --grad-accent:  linear-gradient(135deg, #1a4fa0 0%, #2563c8 100%);
  --grad-dark:    linear-gradient(160deg, #0d1117 0%, #111827 100%);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --dur:       0.3s;
  --dur-slow:  0.6s;
}

/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: 1.4rem; letter-spacing: -0.015em; }

.display-serif { font-family: var(--font-display); }

p { color: var(--muted); line-height: 1.78; }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.label--muted { color: var(--muted); }
.label--light { color: rgba(255,255,255,0.45); }

.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p  { color: rgba(255,255,255,0.52); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1280px; }

/* Section types */
.section         { padding: 9rem 0; }
.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--ink); }
.section--black  { background: #000; }

/* Horizontal rule as design element */
.rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}
.rule--dark { background: var(--border-dark); }

/* ── Buttons ────────────────────────────────────────────────── */
/* Base — square-ish, not pill. Premium agencies use these. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.92rem 2.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: #1c2535;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,17,23,0.2);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
/* Text arrow link — very premium */
.btn--arrow {
  background: none;
  border: none;
  padding: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.btn--arrow .arrow-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.btn--arrow:hover .arrow-icon { transform: translateX(3px); background: var(--accent); }
.btn--arrow--light { color: var(--white); }
.btn--arrow--light .arrow-icon { background: rgba(255,255,255,0.15); }
.btn--arrow--light:hover .arrow-icon { background: var(--accent-hi); }

/* Blue accent button */
.btn--accent {
  background: var(--grad-accent);
  color: var(--white);
  border-color: transparent;
}
.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,79,160,0.25);
  filter: brightness(1.06);
}

/* White btn (on dark) */
.btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), border-bottom var(--dur), box-shadow var(--dur);
}

/* Over light sections: dark text */
.nav__logo-img  { display: none; height: 42px; width: 80px; object-fit: cover; object-position: center top; }
.nav__logo-text { font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.nav__logo-text span { color: var(--accent); }
.nav__links a   { color: var(--mid); }
.nav__toggle span { background: var(--ink); }

/* Scrolled: frosted cream */
.nav.scrolled {
  background: rgba(250,249,247,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled .nav__logo-img  { display: block; mix-blend-mode: multiply; }

/* Nav over dark hero: white text */
.nav--hero .nav__logo-text { color: rgba(255,255,255,0.9); }
.nav--hero .nav__logo-text span { color: var(--accent-hi); }
.nav--hero .nav__links a   { color: rgba(255,255,255,0.7); }
.nav--hero .nav__toggle span { background: rgba(255,255,255,0.9); }
.nav--hero.scrolled .nav__logo-text { color: var(--ink); }
.nav--hero.scrolled .nav__logo-text span { color: var(--accent); }
.nav--hero.scrolled .nav__links a { color: var(--mid); }
.nav--hero.scrolled .nav__toggle span { background: var(--ink); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav__logo { display: flex; align-items: center; }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--dur);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--accent); }
.nav__cta-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink) !important;
  transition: color var(--dur);
}
.nav__cta-link:hover { color: var(--accent) !important; }
.nav--hero .nav__cta-link { color: rgba(255,255,255,0.9) !important; }
.nav--hero.scrolled .nav__cta-link { color: var(--ink) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  z-index: 1001;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
}
.nav__overlay.open { display: block; }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 72%; max-width: 280px;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: var(--cream);
    border-left: 1px solid var(--border);
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    z-index: 1000;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.1rem; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Accent glow */
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,160,0.22) 0%, transparent 65%);
  top: -250px; right: -200px;
  pointer-events: none;
}
.hero__glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,79,160,0.10) 0%, transparent 65%);
  top: auto; right: auto;
  bottom: -100px; left: -150px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
  display: flex;
  flex-direction: column;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-hi);
  box-shadow: 0 0 10px var(--accent-hi);
}
.hero__tag-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero__headline .line { display: block; overflow: hidden; }
.hero__headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}
.hero__headline .word.revealed { transform: translateY(0); opacity: 1; }

/* Italic accent word */
.hero__headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.55);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 3rem;
}
.hero__sub strong { color: rgba(255,255,255,0.82); font-weight: 500; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

/* Bottom strip of hero */
.hero__strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.01em;
}
.hero__stat strong { color: rgba(255,255,255,0.72); font-weight: 600; font-size: 0.88rem; }
.hero__stat-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  cursor: default;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 3rem;
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--mid);
}
.marquee__item strong { color: var(--ink); font-weight: 600; }
.marquee__item-stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 1px; }
.marquee__sep { color: var(--cream-3); font-size: 1.2rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Services (accordion rows) ──────────────────────────────── */
.services-list { border-top: 1px solid var(--border); }

.service-row {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.service-row__header {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  transition: opacity var(--dur);
}
.service-row__header:hover { opacity: 0.72; }

.service-row__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-30);
  letter-spacing: 0.04em;
  transition: color var(--dur);
}
.service-row.open .service-row__num { color: var(--accent); }

.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color var(--dur);
}

.service-row__price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.service-row.open .service-row__price { color: var(--accent); }

.service-row__toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
  flex-shrink: 0;
}
.service-row.open .service-row__toggle {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.service-row__toggle svg {
  width: 14px; height: 14px;
  stroke: var(--ink);
  fill: none; stroke-width: 2; stroke-linecap: round;
}
.service-row.open .service-row__toggle svg { stroke: var(--white); }

.service-row__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.service-row.open .service-row__body { max-height: 300px; }

.service-row__content {
  padding: 0 0 2.5rem 104px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.service-row__desc { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }
.service-row__features { display: flex; flex-direction: column; gap: 0.55rem; }
.service-row__features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--mid); line-height: 1.5;
}
.service-row__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 700px) {
  .service-row__header { grid-template-columns: 52px 1fr; gap: 1rem; }
  .service-row__price { display: none; }
  .service-row__content { padding-left: 0; grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Process steps ────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--border);
  padding-left: 2rem;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; }

.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-3);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.9rem; }

@media (max-width: 768px) {
  .process-step { border-right: none; padding: 0; }
}

/* ── Pricing feature ─────────────────────────────────────────── */
.pricing-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pricing-display { grid-template-columns: 1fr; gap: 3rem; }
}

.pricing-display__left {}
.pricing-display__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.pricing-display__currency {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink-60);
  letter-spacing: -0.02em;
}
.pricing-display__amount {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-display__freq {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pricing-display__right {}
.pricing-cards-stack { display: flex; flex-direction: column; gap: 1px; }
.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item__label { font-size: 0.95rem; color: var(--mid); font-weight: 500; }
.pricing-item__value { font-size: 0.95rem; color: var(--ink); font-weight: 700; white-space: nowrap; }
.pricing-item__value--accent { color: var(--accent); }

/* ── About section ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about__img-wrap {
  position: relative;
}
.about__img-placeholder {
  aspect-ratio: 4/5;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream-3) 100%);
}
.about__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about__img-placeholder-icon {
  position: relative;
  z-index: 1;
  color: var(--cream-3);
}
.about__img-placeholder-icon svg {
  width: 48px; height: 48px;
  stroke: var(--cream-3);
  fill: none; stroke-width: 1.5;
}

/* Floating stat badge on the image */
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about__badge-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

.about__text-label { margin-bottom: 1.5rem; }
.about h2 { margin-bottom: 1.5rem; }
.about__body { font-size: 1.05rem; color: var(--mid); line-height: 1.78; margin-bottom: 2.5rem; }
.about__body p + p { margin-top: 1rem; }

.about__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__stat {}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about__stat-label { font-size: 0.82rem; color: var(--muted); }

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonial-feature {
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  border: 1px solid var(--border);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.testimonial-feature::before {
  content: '\201C';
  position: absolute;
  top: -1rem; left: 2.5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: var(--cream-3);
  pointer-events: none;
}
.testimonial-feature__stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
.testimonial-feature__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-feature__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-feature__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 0.9rem;
}
.testimonial-feature__info strong { display: block; font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.testimonial-feature__info span   { font-size: 0.82rem; color: var(--muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-mini {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.testimonial-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-mini__stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-mini blockquote { font-size: 0.93rem; color: var(--mid); line-height: 1.72; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-mini__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-mini__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.testimonial-mini__info strong { display: block; font-size: 0.9rem; color: var(--ink); }
.testimonial-mini__info span   { font-size: 0.78rem; color: var(--muted); }

/* ── Contact / Booking section ─────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } }

.contact-split__left {
  background: var(--ink);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact-split__left::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,160,0.2) 0%, transparent 65%);
  bottom: -150px; right: -150px;
  pointer-events: none;
}
.contact-split__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.contact-split__left > * { position: relative; z-index: 1; }

.contact-split__left h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-split__left p  { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; max-width: 380px; }

.contact-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}
.contact-avail__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.85rem; }
.contact-info-item svg { width: 17px; height: 17px; stroke: var(--accent-hi); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-info-item span { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.contact-info-item strong { color: rgba(255,255,255,0.8); }

.contact-split__right {
  background: var(--cream);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split__right h3 { margin-bottom: 0.5rem; }
.contact-split__right > p { margin-bottom: 2.5rem; font-size: 0.95rem; }

@media (max-width: 900px) {
  .contact-split__left  { padding: 5rem 2rem; }
  .contact-split__right { padding: 4rem 2rem; }
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

.form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.form__group label { font-size: 0.82rem; font-weight: 600; color: var(--mid); letter-spacing: 0.01em; }
.form__group input,
.form__group textarea,
.form__group select {
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none; appearance: none;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,79,160,0.08);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: #c8c5bf; }
.form__success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #166534;
  font-weight: 600;
  font-size: 0.93rem;
}

/* ── Page hero (inner pages) ───────────────────────────────────── */
.page-hero {
  background: var(--ink);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,160,0.18) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.page-hero h1   { color: var(--white); margin-bottom: 1.25rem; position: relative; }
.page-hero p    { color: rgba(255,255,255,0.52); font-size: 1.08rem; max-width: 500px; position: relative; }
.page-hero .label { position: relative; margin-bottom: 1.25rem; }

/* ── CTA banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,79,160,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2  { color: var(--white); margin-bottom: 1rem; }
.cta-banner p   { color: rgba(255,255,255,0.5); max-width: 460px; margin: 0 auto 2.5rem; }
@media (max-width: 640px) { .cta-banner { padding: 3rem 1.75rem; } }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color var(--dur);
}
.faq__question:hover { color: var(--accent); }
.faq__question svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.faq__item.open .faq__question { color: var(--accent); }
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq__item.open .faq__answer { max-height: 240px; }
.faq__answer p { padding-bottom: 1.4rem; font-size: 0.95rem; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 4rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 640px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer__logo img     { display: none; }
.footer__logo-text    { font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: -0.03em; }
.footer__logo-text span { color: var(--accent-hi); }
.footer__tagline      { font-size: 0.88rem; color: rgba(255,255,255,0.3); }

.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; align-items: start; }
.footer__nav a { color: rgba(255,255,255,0.42); font-size: 0.88rem; transition: color var(--dur); }
.footer__nav a:hover { color: var(--accent-hi); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  flex-wrap: wrap;
}
.footer__copy { color: rgba(255,255,255,0.22); font-size: 0.78rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.22); font-size: 0.78rem; transition: color var(--dur); }
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* ── Scroll animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.10s; }
.fade-up:nth-child(3) { transition-delay: 0.20s; }
.fade-up:nth-child(4) { transition-delay: 0.30s; }

/* Stagger wrapper: applies delay to direct .fade-up children */
.stagger .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.15s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.25s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.35s; }

/* ── Utility ────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }

/* ── Responsive tweaks ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .section   { padding: 6rem 0; }
  .container { padding: 0 1.5rem; }
  .testimonial-feature { padding: 2.5rem 2rem; }
  .about__badge { right: 0; bottom: -1rem; }
}
