:root {
  --ink: #1c1812;
  --paper: #f6f0e6;
  --paper-strong: #efe5d6;
  --sand: #d8c5ac;
  --olive: #1b342a;
  --olive-deep: #10211a;
  --olive-soft: #314d40;
  --copper: #b87b4d;
  --copper-soft: #d9b18a;
  --line: rgba(28, 24, 18, 0.14);
  --line-strong: rgba(28, 24, 18, 0.24);
  --fog: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(12, 15, 13, 0.16);
  --radius: 28px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(217, 177, 138, 0.18), transparent 30%),
    linear-gradient(180deg, #f9f5ee 0%, var(--paper) 50%, #f3ebdf 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(184, 123, 77, 0.35);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 110px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.topbar[data-scrolled="true"] {
  background: rgba(246, 240, 230, 0.92);
  border-bottom: 1px solid rgba(28, 24, 18, 0.08);
  backdrop-filter: blur(16px);
}

.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brandmark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(17, 38, 30, 0.96), rgba(49, 77, 64, 0.92));
  color: #f9f5ee;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(16, 33, 26, 0.24);
}

.brandtext {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandname {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.brandsub {
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(28, 24, 18, 0.66);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  color: rgba(28, 24, 18, 0.78);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(28, 24, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 24, 18, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 0 20px 18px;
  background: rgba(246, 240, 230, 0.96);
  border-bottom: 1px solid rgba(28, 24, 18, 0.08);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(28, 24, 18, 0.1);
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: clip;
  background: var(--olive-deep);
}

.hero-media,
.hero-media img,
.hero-wash,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 34%;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(16, 33, 26, 0.92) 0%, rgba(16, 33, 26, 0.78) 32%, rgba(16, 33, 26, 0.45) 58%, rgba(16, 33, 26, 0.34) 100%),
    linear-gradient(180deg, rgba(16, 33, 26, 0.18) 0%, rgba(16, 33, 26, 0.56) 100%);
}

.hero-grain {
  background:
    radial-gradient(circle at 84% 18%, rgba(217, 177, 138, 0.32), transparent 24%),
    linear-gradient(180deg, transparent 60%, rgba(16, 33, 26, 0.44) 100%);
  mix-blend-mode: screen;
  opacity: 0.68;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 84px);
  padding: 92px 0 88px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  color: #f7f2e9;
}

.eyebrow,
.section-eyebrow,
.proof-label,
.note-label,
.contact-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(247, 242, 233, 0.68);
}

.hero-brand {
  margin: 0 0 8px;
  color: rgba(247, 242, 233, 0.94);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 700;
  line-height: 0.88;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.lead,
.section-lead,
.proof-item p,
.timeline-step p,
.contact-card p,
.form-status,
.editorial-note p,
.hero-markers li,
figcaption,
.modal-copy {
  line-height: 1.68;
}

.lead {
  max-width: 54ch;
  margin: 18px 0 26px;
  color: rgba(247, 242, 233, 0.84);
  font-size: 1.05rem;
}

.hero-actions,
.form-actions,
.footer-links,
.modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 20px 0 0;
  margin: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(247, 242, 233, 0.18);
}

.hero-markers li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 242, 233, 0.82);
}

.hero-markers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper-soft);
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding-bottom: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(17, 38, 30, 0.9);
  color: #f8f3ea;
  box-shadow: var(--shadow);
}

.proof-item {
  min-width: 0;
}

.proof-label {
  color: rgba(217, 177, 138, 0.94);
}

.proof-item p:last-child,
.timeline-step p,
.contact-card p,
.editorial-note p,
figcaption,
.modal-copy {
  margin: 0;
}

.section {
  padding: 92px 0;
}

.section-eyebrow,
.note-label,
.contact-label {
  color: rgba(28, 24, 18, 0.52);
}

.section-lead {
  margin: 18px 0 0;
  color: rgba(28, 24, 18, 0.74);
  font-size: 1.02rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 38px;
  align-items: center;
}

.section-split.reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.section-copy {
  min-width: 0;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(28, 24, 18, 0.82);
  line-height: 1.62;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper);
}

.detail-list span {
  font-weight: 700;
}

.editorial-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 24, 18, 0.12);
  color: rgba(28, 24, 18, 0.76);
}

.section-media {
  min-width: 0;
}

.section-media picture,
.section-media img {
  width: 100%;
}

.section-media img {
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.process-media img {
  object-position: center 22%;
}

figcaption {
  margin-top: 14px;
  color: rgba(28, 24, 18, 0.58);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px 18px 0;
  border-top: 1px solid rgba(28, 24, 18, 0.12);
}

.timeline-step:last-child {
  border-bottom: 1px solid rgba(28, 24, 18, 0.12);
}

.timeline-number {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 18px;
  background: rgba(17, 38, 30, 0.08);
  color: var(--olive);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline-step div {
  min-width: 0;
}

.timeline-step h3 {
  margin-bottom: 6px;
}

.timeline-step p {
  color: rgba(28, 24, 18, 0.72);
}

.section-contact {
  background:
    radial-gradient(circle at top right, rgba(184, 123, 77, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(17, 38, 30, 0.03), rgba(17, 38, 30, 0.06));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  margin-top: 24px;
  padding: 24px;
  background: rgba(17, 38, 30, 0.92);
  color: rgba(248, 243, 234, 0.9);
}

.contact-card .contact-label {
  color: rgba(217, 177, 138, 0.88);
}

.contact-card strong {
  color: #fff6ec;
}

.form-panel {
  padding: 28px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(28, 24, 18, 0.08);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid.compact {
  margin-top: 20px;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: rgba(28, 24, 18, 0.72);
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(28, 24, 18, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(184, 123, 77, 0.48);
  box-shadow: 0 0 0 4px rgba(184, 123, 77, 0.12);
  outline: none;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, #cb9567 0%, var(--copper) 100%);
  color: #1b140f;
  box-shadow: 0 18px 34px rgba(184, 123, 77, 0.22);
}

.btn.secondary {
  color: #f7f2e9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(247, 242, 233, 0.18);
}

.form-panel .btn.secondary,
.modal-actions .btn.secondary {
  color: var(--ink);
  background: rgba(17, 38, 30, 0.06);
  border: 1px solid rgba(28, 24, 18, 0.12);
}

.form-status {
  margin: 0;
  min-height: 1.7em;
  color: rgba(28, 24, 18, 0.62);
}

.form-status[data-state="info"] {
  color: var(--olive-soft);
}

.footer {
  padding: 24px 0 44px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(28, 24, 18, 0.08);
  color: rgba(28, 24, 18, 0.66);
  font-size: 0.92rem;
}

.footer-shell p {
  margin: 0;
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.hidden {
  display: none !important;
}

.flash {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 70;
  width: min(440px, calc(100% - 32px));
}

.flash-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(28, 24, 18, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 22px 60px rgba(12, 15, 13, 0.18);
  backdrop-filter: blur(18px);
}

.flash-copy {
  min-width: 0;
}

.flash-label,
.flash-message {
  margin: 0;
}

.flash-label {
  color: rgba(28, 24, 18, 0.52);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flash-message {
  margin-top: 6px;
  color: rgba(28, 24, 18, 0.82);
  line-height: 1.55;
}

.flash-close {
  flex: 0 0 auto;
}

.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 14, 0.68);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 9vh auto 0;
  background: rgba(248, 243, 234, 0.96);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(12, 15, 13, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-head,
.modal-body {
  padding: 22px 24px;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(28, 24, 18, 0.08);
}

.modal-copy {
  color: rgba(28, 24, 18, 0.7);
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(17, 38, 30, 0.07);
  border: 1px solid rgba(28, 24, 18, 0.1);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  margin-top: 8px;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 38, 30, 0.92);
  color: rgba(248, 243, 234, 0.92);
  font-size: 0.86rem;
  box-shadow: var(--shadow);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .section-split,
  .section-split.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 88px 0 82px;
  }

  .hero-media img {
    object-position: 62% 30%;
  }

  .section-media {
    order: 2;
  }

  .section-copy {
    order: 1;
  }

  .section-media img {
    min-height: 320px;
  }

  .process-media img {
    object-position: center 18%;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-panel,
  .contact-card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .navwrap {
    padding: 16px 0;
  }

  .brandname {
    font-size: 1.25rem;
  }

  .hero-shell {
    padding: 78px 0 74px;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-media img {
    object-position: 67% 28%;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .proof-band {
    margin-top: -34px;
  }

  .proof-grid,
  .footer-shell,
  .modal-actions {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    display: grid;
    justify-content: initial;
  }

  .flash {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .flash-card {
    padding: 16px;
    border-radius: 20px;
  }

  .modal-panel {
    margin-top: 4vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
