:root {
  --ink: #182422;
  --charcoal: #16302E;
  --terra: #C17F52;
  --terra-light: #E0AD7C;
  --grey: #6E7A78;
  --line: #E3E8E6;
  --bg: #F7F5F0;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 20px 50px -22px rgba(22, 48, 46, 0.35);
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; margin: 0 0 .5em; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; line-height: 1.65; color: var(--grey); }
a { text-decoration: none; color: inherit; }
svg { display: block; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-terra { color: var(--terra); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--terra); color: #fff; box-shadow: 0 12px 24px -10px rgba(193,127,82,.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(193,127,82,.65); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--terra); color: var(--terra); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(247,245,240,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: var(--ink); opacity: .75; transition: opacity .2s, color .2s; }
.nav__links a:hover { opacity: 1; color: var(--terra); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { padding: 90px 0 70px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.pill { display: inline-block; padding: 7px 16px; border-radius: 999px; background: #F0E1D2; color: #96562B; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; margin-bottom: 20px; }
.hero h1 { font-size: 48px; line-height: 1.14; color: var(--ink); }
.hero__lead { font-size: 17px; max-width: 500px; }
.hero__cta { display: flex; gap: 14px; margin: 26px 0 40px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; }
.trust__item { display: flex; flex-direction: column; gap: 2px; }
.trust__item strong { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--ink); }
.trust__item span { font-size: 12.5px; color: var(--grey); }

/* Hero visual */
.hero__visual { position: relative; }
.feature-card {
  background: var(--charcoal);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 22px;
}
.feature-card__row { display: flex; align-items: flex-start; gap: 16px; }
.feature-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px; background: rgba(193,127,82,.18); color: var(--terra-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.feature-card__row strong { display: block; color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 19px; margin-bottom: 4px; }
.feature-card__row span { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.5; }
.badge-float {
  position: absolute; left: 30px; bottom: -18px;
  background: #fff; color: var(--ink); font-size: 12.5px; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(22,48,46,.35);
  display: flex; align-items: center; gap: 8px;
}
.badge-float__dot { width: 8px; height: 8px; border-radius: 50%; background: #2FAE60; }

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--charcoal); }
.section--dark .eyebrow { color: var(--terra-light); }
.section--dark h2 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.55); }
.section__head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: 36px; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #96562B; margin-bottom: 10px; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.dark-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.dark-card h3 { color: #fff; font-size: 20px; }
.dark-card p { margin: 0; font-size: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.pricing-col h3 { font-size: 22px; margin-bottom: 18px; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 13.2px;
}
.price-row:last-of-type { border-bottom: none; }
.price-row span { line-height: 1.35; }
.price-row strong { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--terra); font-weight: 600; white-space: nowrap; }
.pricing-note { font-size: 12px; color: var(--grey); margin-top: 14px; }

/* Team */
.team-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.team-card { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.team-card__initial {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--charcoal); color: var(--terra-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
}
.team-card strong { font-family: 'Cormorant Garamond', serif; font-size: 19px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow);
  transition: transform .35s var(--ease);
}
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 100%; }

/* CTA banner */
.cta-banner { background: var(--ink); padding: 60px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.6); margin: 0; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: stretch; }
.contact__intro h2 { font-size: 32px; }
.contact__detail { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.contact__detail strong { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: .04em; }
.contact__detail span { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact__detail a { color: var(--ink); }
.contact__detail a:hover { color: var(--terra); }
.contact__cta { margin-top: 10px; }

.contact__map {
  min-height: 380px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: 14.5px; font-family: inherit; color: var(--ink); background: #FCFAF5;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 4px rgba(193,127,82,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; text-align: center; margin: 14px 0 0; color: var(--grey); }

/* Footer */
.footer { background: var(--charcoal); padding: 50px 0 34px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.logo--footer { color: #fff; }
.footer__tagline { color: rgba(255,255,255,.55); font-size: 13.5px; }
.footer__copy { color: rgba(255,255,255,.3); font-size: 12px; margin: 10px 0 0; }

/* RDV Modal */
.rdv-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.rdv-modal.is-open { display: block; }
.rdv-modal__overlay { position: absolute; inset: 0; background: rgba(22,48,46,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s var(--ease); }
.rdv-modal.is-open .rdv-modal__overlay { opacity: 1; }
.rdv-modal__panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -48%); width: min(520px, calc(100% - 32px));
  max-height: 88vh; overflow-y: auto;
  background: var(--bg); border-radius: 22px; padding: 36px 32px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  opacity: 0; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.rdv-modal.is-open .rdv-modal__panel { opacity: 1; transform: translate(-50%, -50%); }
.rdv-modal__close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 14px; color: var(--ink);
}
.rdv-modal__close:hover { border-color: var(--terra); color: var(--terra); }
.rdv-modal__panel h3 { font-size: 26px; margin: 6px 0 10px; }
.rdv-modal__lead { font-size: 13.5px; margin-bottom: 22px; }
.rdv-modal__form select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: 14.5px; font-family: inherit; color: var(--ink); background: #FCFAF5;
}
body.rdv-modal-open { overflow: hidden; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 30px; }
  .hero h1 { font-size: 38px; }
  .grid--3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid img { height: 150px; }
  .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 100%; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line); gap: 16px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__actions .btn--ghost.btn--sm { display: none; }
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 30px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
}
