/* ---------- Tokens ---------- */
:root {
  --bg: #faf7f1;
  --bg-alt: #f1ebe0;
  --surface: #ffffff;
  --text: #2a271f;
  --text-muted: #6c6455;
  --line: #e6ddcd;

  --primary: #2f4d3f;
  --primary-dark: #1f352a;
  --primary-light: #e7efe9;
  --accent: #b08d57;

  --shadow-sm: 0 2px 10px rgba(42, 39, 31, 0.06);
  --shadow-md: 0 12px 32px rgba(42, 39, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(42, 39, 31, 0.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-h: 84px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--primary-dark); }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.icon { width: 1.1em; height: 1.1em; fill: currentColor; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn .icon { width: 1.2em; height: 1.2em; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--primary); background: var(--primary-light); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: 72px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 88px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-light { color: #d9c9a3; }

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero .lead { font-size: 1.12rem; color: var(--text-muted); max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-highlights li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-highlights li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-media { position: relative; }
.hero-media picture {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: var(--surface);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 3px solid var(--accent);
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--primary-dark); }
.hero-badge span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--primary-light); padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.trust-item .icon { color: var(--accent); width: 1.3em; height: 1.3em; }

/* ---------- Section heading ---------- */
.section-heading { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-heading h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-heading .lead { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- About ---------- */
.about { padding: 110px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media picture {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.03rem; }
.about-list { margin: 28px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.98rem;
}
.about-list .icon {
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  padding: 5px;
  width: 1.6em;
  height: 1.6em;
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services { padding: 110px 0; background: var(--bg-alt); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Banner ---------- */
.banner { background: var(--primary-dark); color: #fff; padding: 100px 0; }
.banner-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.banner-media picture {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  aspect-ratio: 3/4;
}
.banner-media img { width: 100%; height: 100%; object-fit: cover; }
.banner-copy h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 20px; }
.banner-copy p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 30px; max-width: 48ch; }

/* ---------- Process ---------- */
.process { padding: 110px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
  border-top: 2px solid var(--line);
}
.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-dark); }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery { padding: 0 0 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.gallery-item { aspect-ratio: 3/4; overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 110px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 2.7rem); margin: 18px 0 18px; }
.cta .lead { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: #201d17; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; font-family: var(--font-display); font-size: 1.2rem; }
.footer-brand .brand span { display: none; }
.footer-crn { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom { padding: 22px 0 26px; font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-fab .icon { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .banner-inner { grid-template-columns: 1fr; }
  .about-media, .banner-media { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badge { left: 16px; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--surface);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    gap: 18px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  body.nav-open { overflow: hidden; }

  .hero { padding: 32px 0 64px; }
  .trust-inner { justify-content: flex-start; }
  .about, .services, .process, .banner, .cta { padding: 72px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}
