:root {
  --cream: #F3F0E8;
  --ink: #141412;
  --ink-2: #2C2B27;
  --ink-3: #4A4843;
  --stone: #6E6A61;
  --green: #2F4A3A;
  --sage: #8FB39E;
  --rule: rgba(20, 20, 18, 0.18);
  --rule-light: rgba(243, 240, 232, 0.25);
  --serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ol, ul, dl, dd, figure, blockquote { margin: 0; }
ol, ul { padding: 0; list-style: none; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.serif em { font-style: italic; }
.eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.green { color: var(--green); }
.sage { color: var(--sage); }
.muted { color: var(--ink-3); }
.dim { opacity: 0.5; }
.lead { font-size: 18px; color: var(--ink-2); max-width: 420px; }

.container { padding-left: var(--gutter); padding-right: var(--gutter); max-width: 1440px; margin: 0 auto; }
.section { padding-top: clamp(64px, 7vw, 96px); padding-bottom: clamp(64px, 7vw, 96px); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--cream); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink); cursor: pointer; transition: background .2s, color .2s;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--green); border-color: var(--green); color: var(--cream); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-sm { height: 40px; padding: 0 20px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Top bar + nav */
.topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  height: 40px; padding: 0 var(--gutter);
  background: var(--ink); color: var(--cream);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.topbar span { opacity: 0.8; white-space: nowrap; }
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px var(--gutter); border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; background: var(--cream); z-index: 50;
}
.nav-links { display: flex; gap: 36px; align-items: center; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.nav-right { justify-content: flex-end; }
.brand { font-size: 30px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.brand em { text-transform: none; letter-spacing: 0; }
.brand.light { color: var(--cream); }
.menu-btn { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.mobile-menu {
  display: flex; flex-direction: column; gap: 20px;
  padding: 24px var(--gutter) 32px; border-bottom: 1px solid var(--rule);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  background: var(--cream);
}
.mobile-menu[hidden] { display: none; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 7fr 5fr; gap: 24px;
  padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(32px, 4vw, 56px);
}
.hero-text { display: flex; flex-direction: column; justify-content: space-between; }
.hero h1 { font-size: clamp(56px, 8.6vw, 124px); line-height: 0.92; margin-top: 32px; max-width: 780px; }
.hero-side { display: flex; flex-direction: column; justify-content: flex-end; gap: 28px; padding-bottom: 6px; }
.hero-photo { position: relative; overflow: hidden; height: clamp(300px, 44vw, 640px); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag { position: absolute; right: 32px; top: 32px; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; color: rgba(255, 255, 255, 0.85); }

/* Marquee */
.marquee { overflow: hidden; white-space: nowrap; margin-top: clamp(32px, 4vw, 56px); padding: 26px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.marquee-track { display: inline-block; font-size: clamp(22px, 2.2vw, 30px); font-style: italic; animation: scroll 60s linear infinite; }
.marquee-track span { padding: 0 32px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Section shared */
.section-intro { display: flex; flex-direction: column; gap: 20px; }
.section-intro h2, .section-head h2, .about h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1; }
.section-intro .muted { max-width: 340px; font-size: 15px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.section-head > div { display: flex; flex-direction: column; gap: 16px; }

/* Services */
.services { display: grid; grid-template-columns: 4fr 8fr; gap: 24px; }
.service-list li {
  display: grid; grid-template-columns: 64px 1fr 1fr 160px; gap: 32px; align-items: baseline;
  padding: 24px 0; border-top: 1px solid var(--rule);
}
.service-list li:last-child { border-bottom: 1px solid var(--rule); }
.service-list h3 { font-size: clamp(26px, 2.6vw, 36px); line-height: 1; transition: color .2s; }
.service-list li:hover h3 { font-style: italic; color: var(--green); }
.service-list p { font-size: 15px; color: var(--ink-3); }
.num, .tag { color: var(--stone); }
.tag { text-align: right; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 24px; }
.gallery figure { display: flex; flex-direction: column; gap: 14px; }
.gallery figure.offset { padding-top: 80px; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.gallery figcaption .serif { font-size: 22px; line-height: 1.15; }

/* Process */
.dark { background: var(--ink); color: var(--cream); }
.process-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 24px; }
.steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 40px; }
.steps li { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--rule-light); padding-top: 20px; }
.steps h3 { font-size: 30px; line-height: 1.1; }
.steps p { font-size: 15px; color: rgba(243, 240, 232, 0.7); }

/* About */
.about { display: grid; grid-template-columns: 5fr 1fr 6fr; gap: 24px; align-items: center; }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-text { grid-column: 3; display: flex; flex-direction: column; gap: 28px; }
.about-text .muted { max-width: 520px; }





/* Testimonial */




/* Quote form */
.quote { display: grid; grid-template-columns: 6fr 1fr 5fr; gap: 24px; }
.quote-text { display: flex; flex-direction: column; gap: 24px; }
.quote-text h2 { font-size: clamp(44px, 5vw, 72px); line-height: 0.95; }
.quote-text .muted { max-width: 440px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; font-size: 30px; }
.contact-links a { overflow-wrap: anywhere; }
.quote-form { grid-column: 3; display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--ink); padding: clamp(24px, 3vw, 40px); }
.quote-form label { display: flex; flex-direction: column; gap: 6px; }
.quote-form .eyebrow { color: var(--stone); }
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0;
  padding: 12px 0; outline: none; width: 100%;
}
.quote-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23141412' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right center; padding-right: 24px; cursor: pointer; }
.quote-form textarea { resize: vertical; min-height: 88px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-bottom-color: var(--green); }
.quote-form button { margin-top: 12px; }
.hp { position: absolute; left: -9999px; }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-cols { display: flex; gap: clamp(40px, 5vw, 72px); flex-wrap: wrap; }
.footer-cols > div { display: flex; flex-direction: column; gap: 12px; }
.footer a:hover { color: var(--sage); }
.ghost { font-size: clamp(80px, 14vw, 200px); line-height: 0.8; letter-spacing: -0.02em; opacity: 0.12; white-space: nowrap; overflow: hidden; margin: 48px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(243, 240, 232, 0.2); padding-top: 20px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Tablet */
@media (max-width: 1024px) {
  .services, .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-list li { grid-template-columns: 48px 1fr 1fr; gap: 20px; }
  .service-list .tag { display: none; }
  .about { grid-template-columns: 1fr 1fr; }
  .about-text { grid-column: 2; }
  .quote { grid-template-columns: 1fr 1fr; }
  .quote-form { grid-column: 2; }
  .gallery figcaption .serif { font-size: 18px; }
}

/* Phone */
@media (max-width: 720px) {
  .topbar { justify-content: center; height: auto; padding: 10px var(--gutter); font-size: 10px; text-align: center; }
  .topbar span { white-space: normal; }
  .topbar span:last-child { display: none; }
  .nav { grid-template-columns: 1fr auto; padding: 16px var(--gutter); }
  .nav-left, .nav-right { display: none; }
  .brand { font-size: 22px; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; gap: 20px; }
  .hero h1 { font-size: clamp(48px, 15vw, 64px); margin-top: 20px; }
  .hero-side { gap: 20px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .hero-tag { display: none; }
  .service-list li { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 6px 16px; padding: 18px 0; }
  .service-list .num { grid-column: 2; grid-row: 1; }
  .service-list h3 { grid-column: 1; grid-row: 1; }
  .service-list p { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
  .gallery figure.offset { padding-top: 0; }
  .gallery figcaption { flex-direction: column; gap: 4px; }
  .gallery figcaption .serif { font-size: 17px; }
  .gallery figcaption .tag { text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .about { grid-template-columns: 1fr; }
  .about-text { grid-column: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats dt { font-size: 36px; }
  .quote { grid-template-columns: 1fr; }
  .quote-form { grid-column: 1; }
  .contact-links { font-size: 20px; }
  .footer-top { flex-direction: column; }
}
