/* ==========================================================================
   Vishwa Financial Solutions Services (VFSS) — Advisor Website
   Design direction: "Ledger & Seal" — a mature, credential-led identity for
   a 28-year MDRT advisor. Deep navy + brass gold + ivory. Fraunces (serif,
   certificate-like gravitas) paired with Work Sans (clean, legible body).
   Recurring motif: the circular award seal, echoing MDRT/Zonal Club medals.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-deep:   #0E2340;
  --navy-mid:    #163257;
  --navy-soft:   #24466F;
  --gold:        #B08D46;
  --gold-light:  #D9BE83;
  --gold-pale:   #F1E4C4;
  --ivory:       #FAF6ED;
  --ivory-dim:   #F1EADA;
  --ink:         #1C2430;
  --slate:       #5A6675;
  --slate-light: #8895A3;
  --white:       #FFFFFF;
  --line:        rgba(14, 35, 64, 0.12);
  --line-gold:   rgba(176, 141, 70, 0.35);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 50px -25px rgba(14, 35, 64, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(14, 35, 64, 0.28);
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.15;
}

.section {
  padding: 96px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-top: 14px;
}
.section-head p {
  color: var(--slate);
  margin-top: 16px;
  font-size: 1.02rem;
}
.section-head.center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before,
.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section-alt { background: var(--white); }
.section-navy {
  background: var(--navy-deep);
  color: var(--ivory-dim);
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy .section-head p { color: rgba(250, 246, 237, 0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 14px 30px -14px rgba(176, 141, 70, 0.65);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(176, 141, 70, 0.8); }
.btn-outline {
  border: 1.5px solid rgba(250, 246, 237, 0.5);
  color: var(--ivory);
}
.btn-outline:hover { background: rgba(250, 246, 237, 0.1); border-color: var(--white); }
.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: #063014;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(37, 211, 102, 0.7); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(14, 35, 64, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(14, 35, 64, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-seal {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-text .brand-sub {
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: rgba(250, 246, 237, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,237,0.35);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 600;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top {
  display: flex;
  justify-content: flex-end;
}
.mobile-nav-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,237,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.mobile-nav ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav a {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250,246,237,0.1);
}
.mobile-nav .header-cta { margin-top: auto; flex-direction: column; align-items: stretch; }
.mobile-nav .header-cta .btn { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  padding: 168px 0 110px;
  overflow: hidden;
  color: var(--ivory);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(250,246,237,0.035) 0px, rgba(250,246,237,0.035) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(250,246,237,0.035) 0px, rgba(250,246,237,0.035) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,70,0.22), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--gold-light);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(250, 246, 237, 0.78);
  max-width: 520px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats {
  margin-top: 52px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-light);
}
.hero-stat .label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,237,0.6);
  margin-top: 4px;
}

.hero-portrait {
  position: relative;
  justify-self: center;
}
.portrait-frame {
  position: relative;
  width: min(360px, 82vw);
  border: 1.5px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(250, 246, 237, 0.04);
}
.portrait-frame img {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
}
.portrait-seal {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}
.portrait-seal .seal-num {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
}
.portrait-seal .seal-label {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,237,0.75);
  margin-top: 2px;
}
.portrait-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-portrait { justify-self: start; margin-top: 20px; }
  .hero { padding: 140px 0 80px; }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.about-mission {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy-deep);
  line-height: 1.5;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  margin-top: 22px;
}
.about-copy p { color: var(--slate); margin-top: 18px; }

.timeline {
  margin-top: 8px;
  position: relative;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 1.5px;
  background: var(--line-gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 34px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2.5px solid var(--gold);
}
.timeline-item .t-year {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
}
.timeline-item h4 { font-size: 1.08rem; margin-top: 4px; }
.timeline-item p { color: var(--slate); margin-top: 6px; font-size: 0.95rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-gold);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ivory-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.18rem;
  margin-top: 20px;
}
.service-card p {
  color: var(--slate);
  font-size: 0.94rem;
  margin-top: 10px;
}
.service-card ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 0.88rem;
  color: var(--navy-mid);
  padding-left: 18px;
  position: relative;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1.5px;
  background: var(--gold);
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item { text-align: left; }
.why-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
}
.why-item h4 { color: var(--white); margin-top: 14px; font-size: 1.05rem; }
.why-item p { color: rgba(250,246,237,0.65); margin-top: 8px; font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
}
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-card p {
  color: var(--ink);
  font-size: 0.96rem;
  margin-top: 4px;
  min-height: 96px;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ivory-dim);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.t-person .t-name { font-weight: 600; font-size: 0.92rem; color: var(--navy-deep); }
.t-person .t-role { font-size: 0.8rem; color: var(--slate); }
.testimonial-disclaimer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--slate-light);
  text-align: center;
}

/* ---------- Appointment ---------- */
.appointment-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.appointment-info {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 52px 44px;
  position: relative;
}
.appointment-info h3 { color: var(--white); font-size: 1.5rem; }
.appointment-info p { color: rgba(250,246,237,0.72); margin-top: 14px; font-size: 0.95rem; }
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; }
.contact-list .ci {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ci svg { width: 16px; height: 16px; }

.appointment-form { padding: 52px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #E9F7EE;
  color: #1E6B3C;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .appointment-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 4px 24px;
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 680px;
}

/* ---------- Gallery preview strip (on homepage) ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-strip a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-strip a:hover img { transform: scale(1.06); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,246,237,0.7);
  padding: 74px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}
.footer-brand .brand-name { color: var(--white); font-size: 1.15rem; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; color: rgba(250,246,237,0.6); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(250,246,237,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(250,246,237,0.5);
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 400;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  animation: pulse-wa 2.6s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Simple page hero (legal/gallery pages) ---------- */
.page-hero {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(250,246,237,0.03) 0px, rgba(250,246,237,0.03) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(250,246,237,0.03) 0px, rgba(250,246,237,0.03) 1px, transparent 1px, transparent 64px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 14px; }
.page-hero p { color: rgba(250,246,237,0.7); margin-top: 14px; max-width: 560px; }
.breadcrumb { font-size: 0.85rem; color: rgba(250,246,237,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }

.legal-content {
  padding: 80px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--slate);
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content .updated {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Gallery page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ivory-dim);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(14,35,64,0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { gap: 30px; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .appointment-info, .appointment-form { padding: 36px 26px; }
  .hero { padding: 128px 0 64px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
