:root {
  --cream: #fbf7ef;
  --soft: #f3eadc;
  --champagne: #e8d6b6;
  --gold: #b8924a;
  --gold-dark: #8d6a2e;
  --ink: #1d1a16;
  --muted: #6e665c;
  --line: rgba(29, 26, 22, .10);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(68, 49, 25, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  background: rgba(251, 247, 239, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(184,146,74,.12));
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav a:hover { color: var(--gold-dark); }
.header-action {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}
.menu-button { display: none; border: 0; background: none; font-size: 26px; }

.hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 214, 182, .75), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #fbf7ef 52%, #f1e5d3 100%);
  z-index: -2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .20em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: .98;
  font-weight: 700;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(46px, 6vw, 82px); max-width: 760px; }
h2 { font-size: clamp(36px, 4vw, 58px); }
h3 { font-size: 30px; }
p { margin: 0; color: var(--muted); }
.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.btn.primary {
  background: var(--ink);
  color: #fff7e8;
  box-shadow: 0 18px 40px rgba(29, 26, 22, .18);
}
.btn.primary:hover { transform: translateY(-2px); background: #2a251f; }
.btn.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.55); color: var(--ink); }
.btn.secondary:hover { border-color: var(--gold); color: var(--gold-dark); }

.hero-visual { position: relative; }
.photo-card {
  background: var(--white);
  padding: 12px;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
}
.main-photo { transform: rotate(1.2deg); }
.person-whatsapp {
  width: 100%;
  margin-top: 14px;
}
.floating-note {
  position: absolute;
  left: -34px;
  bottom: 104px;
  width: 260px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(68, 49, 25, .16);
  backdrop-filter: blur(14px);
}
.floating-note strong { display:block; margin-bottom: 6px; }
.floating-note span { color: var(--muted); font-size: 14px; }

.intro-strip { padding: 34px 0; background: var(--white); border-block: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.strip-grid div { padding: 8px 24px; border-left: 1px solid var(--champagne); }
.strip-grid span { color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: .16em; }
.strip-grid strong { display: block; margin: 5px 0; font-family: 'Cormorant Garamond', serif; font-size: 28px; }
.strip-grid p { font-size: 14px; }

.section { padding: 105px 0; }
.split-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 72px; align-items: center; }
.image-stack img {
  border-radius: 36px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.image-stack .person-whatsapp { box-shadow: 0 18px 40px rgba(29, 26, 22, .14); }
.section-copy p { margin-top: 20px; font-size: 17px; max-width: 620px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }

.services { background: #fffaf2; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  padding: 30px;
  min-height: 290px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(68, 49, 25, .07);
}
.service-card span { color: var(--gold); font-weight: 800; letter-spacing: .16em; font-size: 12px; }
.service-card h3 { margin: 34px 0 16px; }
.service-card p { font-size: 15px; }

.method-panel {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 54px;
  padding: 58px;
  border-radius: 38px;
  background: linear-gradient(135deg, #211d18, #3a3025);
  color: var(--white);
  box-shadow: var(--shadow);
}
.method-panel .eyebrow, .method-panel p { color: #e7d9c1; }
.method-list { display: grid; gap: 18px; }
.method-list div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.method-list strong { font-family: 'Cormorant Garamond', serif; font-size: 30px; }

.insight { padding-top: 20px; }
.insight-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(135deg, var(--white), #f7ecdc);
}
.insight-box p { max-width: 680px; margin-top: 18px; }
.insight-action {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  min-height: 76px;
  padding: 14px 22px;
  border: 1px solid rgba(184, 146, 74, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 36px rgba(68, 49, 25, .08);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  transition: .25s ease;
}
.insight-action span {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.insight-action:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--white);
}

.contact { background: #fffaf2; }
.contact-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 70px; align-items: start; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
label { display: grid; gap: 8px; color: var(--ink); font-size: 14px; font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf5;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--gold); background: #fff; }
.footer { padding: 28px 0; background: var(--ink); color: rgba(255,255,255,.78); }
.footer-content { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .28s; }

@media (max-width: 980px) {
  .header-action { display: none; }
  .menu-button { display: block; }
  .nav {
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero-grid, .split-grid, .method-panel, .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-note { left: 16px; bottom: 104px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { height: 74px; }
  .brand img { width: 96px; height: 42px; }
  .hero { padding: 60px 0 50px; }
  .hero-grid { gap: 42px; }
  .hero-copy p { font-size: 16px; }
  .strip-grid, .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .method-panel, .insight-box { padding: 30px; }
  .insight-box { align-items: flex-start; flex-direction: column; }
  .footer-content { flex-direction: column; }
}
