:root {
  color-scheme: light;
  --bg: #fbf6ef;
  --surface: #fffaf4;
  --surface-2: #f2e6d8;
  --text: #2a1d16;
  --muted: #745f50;
  --line: rgba(67, 43, 31, 0.14);
  --primary: #8a5c3b;
  --accent: #cba46f;
  --shadow: 0 24px 70px rgba(82, 54, 33, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
select { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 72%, white);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 239, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand, .nav, .header-actions, .hero-actions, .contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.brand { font-weight: 800; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fffaf4;
  background: linear-gradient(135deg, #6d432c, var(--accent));
  box-shadow: var(--shadow);
}
.nav a { color: var(--muted); font-size: 0.95rem; }
.nav a:hover { color: var(--text); }
.chip {
  min-width: 38px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}
.chip.is-active { border-color: var(--primary); color: var(--primary); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 11vw, 140px) clamp(18px, 6vw, 80px);
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(251, 246, 239, 0.96), rgba(251, 246, 239, 0.72) 48%, rgba(251, 246, 239, 0.12));
}
.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 1;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 244, 0.76);
}
.availability span:first-child {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}
.availability span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.4rem);
  line-height: 0.98;
}
h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
h3 { font-size: 1.3rem; line-height: 1.2; }
.hero-subtitle {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 750;
  cursor: pointer;
}
.primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #6d432c, var(--accent));
  border-color: transparent;
}
.secondary {
  color: var(--text);
  background: rgba(255, 250, 244, 0.78);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) 0;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prose {
  color: var(--muted);
  font-size: 1.08rem;
}
.section-heading {
  margin-bottom: 28px;
}
.card, .contact-form, .portrait {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.card { padding: 24px; }
.card ul { padding-left: 20px; color: var(--muted); }
.meta {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portrait {
  margin: 28px 0 0;
  overflow: hidden;
}
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 26%;
}
.portrait figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}
.band {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1120px) / 2));
  padding-right: max(18px, calc((100% - 1120px) / 2));
  background: #f3e6d6;
}
.visual-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.visual-card p {
  color: var(--muted);
}
.method-section {
  align-items: start;
}
.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.58);
}
.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffaf4;
  background: linear-gradient(135deg, #6d432c, var(--accent));
  font-weight: 900;
}
.steps h3,
.steps p {
  margin-bottom: 0;
}
.steps p {
  color: var(--muted);
}
.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}
.visual-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.visual-main video,
.video-tile video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #241914;
}
.video-tile {
  overflow: hidden;
  padding: 0;
}
.video-tile video {
  aspect-ratio: 9 / 16;
}
.video-copy {
  padding: 18px 20px 20px;
}
.video-copy h3 {
  margin-bottom: 8px;
}
.video-copy p {
  margin-bottom: 0;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.faq-list summary {
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}
.contact-form label { display: grid; gap: 8px; color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--text);
  background: var(--surface-2);
}
.contact-form select {
  min-height: 48px;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fffaf4;
  font-weight: 900;
  background: #25d366;
  box-shadow: var(--shadow);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; }
  .hero { min-height: 620px; }
  .split, .cards, .contact, .visual-grid { grid-template-columns: 1fr; }
  .visual-main { grid-row: auto; }
  .footer, .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .nav a { font-size: 0.9rem; }
  .hero { padding-top: 92px; }
  h1 { font-size: 2.35rem; }
  .button { width: 100%; }
  .hero-actions, .contact-links { align-items: stretch; flex-direction: column; }
}
