/* =========================================================================
   RADHA SILVIA NICOTARI — Holistic Integrated Care · Byron Bay
   Design system: editorial, warm, grounded.
   ========================================================================= */

/* ---------- Tokens (kept for reference / optional overrides) ---------- */
:root{
  --cream-50:  #faf6ef;
  --cream-100: #f3ece0;
  --cream-200: #e9dfcd;
  --sand-300:  #d8c8af;
  --clay-400:  #c2a987;
  --ocher-500: #b8853a;
  --ocher-600: #9c6f2c;
  --sage-400:  #a3a98c;
  --sage-500:  #7e8773;
  --sage-700:  #4f5a4a;
  --ink-700:   #3a3128;
  --ink-900:   #1f1a14;
  --line:      #e1d6c2;
  --ff-serif: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  --ff-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --container-narrow: 880px;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;
  --shadow-soft: 0 24px 60px -28px rgba(58, 49, 40, .25);
  --shadow-card: 0 18px 40px -28px rgba(58, 49, 40, .35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #3a3128;
  background: #faf6ef;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .25s cubic-bezier(.22,.61,.36,1), opacity .25s cubic-bezier(.22,.61,.36,1); }
hr { border: 0; height: 1px; background: #e1d6c2; margin: 4rem 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  color: #1f1a14;
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1.12;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: 1.05; letter-spacing: -.015em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; font-weight: 600; letter-spacing: .01em; }
p  { margin: 0 0 1em; }
.lead { font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 1.8vw, 1.55rem); line-height: 1.45; color: #1f1a14; font-style: italic; }

.eyebrow {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: #9c6f2c;
  margin: 0 0 1rem;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, 1240px); margin-inline: auto; }
.container.narrow { max-width: 880px; }
.section { padding: 6rem 0; }
.section.sm { padding: 4rem 0; }
.section.lg { padding: 8rem 0; }

.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 4px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}
.btn-primary {
  background: #b8853a; color: #faf6ef;
  border-color: #b8853a;
}
.btn-primary:hover { background: #9c6f2c; border-color: #9c6f2c; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(184,133,58,.5); }
.btn-outline {
  background: transparent; color: #9c6f2c;
  border-color: #b8853a;
}
.btn-outline:hover { background: #b8853a; color: #faf6ef; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #1f1a14;
  border-color: #1f1a14;
}
.btn-ghost:hover { background: #1f1a14; color: #faf6ef; }
.btn-lg { padding: 1.1rem 2rem; font-size: .96rem; }
.btn .arrow { transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #9c6f2c;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .04em;
  border-bottom: 1px solid #b8853a;
  padding-bottom: 2px;
}
.link-arrow:hover { color: #9c6f2c; border-color: #9c6f2c; }
.link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow .arrow { transition: transform .25s cubic-bezier(.22,.61,.36,1); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1.1rem 0;
  z-index: 100;
  transition: background .3s cubic-bezier(.22,.61,.36,1), padding .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .96);
  backdrop-filter: blur(14px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 #e1d6c2;
}
.site-header.dark-bg { color: #faf6ef; }
.site-header.dark-bg .nav-link { color: #faf6ef; }
.site-header.dark-bg.scrolled { color: #1f1a14; }
.site-header.dark-bg.scrolled .nav-link { color: #1f1a14; }

.header-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-mark { height: 44px; width: auto; transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.brand:hover .brand-mark { transform: rotate(-3deg); }
.brand-word {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  color: #4f5a4a;
  letter-spacing: .01em;
  line-height: 1;
}
.site-header.dark-bg .brand-word { color: #faf6ef; }
.site-header.dark-bg.scrolled .brand-word { color: #4f5a4a; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1f1a14;
  position: relative;
  padding: .25rem 0;
}
.nav-link.active::after, .nav-link:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: #b8853a;
}
.nav-link.dropdown { display: inline-flex; align-items: center; gap: .35rem; }

.dropdown-wrap { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #faf6ef;
  min-width: 280px;
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
  box-shadow: 0 30px 60px -28px rgba(58,49,40,.35);
  border: 1px solid #e1d6c2;
  opacity: 0; pointer-events: none;
  transition: opacity .25s cubic-bezier(.22,.61,.36,1), transform .25s cubic-bezier(.22,.61,.36,1);
}
.dropdown-wrap:hover .dropdown-menu, .dropdown-wrap.open .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .5rem 0;
  font-size: .92rem;
  color: #3a3128;
  border-bottom: 1px solid transparent;
}
.dropdown-menu a:hover { color: #9c6f2c; }
.dropdown-menu a + a { border-top: 1px solid #e9dfcd; }

.header-cta { display: inline-flex; align-items: center; gap: 1rem; }

.menu-toggle {
  display: none;
  border: none; background: transparent;
  width: 40px; height: 40px;
  padding: 0;
}
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: #1f1a14; margin: 6px auto; transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s cubic-bezier(.22,.61,.36,1); }
.site-header.dark-bg .menu-toggle span { background: #faf6ef; }
.site-header.dark-bg.scrolled .menu-toggle span { background: #1f1a14; }
.menu-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .main-nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-menu.open ~ .header-cta { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: #faf6ef;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.4rem;
  z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity .4s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #1f1a14;
}
.mobile-menu a.sub { font-size: 1.1rem; font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; color: #3a3128; margin-top: -.7rem; }
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  color: #faf6ef;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  z-index: 0;
  animation: heroZoom 18s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero-bg::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,26,20,.45) 0%, rgba(31,26,20,.15) 35%, rgba(31,26,20,.65) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { color: #faf6ef; margin-bottom: 1.2rem; }
.hero .subtitle { font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.55; opacity: .92; margin-bottom: 2.2rem; max-width: 580px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .credit-bar {
  margin-top: 3rem;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: .85;
}

.hero.compact { min-height: 60vh; }
.hero.medium  { min-height: 72vh; }

/* ---------- Sections / blocks ---------- */
.intro-block { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-block .lead { margin-bottom: 1.5rem; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split .media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
.split .media.wide img { aspect-ratio: 5/6; }
@media (max-width: 800px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .media { order: -1; }
}

/* ---------- Service Card ---------- */
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #f3ece0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(58, 49, 40, .35); }
.service-card .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover .img-wrap img { transform: scale(1.06); }
.service-card .body { padding: 1.5rem 1.6rem 1.7rem; }
.service-card .num {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: .85rem;
  color: #b8853a;
  letter-spacing: .1em;
  margin-bottom: .55rem;
  display: block;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: .4rem; }
.service-card p { font-size: .96rem; color: #3a3128; margin-bottom: 1.1rem; line-height: 1.55; }

/* ---------- Athlete Banner (dark) ---------- */
.dark-banner {
  position: relative;
  color: #faf6ef;
  padding: 8rem 0;
  overflow: hidden;
}
.dark-banner .bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  filter: brightness(.4) saturate(.8);
}
.dark-banner .container { position: relative; }
.dark-banner h2 { color: #faf6ef; max-width: 760px; }
.dark-banner .lead { color: #f3ece0; font-style: normal; }

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.25;
  font-style: italic;
  color: #1f1a14;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}
.pull-quote::before {
  content: "\201C";
  font-size: 5rem;
  color: #b8853a;
  display: block;
  line-height: .8;
  margin-bottom: 1rem;
  opacity: .5;
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: #f3ece0;
  padding: 2rem 2rem 2.2rem;
  border-radius: 8px;
  display: flex; flex-direction: column;
  height: 100%;
}
.testimonial blockquote {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
  color: #1f1a14;
  margin: 0 0 1.2rem;
  padding: 0;
  flex-grow: 1;
}
.testimonial blockquote::before { content: "\201C"; color: #b8853a; font-size: 2rem; line-height: 0; vertical-align: -.3em; margin-right: .15em; }
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4f5a4a;
  font-weight: 500;
}

/* ---------- Numbers / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .n { font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 4.5vw, 3.8rem); color: #b8853a; line-height: 1; display: block; }
.stat .l { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: #4f5a4a; margin-top: .6rem; display: block; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

/* ---------- Bulleted lists (editorial) ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: .85rem 0 .85rem 2rem;
  border-bottom: 1px solid #e1d6c2;
  position: relative;
  font-size: 1.02rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 12px; height: 1.5px; background: #b8853a;
}
.feature-list li:last-child { border-bottom: none; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 1.5rem; }
.step {
  background: #f3ece0;
  padding: 1.7rem 1.8rem;
  border-radius: 8px;
  border-left: 3px solid #b8853a;
}
.step .step-num {
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #b8853a;
  letter-spacing: .15em;
  display: block;
  margin-bottom: .35rem;
}
.step h4 { margin-bottom: .35rem; font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-size: 1.35rem; color: #1f1a14; }
.step p { margin: 0; color: #3a3128; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 1rem; }
.gallery.g-3 { grid-template-columns: repeat(3, 1fr); }
.gallery.g-4 { grid-template-columns: repeat(4, 1fr); }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 8px;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.gallery a { display: block; overflow: hidden; border-radius: 8px; }
.gallery a:hover img { transform: scale(1.04); }
.gallery .wide { grid-column: span 2; aspect-ratio: 8/5; }
.gallery .wide img { aspect-ratio: 8/5; }
@media (max-width: 800px) { .gallery.g-3, .gallery.g-4 { grid-template-columns: repeat(2, 1fr); } .gallery .wide { grid-column: span 2; } }
@media (max-width: 500px) { .gallery.g-3, .gallery.g-4 { grid-template-columns: 1fr; } .gallery .wide { grid-column: span 1; aspect-ratio: 4/3;} }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 1rem 0;
}
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 14px; width: 1px; background: #c2a987;
}
@media (min-width: 800px) { .timeline::before { left: 50%; } }
.tl-row {
  display: grid; grid-template-columns: 40px 1fr; gap: 1.5rem;
  padding: 1.2rem 0;
  position: relative;
}
.tl-row::before {
  content: ""; position: absolute;
  left: 9px; top: 1.8rem; width: 11px; height: 11px; border-radius: 50%;
  background: #b8853a; border: 2px solid #faf6ef; z-index: 1;
}
.tl-year { font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-size: 1.05rem; color: #9c6f2c; padding-top: 1.3rem; }
.tl-body h4 { font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-weight: 500; font-size: 1.3rem; margin: 0 0 .25rem; }
.tl-body p { margin: 0; color: #3a3128; }
@media (min-width: 800px) {
  .tl-row { grid-template-columns: 1fr 60px 1fr; gap: 1rem; }
  .tl-row:nth-child(odd)  { grid-template-areas: "y . b"; }
  .tl-row:nth-child(even) { grid-template-areas: "b . y"; }
  .tl-row:nth-child(odd)  .tl-year { grid-area: y; text-align: right; }
  .tl-row:nth-child(odd)  .tl-body { grid-area: b; }
  .tl-row:nth-child(even) .tl-year { grid-area: y; }
  .tl-row:nth-child(even) .tl-body { grid-area: b; text-align: right; }
  .tl-row::before { left: 50%; transform: translateX(-50%); }
}

/* ---------- Cross-sell / pairs ---------- */
.pair-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.2rem 1.4rem;
  background: #f3ece0;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), background .3s cubic-bezier(.22,.61,.36,1);
}
.pair-card:hover { background: #e9dfcd; transform: translateX(4px); }
.pair-card .pair-icon { font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-size: 1.2rem; color: #b8853a; }
.pair-card h4 { margin: 0 0 .15rem; font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; font-weight: 500; font-size: 1.15rem; color: #1f1a14; }
.pair-card p { margin: 0; font-size: .88rem; color: #3a3128; }

/* ---------- CTA Block (footer of pages) ---------- */
.cta-block {
  background: #4f5a4a;
  color: #faf6ef;
  text-align: center;
  padding: 8rem 1.5rem;
  border-radius: 0;
}
.cta-block h2 { color: #faf6ef; font-style: italic; font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif; max-width: 760px; margin: 0 auto 1.2rem; }
.cta-block p { color: #f3ece0; max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-block .btn-primary { background: #b8853a; border-color: #b8853a; color: #faf6ef; }
.cta-block.cream { background: #f3ece0; color: #1f1a14; }
.cta-block.cream h2 { color: #1f1a14; }
.cta-block.cream p { color: #3a3128; }

/* Authority strip */
.authority-strip {
  background: #f3ece0;
  padding: 1.2rem 0;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4f5a4a;
  border-top: 1px solid #e1d6c2;
  border-bottom: 1px solid #e1d6c2;
}
.authority-strip span + span::before {
  content: "•"; margin: 0 .9rem; color: #b8853a;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1f1a14;
  color: #e9dfcd;
  padding: 6rem 0 1.5rem;
}
.site-footer h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #faf6ef;
  margin-bottom: 1.2rem;
}
.site-footer p, .site-footer a, .site-footer li { color: #e9dfcd; font-size: .94rem; }
.site-footer a:hover { color: #b8853a; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: .25rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 64px; height: auto; flex-shrink: 0; }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
  color: #e9dfcd;
  opacity: .75;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; max-width: 620px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: #4f5a4a;
}
.field input, .field textarea, .field select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  background: transparent;
  border: 1px solid #c2a987;
  border-radius: 4px;
  padding: .85rem 1rem;
  color: #1f1a14;
  transition: border-color .25s cubic-bezier(.22,.61,.36,1), background .25s cubic-bezier(.22,.61,.36,1);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #b8853a;
  background: #faf6ef;
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 800px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: #f3ece0;
  padding: 2.2rem 1.8rem;
  border-radius: 8px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s cubic-bezier(.22,.61,.36,1);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(58, 49, 40, .35); }
.contact-card .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #faf6ef;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: #b8853a;
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.contact-card p { margin-bottom: 1.4rem; font-size: .95rem; flex-grow: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Helpers ---------- */
.center { text-align: center; }
.muted { color: #4f5a4a; }
.divider-mark {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: 1.5rem auto;
  color: #b8853a;
  font-size: 1.2rem;
}
.divider-mark::before, .divider-mark::after {
  content: ""; height: 1px; width: 60px; background: #c2a987;
}
.bg-cream { background: #f3ece0; }
.bg-sand  { background: #e9dfcd; }

/* WhatsApp floating */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.6);
  z-index: 98;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Testimonial with avatar ---------- */
.testimonial .t-person { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.t-avatar {
  position: relative; width: 66px; height: 66px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: #b8853a; color: #faf6ef; display: grid; place-items: center;
  font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: 1.4rem; letter-spacing: .02em;
  box-shadow: 0 8px 20px -10px rgba(58, 49, 40, .55);
}
.t-avatar::before { content: attr(data-initials); }
.t-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.t-person .t-name {
  display: block; font-family: "Cormorant Garamond", "Petrona", Georgia, "Times New Roman", serif;
  font-size: 1.28rem; color: #1f1a14; line-height: 1.15;
}
.t-person .t-role {
  display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: #9c6f2c; font-weight: 600; margin-top: .3rem;
}

/* ---------- Mosaic gallery (preserves each photo's proportions) ---------- */
.mosaic { columns: 3; column-gap: 1rem; }
@media (max-width: 900px) { .mosaic { columns: 2; } }
@media (max-width: 560px) { .mosaic { columns: 1; } }
.mosaic .m-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  box-shadow: 0 18px 40px -30px rgba(58, 49, 40, .5);
}
.mosaic .m-item img {
  width: 100%; height: auto; display: block;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.mosaic .m-item:hover img { transform: scale(1.04); }

/* Selection */
::selection { background: #b8853a; color: #faf6ef; }

/* Print/Focus */
:focus-visible { outline: 2px solid #b8853a; outline-offset: 3px; border-radius: 2px; }
