/* ===== Design tokens ===== */
:root {
  --off-white: #F6F2EA;
  --beige: #ECE4D6;
  --beige-deep: #E2D8C5;
  --sage: #8A9A7E;
  --sage-deep: #6E7E63;
  --sage-soft: #B7C2AC;
  --ink: #33352F;
  --ink-soft: #5C5E55;
  --line: rgba(51, 53, 47, 0.12);
  --white: #FFFFFF;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(51, 53, 47, 0.35);
  --shadow-sm: 0 10px 30px -18px rgba(51, 53, 47, 0.4);
  --maxw: 1140px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--sage-deep);
  margin-bottom: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--off-white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--sage-deep);
  color: var(--off-white);
  font-family: var(--serif);
  font-size: 1.4rem;
  border-radius: 50%;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--sage-deep);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--sage-deep);
  color: var(--off-white);
  padding: 11px 24px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(120% 120% at 85% 0%, var(--beige) 0%, transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(138, 154, 126, 0.18) 0%, transparent 50%),
    var(--off-white);
  overflow: hidden;
}
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 26px;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  list-style: none;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-deep);
}
.hero-stats span {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
}

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-alt { background: var(--beige); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-left: auto; margin-right: auto; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Service cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-feature { background: var(--sage-deep); color: var(--off-white); border-color: transparent; }
.card-feature .check-list li::before { color: var(--sage-soft); }
.card-feature .card-icon { color: var(--sage-soft); }
.card-icon { font-size: 2.4rem; color: var(--sage-deep); margin-bottom: 20px; }
.card h3 { font-size: 1.7rem; margin-bottom: 14px; }
.card > p { margin-bottom: 24px; opacity: 0.92; }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  color: var(--sage-deep);
  font-weight: 600;
}

/* ===== Why grid ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.why-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.why-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
}
.feature { padding-top: 22px; border-top: 1px solid var(--ink); }
.feature h4 { font-size: 1.25rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Steps ===== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s var(--ease);
}
.steps li:hover { transform: translateY(-6px); }
.step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--sage-soft);
  display: block;
  margin-bottom: 14px;
}
.steps h4 { font-size: 1.3rem; margin-bottom: 10px; }
.steps p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Testimonials ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quote {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 1px solid var(--line);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 22px;
}
.quote figcaption {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--beige) 0%, var(--sage-soft) 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.shot:hover { transform: scale(1.015); box-shadow: var(--shadow); }
.shot span {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-deep);
  opacity: 0.7;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-tall { grid-row: span 2; }
.shot-wide { grid-column: span 2; }

/* ===== Contact ===== */
.contact { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.contact-copy > p { color: var(--ink-soft); margin-bottom: 36px; max-width: 420px; }
.contact-details { list-style: none; display: grid; gap: 22px; }
.contact-details li { display: flex; flex-direction: column; }
.contact-details strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage-deep);
  margin-bottom: 4px;
}
.contact-details a, .contact-details span { font-size: 1.05rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 20px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 126, 0.18);
}
.field textarea { resize: vertical; }
.form-note {
  text-align: center;
  color: var(--sage-deep);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--beige);
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-bottom: 40px;
}
.brand-footer .brand-mark { background: var(--sage); }
.brand-footer .brand-text { color: var(--off-white); }
.brand-footer .brand-sub { color: var(--sage-soft); }
.footer-tag { color: var(--sage-soft); font-size: 0.95rem; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.9rem; color: var(--beige); transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--sage-soft);
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--off-white);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 28px; width: 100%; }
  .nav-cta { margin: 8px 28px 0; text-align: center; }
  .nav-toggle { display: flex; }

  .cards, .why-grid, .why-features, .steps, .quotes, .contact-inner {
    grid-template-columns: 1fr;
  }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .shot-tall, .shot-wide { grid-row: auto; grid-column: auto; }
  .why-grid, .contact-inner { gap: 40px; }
  .steps { gap: 18px; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 90px; }
  .hero-stats { gap: 32px; }
}
