:root {
  --wine: #6e1f35;
  --wine-dark: #3e1322;
  --wine-soft: #9d5366;
  --cream: #f5eee2;
  --paper: #fbf8f2;
  --cake: #e9cf9f;
  --ink: #201a18;
  --muted: #746963;
  --line: rgba(55, 34, 29, .16);
  --blue: #758da1;
  --shadow: 0 28px 80px rgba(55, 27, 27, .14);
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--paper);
}
.nav-shell {
  width: min(1440px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.brand {
  display: grid;
  grid-template-columns: 38px auto;
  grid-template-rows: 23px 15px;
  column-gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: .18em;
  font-weight: 600;
}
.brand-claim {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .72;
}
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 600;
}
.site-nav a:not(.nav-cta) { opacity: .78; }
.site-nav a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
}
.nav-cta:hover { background: var(--paper); color: var(--wine-dark); }
.menu-toggle { display: none; }

.hero {
  min-height: 860px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(580px, 1.14fr);
  align-items: stretch;
  background: var(--wine-dark);
  color: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 52% 0 0;
  background:
    radial-gradient(circle at 12% 85%, rgba(233,207,159,.14), transparent 34%),
    linear-gradient(145deg, #4d1728, #260d17);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 152px clamp(44px, 6vw, 110px) 88px max(48px, calc((100vw - 1440px) / 2));
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--wine);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero .eyebrow, .eyebrow.light { color: var(--cake); }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 6.2vw, 106px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero h1 em { color: var(--cake); font-weight: 400; }
.hero-lead {
  max-width: 540px;
  margin: 36px 0 0;
  color: rgba(251,248,242,.76);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .035em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cream); color: var(--wine-dark); }
.button-primary:hover { background: white; }
.text-link {
  text-decoration: none;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  font-size: 13px;
  font-weight: 600;
}
.text-link span { color: var(--cake); margin-left: 5px; }
.hero-note {
  margin: 44px 0 0;
  color: rgba(251,248,242,.5);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-visual { margin: 0; position: relative; min-height: 860px; overflow: hidden; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(62,19,34,.55), transparent 22%);
  pointer-events: none;
}
.hero-visual img:first-of-type { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.motif-inset { display: none; }
.motif-inset-desktop {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  width: 148px;
  height: 112px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 36px rgba(28, 12, 13, 0.3);
}
.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.hero-visual figcaption span {
  padding: 7px 11px;
  background: rgba(33,24,21,.74);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--paper);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.signature {
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  background: var(--cream);
}
.signature h2, .section-heading h2, .about h2, .contact h2, .process h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 500;
  text-wrap: balance;
}
.signature-notes { border-top: 1px solid var(--line); }
.signature-notes article {
  display: grid;
  grid-template-columns: 42px 160px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.note-number, .service-index { color: var(--wine-soft); font-family: var(--serif); font-size: 13px; }
.signature-notes h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.signature-notes p { margin: 0; color: var(--muted); font-size: 14px; }

.services { padding: 130px max(48px, calc((100vw - 1320px) / 2)); }
.section-heading {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 36px 100px;
  margin-bottom: 80px;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.section-heading p:last-child { max-width: 450px; margin: 8px 0 0; color: var(--muted); font-size: 17px; }
.service-list { border-top: 1px solid var(--line); }
.service-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, color .25s ease;
}
.service-list article:hover { padding-left: 12px; color: var(--wine); }
.service-list h3 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(24px, 2.1vw, 33px); font-weight: 500; }
.service-list p { margin: 0; color: var(--muted); }
.service-tag {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.legal-note { margin: 22px 0 0; color: var(--muted); font-size: 12px; }

.process {
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 10vw, 160px);
  color: var(--paper);
  background: var(--wine);
}
.process-copy > p:last-child { max-width: 510px; margin-top: 30px; color: rgba(251,248,242,.7); }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.process-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.process-steps > li > span { color: var(--cake); font-family: var(--serif); font-size: 14px; }
.process-steps h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.process-steps p { margin: 0; color: rgba(251,248,242,.65); font-size: 14px; }

.about {
  position: relative;
  min-height: 680px;
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: end;
  gap: 70px;
  overflow: hidden;
  background: #d9e1e5;
}
.about-word {
  align-self: center;
  margin-left: -.07em;
  color: rgba(45,72,90,.12);
  font-family: var(--serif);
  font-size: clamp(130px, 23vw, 380px);
  line-height: .65;
  letter-spacing: -.08em;
  user-select: none;
}
.about-copy { position: relative; max-width: 570px; padding-bottom: 28px; }
.about-copy > p:not(.eyebrow) { color: #4e5960; font-size: 17px; }

.contact {
  padding: 120px max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 10vw, 170px);
  background: var(--wine-dark);
  color: var(--paper);
}
.contact-copy > p:last-child { max-width: 520px; margin-top: 28px; color: rgba(251,248,242,.6); }
.contact-form { display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: rgba(251,248,242,.72); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.34);
  border-radius: 0;
  padding: 10px 0 12px;
  color: white;
  background: transparent;
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--cake); box-shadow: 0 1px 0 var(--cake); }
.button-cream { justify-self: start; background: var(--cake); color: var(--wine-dark); }
.form-status { min-height: 1.5em; margin: 0; color: var(--cake); font-size: 13px; }

.site-footer {
  padding: 60px max(48px, calc((100vw - 1320px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 40px;
  background: #1f1115;
  color: rgba(251,248,242,.64);
}
.footer-brand .brand-name { color: var(--paper); font-size: 32px; }
.footer-brand p { margin: 8px 0 0; font-family: var(--serif); font-style: italic; }
.footer-meta { max-width: 560px; text-align: right; font-size: 11px; }
.footer-meta p { margin: 3px 0; }
.footer-meta strong { color: var(--cake); font-weight: 600; }

:focus-visible { outline: 2px solid var(--cake); outline-offset: 4px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero::before { inset: 0; }
  .hero-copy { min-height: 720px; padding-top: 150px; padding-right: 44%; background: linear-gradient(90deg, rgba(43,12,23,.96) 0%, rgba(43,12,23,.82) 48%, rgba(43,12,23,.14) 100%); }
  .hero-visual { position: absolute; inset: 0; min-height: 720px; z-index: 0; }
  .hero-visual::after { background: linear-gradient(90deg, rgba(43,12,23,.85), transparent 72%); }
  .hero-visual figcaption { display: none; }
  .signature, .process, .contact { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .about { grid-template-columns: 1fr; }
  .about-word { position: absolute; inset: 38% auto auto -2%; }
  .about-copy { justify-self: end; width: min(100%, 620px); }
}

@media (max-width: 760px) {
  .nav-shell { width: calc(100% - 36px); height: 78px; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
  }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { text-align: center; border-color: var(--wine); }

  .hero, .hero-copy, .hero-visual { min-height: 780px; }
  .hero-copy { padding: 138px 24px 56px; align-self: end; background: linear-gradient(0deg, rgba(43,12,23,.98) 5%, rgba(43,12,23,.74) 58%, rgba(43,12,23,.1) 100%); }
  .hero-visual img:first-of-type { object-position: 66% center; }
  .motif-inset-desktop { display: none; }
  .motif-inset {
    display: block;
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    width: 126px;
    height: 104px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.48);
    box-shadow: 0 14px 35px rgba(31,10,17,.34);
  }
  .hero h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-note { margin-top: 28px; }

  .signature, .services, .process, .about, .contact { padding: 82px 24px; }
  .signature { gap: 56px; }
  .signature-notes article { grid-template-columns: 36px 1fr; }
  .signature-notes article p { grid-column: 2; }
  .section-heading { margin-bottom: 48px; }
  .service-list article { grid-template-columns: 36px 1fr; align-items: start; }
  .service-tag { grid-column: 2; justify-self: start; }
  .about { min-height: 680px; }
  .about-word { top: 30%; font-size: 42vw; }
  .about-copy { align-self: end; }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 24px; flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
