/* Sophia Souto — Design System */
:root {
  --oat: #faf8f4;
  --beige: #e8dfd2;
  --beige-dark: #d4c8b8;
  --bronze: #9a7b52;
  --bronze-light: #b8956a;
  --bronze-dark: #7a6240;
  --ink: #2c2825;
  --ink-muted: #5c554d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 40, 37, 0.1);
  --shadow-lg: 0 16px 48px rgba(44, 40, 37, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--oat);
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

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

a {
  color: var(--bronze-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--bronze); }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { margin: 0 0 var(--space-sm); }

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}

.btn-primary:hover {
  background: var(--bronze-dark);
  border-color: var(--bronze-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--beige-dark);
}

.btn-secondary:hover {
  background: var(--beige);
  color: var(--ink);
}

.btn-ghost {
  background: var(--white);
  color: var(--bronze-dark);
  border-color: var(--beige-dark);
}

.btn-ghost:hover {
  background: var(--beige);
}

.btn-sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.97);
  border-bottom: 1px solid var(--beige-dark);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  height: var(--header-h);
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { width: 24px; height: 24px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    gap: 1.25rem;
  }

  .nav-desktop a {
    text-decoration: none;
    color: var(--ink-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
  }

  .nav-desktop a:hover,
  .nav-desktop a[aria-current="page"] {
    color: var(--bronze-dark);
    border-bottom-color: var(--bronze);
  }
}

.header-ctas {
  display: none;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .header-ctas { display: flex; }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile menu — full-height opaque overlay, sibling of header */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  z-index: 200;
  background: var(--oat);
  padding: calc(var(--header-h) + var(--space-md)) var(--space-md) var(--space-lg);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--beige);
}

.mobile-menu a:hover {
  background: var(--beige);
  color: var(--bronze-dark);
}

.mobile-menu-ctas {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Hero split */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
}

.hero-split {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bronze-dark);
  background: var(--beige);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 42ch;
  margin-bottom: var(--space-md);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

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

@media (min-width: 900px) {
  .hero-image-wrap { aspect-ratio: 5 / 4; }
}

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

.hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(250, 248, 244, 0.95);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bronze-dark);
}

/* Trust bar */
.trust-bar {
  background: var(--ink);
  color: var(--oat);
  padding: var(--space-md) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bronze-light);
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--beige);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.section-header p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.geo-answer {
  background: var(--white);
  border-left: 4px solid var(--bronze);
  padding: var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  padding: var(--space-md);
}

.service-card h3 { margin: 0 0 0.5rem; }

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.service-price {
  font-weight: 700;
  color: var(--bronze-dark);
  font-size: 0.95rem;
}

/* Differentials */
.diff-list {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .diff-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .diff-list { grid-template-columns: repeat(3, 1fr); }
}

.diff-item {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige-dark);
}

.diff-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--bronze);
  font-size: 1.25rem;
}

/* Testimonials */
.reviews-summary {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--bronze);
  line-height: 1;
}

.review-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
}

.review-stars { color: #e8a317; margin-bottom: 0.5rem; }

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  color: var(--bronze-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige-dark);
}

.hours-table td:last-child { text-align: right; font-weight: 500; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--beige-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 56px;
  padding: var(--space-sm) 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

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

.faq-answer-inner {
  padding-bottom: var(--space-md);
  color: var(--ink-muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--bronze-dark) 0%, var(--bronze) 100%);
  color: var(--white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: var(--space-sm); }

.cta-band p {
  opacity: 0.95;
  max-width: 520px;
  margin: 0 auto var(--space-md);
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--bronze-dark);
  border-color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--oat);
  border-color: var(--oat);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--oat);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.site-footer a {
  color: var(--bronze-light);
  text-decoration: none;
}

.site-footer a:hover { color: var(--oat); }

.footer-logo .logo-name { color: var(--oat); }

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li { margin-bottom: 0.5rem; }

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--beige-dark);
  box-shadow: 0 -4px 16px rgba(44, 40, 37, 0.08);
  height: var(--mobile-bar-h);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--mobile-bar-h);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}

.mobile-bar a:first-child {
  background: #25d366;
  color: var(--white);
}

.mobile-bar a svg { width: 22px; height: 22px; }

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-lg) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--oat) 100%);
}

.page-hero h1 { margin-bottom: var(--space-sm); }

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.breadcrumbs a {
  color: var(--bronze);
  text-decoration: none;
}

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

/* Agende page */
.agende-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.agende-steps {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

.agende-step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--bronze);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Privacy */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: var(--space-lg);
}

.legal-content ul { padding-left: 1.25rem; }

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card-body { padding: var(--space-md); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
