/* ===== Tokens ===== */
:root {
  --bg: #faf7f1;
  --bg-alt: #f2ece0;
  --bg-card: #ffffff;
  --ink: #2e2b24;
  --ink-soft: #6f6a5e;
  --sage: #8a9a7e;
  --sage-dark: #6d7d63;
  --gold: #b08d57;
  --line: #e4dccb;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
em { font-style: italic; color: var(--sage-dark); }

p { color: var(--ink-soft); margin: 0 0 16px; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.center { text-align: center; }

.section-sub {
  max-width: 560px;
  margin: 0 auto 50px;
}
.about-copy .section-sub, .contact .section-sub { margin-left: auto; margin-right: auto; }

section { padding: 110px 0; position: relative; }

/* ===== Noise / texture overlay ===== */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo span { color: var(--sage-dark); font-weight: 400; margin-left: 4px; }

.nav-desktop { display: flex; align-items: center; gap: 40px; }
.nav-desktop a {
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-desktop a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-desktop a:not(.nav-cta):hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover:after { width: 100%; }

.nav-cta {
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  padding: 9px 22px !important;
  color: var(--sage-dark) !important;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--sage-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.4px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 10px 28px 26px;
}
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(138,154,126,0.16), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(176,141,87,0.14), transparent 50%);
}
.hero-ornament {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  color: var(--sage);
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 860px) { .hero-ornament { display: none; } }

.hero-inner { max-width: 720px; padding-top: 84px; }
.hero-text { max-width: 480px; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(109,125,99,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(109,125,99,0.7); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 28px;
  width: 1px; height: 60px;
  background: var(--line);
  overflow: hidden;
}
.scroll-cue span {
  position: absolute;
  top: -60px; left: 0;
  width: 1px; height: 60px;
  background: var(--gold);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0% { top: -60px; }
  60%, 100% { top: 60px; }
}
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-media {
  display: flex;
  justify-content: center;
  color: var(--sage-dark);
}
.about-illustration { width: 100%; max-width: 260px; }
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-media { order: -1; }
}

/* ===== Services ===== */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px -30px rgba(46,43,36,0.25);
}
.service-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 0.92rem; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 56px;
}
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; gap: 44px; } }

.process-step { text-align: center; padding: 0 10px; }
.process-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 46px; height: 46px;
  line-height: 44px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.process-step p { font-size: 0.92rem; max-width: 280px; margin: 0 auto; }

/* ===== Why ===== */
.why { background: var(--bg-alt); }
.why-inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; }
.why-copy h2 { max-width: 320px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
}
.why-item { border-top: 1px solid var(--line); padding-top: 20px; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.92rem; margin: 0; }
@media (max-width: 860px) {
  .why-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .why-copy h2 { max-width: none; margin: 0 auto; }
  .why-item { text-align: left; }
}
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 30px;
  min-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(46,43,36,0.25); }
.contact-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--sage-dark);
}
.contact-card strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.contact-card em { font-style: normal; color: var(--ink-soft); font-size: 0.86rem; }

/* ===== Footer ===== */
.site-footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-inner p { margin: 0; font-size: 0.82rem; }
.footer-inner a:last-child { font-size: 0.82rem; color: var(--sage-dark); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
