/* ── Design tokens ────────────────────────────────────────────── */
:root {
  --cream:  #faf5ee;
  --terra:  #b85c35;
  --terra-dark: #8c3f1f;
  --gold:   #c49a3c;
  --gold-pale: rgba(196,154,60,.12);
  --ink:    #2c1810;
  --sand:   #e8d5b0;
  --muted:  #7a6656;
  --olive:  #5a6841;
  --line:   #e2d4bc;
  --white:  #fff;
  --shadow: 0 24px 56px rgba(44,24,16,.1);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ── Reveal ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Container ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .75rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1), background .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(184,92,53,.35);
}
.btn-primary:hover { background: var(--terra-dark); box-shadow: 0 10px 32px rgba(184,92,53,.45); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--terra); color: var(--terra); }
.btn-pack { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); }
.btn-pack:hover { background: var(--terra); color: var(--white); }
.btn-cta { background: var(--white); color: var(--terra); font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-cta:hover { background: var(--cream); transform: translateY(-2px); }

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,238,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark { display: flex; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  font-size: .88rem;
  font-weight: 500;
}
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--terra); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 80px 0 0;
}
.hero-arch {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-arch svg { width: 100%; height: 100%; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 80px;
}
.hero-copy h1 {
  margin-bottom: 1.2rem;
  font-style: italic;
  color: var(--ink);
}
.hero-copy h1 em { font-style: italic; color: var(--terra); }
.hero-text { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; max-width: 440px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-photo { position: relative; }
.hero-img-wrap {
  border-radius: 4px 4px 120px 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  max-width: 220px;
}
.hero-note strong { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--ink); }
.hero-note span { font-size: .8rem; color: var(--muted); }

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-heading p { color: var(--muted); margin-top: .75rem; }

/* ── Services ─────────────────────────────────────────────────── */
.service-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  overflow: hidden;
  border-radius: 6px;
}
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.service-card:hover { z-index: 1; transform: scale(1.02); }
.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img { transition: transform .5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(184,92,53,.85));
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: opacity .35s;
}
.service-overlay h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.service-card:hover .service-overlay { opacity: 1; }
.service-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-body h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.service-body p { font-size: .88rem; color: var(--muted); }

/* ── Packs ────────────────────────────────────────────────────── */
.packs-section { background: var(--cream); }
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pack-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.pack-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pack-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.pack-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terra);
  margin: 0;
}
.pack-card .price span { font-size: 1.2rem; font-weight: 400; color: var(--muted); }
.pack-card ul { flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.pack-card li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.pack-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.pack-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
  background: linear-gradient(160deg, var(--white) 80%, rgba(196,154,60,.06));
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  width: fit-content;
}

/* ── Clients ──────────────────────────────────────────────────── */
.clients-section { background: var(--white); }
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.client-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(44,24,16,.08);
}
.client-card img { transition: transform .6s ease; }
.client-card:hover img { transform: scale(1.06); }
.client-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(44,24,16,.85) 0%, transparent);
  color: var(--white);
}
.client-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.client-caption p { font-size: .85rem; opacity: .85; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-section { background: var(--cream); position: relative; overflow: hidden; }
.testimonials-bg {
  position: absolute;
  top: -20px;
  left: -30px;
  pointer-events: none;
}
.quote-bg { width: 260px; height: 200px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,24,16,.07);
  display: flex;
  flex-direction: column;
}
.testimonial-card img { aspect-ratio: 16/9; }
.testimonial-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.testimonial-body p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}
.testimonial-body strong { font-size: .9rem; font-weight: 600; color: var(--ink); }
.testimonial-body span { font-size: .8rem; color: var(--muted); }

/* ── CTA Band ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--terra);
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
}
.cta-photo { height: 480px; }
.cta-copy {
  padding: 4rem 3rem;
  color: var(--white);
}
.cta-copy .eyebrow { color: rgba(255,255,255,.7); }
.cta-copy h2 { color: var(--white); margin-bottom: 1rem; font-style: italic; }
.cta-copy p { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; font-size: .95rem; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-section { background: var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  padding: 96px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.contact-copy .eyebrow { color: var(--gold); }
.contact-copy h2 { color: var(--white); margin-bottom: 1rem; font-style: italic; }
.contact-copy p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: .95rem; }
.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: 3px;
  transition: transform .25s, box-shadow .25s;
}
.whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  padding: .85rem 1.1rem;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form textarea { resize: vertical; }
.form-status { font-size: .88rem; color: var(--gold); min-height: 1.2rem; margin-top: .25rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: #1e100a; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 64px 24px 48px;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-note { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: .5rem; }
.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 1.25rem 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-arch { width: 60%; opacity: .5; }
  .hero-img-wrap { aspect-ratio: 16/9; border-radius: 6px; }
  .hero-note { left: auto; bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-photo { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 64px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .hero { padding-top: 48px; }
  .hero-grid { padding-bottom: 48px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
}
