/* ============================================
   HASITHA URO CARE — Design System
   ============================================ */

:root {
  /* Color palette */
  --ink: #0E1F22;
  --ink-soft: #2A3940;
  --muted: #5C6770;
  --line: #DDD4C5;
  --line-soft: #E8E2D5;
  --cream: #F7F3EB;
  --cream-deep: #EFE9DA;
  --paper: #FBFAF6;
  --teal: #0A3D3E;
  --teal-mid: #1A5E5F;
  --teal-soft: #3E7E7F;
  --gold: #C8A06D;
  --gold-deep: #A88350;
  --rose: #C97B6A;
  --white: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 31, 34, 0.04);
  --shadow-md: 0 8px 32px rgba(14, 31, 34, 0.08);
  --shadow-lg: 0 24px 64px rgba(14, 31, 34, 0.12);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

h1.display { font-size: clamp(2.5rem, 6.5vw, 5.5rem); }
h2.display { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3.display { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announce {
  background: var(--teal);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.announce span { opacity: 0.8; }

.announce a {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.announce a:hover { text-decoration: underline; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(251, 250, 246, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

.brand-mark svg { width: 22px; height: 22px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding: 10px 0;
}

.btn-ghost::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 18px;
  font-size: 11px;
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */

.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--teal); }

.float-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.3;
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.float-btn svg { width: 26px; height: 26px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--cream);
  padding: 60px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  margin: 24px 0 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.hero-stat .num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.hero-stat .num em {
  color: var(--gold-deep);
  font-style: italic;
}

.hero-stat .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Hero image */
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 61, 62, 0.4) 100%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  background: var(--paper);
  padding: 20px 24px;
  z-index: 3;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}

.hero-badge.top-left {
  top: 32px;
  left: -32px;
}

.hero-badge.bot-right {
  bottom: 32px;
  right: -32px;
}

.hero-badge .title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.hero-badge .sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Decorative circle */
.hero-decor {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cream-deep), transparent 70%);
  opacity: 0.6;
  z-index: 1;
}

/* ============================================
   SCROLLING MARQUEE
   ============================================ */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scroll 35s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee-track .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.section-head-meta {
  position: sticky;
  top: 120px;
}

.section-head-meta .num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.section-head .eyebrow {
  margin-bottom: 24px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-card {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  background: var(--cream);
}

.service-card:nth-child(3n) { border-right: none; }

.service-num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--teal);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon svg {
  color: var(--gold);
}

.service-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 8px;
  flex-grow: 1;
}

.service-card .arrow {
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
  color: var(--teal);
  font-size: 18px;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   CREDENTIALS / TRUST STRIP
   ============================================ */

.trust {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--teal);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.trust-num em { color: var(--gold-deep); font-style: italic; }

.trust-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 18ch;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-block {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  overflow: hidden;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-decor {
  position: absolute;
  top: -24px;
  left: -24px;
  right: 32px;
  bottom: 32px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-image-wrap {
  position: relative;
}

.about-content h2 { margin: 24px 0 32px; }

.about-list {
  list-style: none;
  margin-top: 40px;
}

.about-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.about-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.about-list .key {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  flex-shrink: 0;
  width: 140px;
  font-size: 15px;
}

.about-list .val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials .eyebrow {
  color: var(--gold);
}

.testimonials .eyebrow::before {
  background: var(--gold);
}

.testimonials .display { color: var(--cream); }
.testimonials .display em { color: var(--gold); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial {
  background: rgba(247, 243, 235, 0.04);
  border: 1px solid rgba(200, 160, 109, 0.2);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(247, 243, 235, 0.08);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
  font-style: italic;
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 160, 109, 0.2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-condition {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.6);
  margin-top: 4px;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT PREVIEW / BIG CTA
   ============================================ */

.cta-band {
  background: var(--cream);
  padding: 120px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-content h2 { margin: 24px 0 32px; }

.cta-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-info {
  background: var(--paper);
  padding: 48px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.cta-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.cta-info-item:last-child { border-bottom: none; }
.cta-info-item:first-child { padding-top: 0; }

.cta-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.cta-info-icon svg { width: 18px; height: 18px; }

.cta-info-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.cta-info-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}

.cta-info-value a:hover { color: var(--teal); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247, 243, 235, 0.7);
  max-width: 36ch;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(247, 243, 235, 0.75);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom small {
  font-size: 12px;
  color: rgba(247, 243, 235, 0.5);
  letter-spacing: 0.04em;
}

.gud-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(247, 243, 235, 0.6);
  background: rgba(247, 243, 235, 0.05);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.gud-credit:hover {
  background: rgba(200, 160, 109, 0.15);
  color: var(--gold);
}

.gud-credit img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.gud-credit strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */

.page-header {
  background: var(--cream);
  padding: 80px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.page-header h1 { margin-top: 24px; max-width: 18ch; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--gold); }

.page-header-decor {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--cream-deep), transparent 70%);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.bio-block {
  background: var(--paper);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

.bio-image-wrap {
  position: sticky;
  top: 120px;
}

.bio-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 4px;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-image-card {
  background: var(--cream);
  padding: 24px;
  border-left: 2px solid var(--gold);
}

.bio-image-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.bio-image-quals {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.bio-image-spec {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.bio-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.bio-content p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 300;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 8px;
  color: var(--teal);
}

.bio-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.bio-section h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
}

.bio-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-section li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.bio-section li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 4px;
}

.education-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.education-card:last-child { border-bottom: none; }

.edu-year {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 14px;
}

.edu-degree {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
}

.edu-place {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.edu-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 32px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--teal); }

.faq-question-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-right: 24px;
}

.faq-question-text { flex-grow: 1; }

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 18px;
  color: var(--teal);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding: 0 60px 32px 56px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner ul {
  list-style: none;
  margin-top: 12px;
}

.faq-answer-inner ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.faq-answer-inner ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  background: var(--cream);
  padding: 64px;
  border-radius: 4px;
  align-items: center;
  margin-bottom: 80px;
}

.rating-big {
  text-align: center;
}

.rating-num {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--teal);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.rating-num em { color: var(--gold-deep); font-style: italic; }

.rating-stars {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 6px;
  margin: 12px 0;
}

.rating-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.rating-bar-track {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.review-name-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.review-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.review-condition {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--teal);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card {
  padding: 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-card-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}

.contact-card-value a {
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-card-value a:hover {
  border-color: var(--gold);
}

.contact-hours {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.6;
}

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--paper);
  padding: 20px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.map-overlay .title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}

.map-overlay .addr {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .hero-grid,
  .about-grid,
  .cta-grid,
  .bio-grid,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-head-meta { position: static; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: none; }

  .testimonial-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) { border-right: none; }

  .hero-badge.top-left { left: 0; }
  .hero-badge.bot-right { right: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .bio-image-wrap { position: static; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  section { padding: 64px 0; }

  .announce { font-size: 11px; gap: 12px; padding: 8px 16px; }
  .announce span:first-child { display: none; }

  .nav-inner { padding: 16px 20px; }
  .nav-cta .btn { display: none; }
  .brand-sub { display: none; }

  .hero { padding: 32px 0 64px; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-badge { display: none; }

  .marquee-track { font-size: 20px; gap: 32px; }
  .marquee-track span { gap: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .trust-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .faq-answer-inner { padding: 0 0 32px 0; }
  .faq-question { font-size: 18px; gap: 16px; }

  .float-actions { right: 16px; bottom: 16px; }
  .float-btn { width: 52px; height: 52px; }

  .education-card { grid-template-columns: 1fr; gap: 8px; }

  .cta-info { padding: 28px; }

  .bio-content p:first-of-type::first-letter { font-size: 56px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.2s; }
.reveal-3 { animation-delay: 0.35s; }
.reveal-4 { animation-delay: 0.5s; }
.reveal-5 { animation-delay: 0.65s; }
.reveal-6 { animation-delay: 0.8s; }

/* Intersection observer reveals */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
