:root {
  --ink: #2f2a24;
  --muted: #756b60;
  --line: #ded7cd;
  --paper: #fbf8f2;
  --ivory: #fffdf8;
  --taupe: #8a7a68;
  --sable: #4b3d31;
  --dark: #151311;
  --champagne: #eee5d8;
  --max: 1320px;
  --serif: "Cormorant Garamond", "Bodoni 72", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

/* Image areas that intentionally fill a fixed/aspect-ratio container */
.hero-media,
.split-media,
.image-card {
  overflow: hidden;
}

.hero-media img,
.split-media img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}
button, input, select, textarea { border-radius: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 4px;
}
::selection { background: var(--champagne); color: var(--dark); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--dark);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, .92);
  border-bottom: 1px solid rgba(222, 215, 205, .8);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 88px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { letter-spacing: .24em; text-transform: uppercase; }
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}
.brand span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .32em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav a { padding: 10px 0; border-bottom: 1px solid transparent; white-space: nowrap; }
.nav a { transition: color .2s ease, border-color .2s ease; }
.nav a[aria-current="page"], .nav a:hover { border-color: var(--ink); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) 1.22fr;
  background: var(--ivory);
}
.hero-copy {
  padding: 120px clamp(28px, 7vw, 120px);
  align-self: center;
}
.hero-media { min-height: 560px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--taupe);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
}
h1 { font-size: clamp(52px, 7vw, 92px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: 28px; }
p { margin: 0; }
.lead {
  max-width: 560px;
  margin-top: 26px;
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--sable);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 30px;
  border: 1px solid var(--sable);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button.dark { background: var(--sable); color: var(--ivory); }
.button:hover { background: var(--sable); color: var(--ivory); transform: translateY(-2px); }
.button.dark:hover { background: var(--dark); border-color: var(--dark); }

.section { padding: 84px 32px; }
.section.dark {
  background: var(--dark);
  color: var(--ivory);
}
.section.tint { background: #f3eee6; }
.wrap { max-width: var(--max); margin: 0 auto; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 28px; align-items: stretch; }
.gallery-strip { grid-template-columns: repeat(5, 1fr); }
.creation-grid { grid-template-columns: repeat(4, 1fr); }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.six { grid-template-columns: repeat(6, 1fr); }
.grid > * { min-width: 0; }
.grid > article { height: 100%; }
.image-card {
  min-height: 360px;
  background: var(--champagne);
  overflow: hidden;
}
.image-card img {
  transition: transform .7s cubic-bezier(.2,.65,.3,1);
  will-change: transform;
}
.creation-card:hover .image-card img, .gallery-strip .image-card:hover img { transform: scale(1.025); }
.gallery-strip .image-card { aspect-ratio: 3 / 4; min-height: 0; }
.three > article { display: flex; flex-direction: column; }
.three > article > .image-card,
.creation-card > .image-card {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
}
.three > article > .card-copy { flex: 1; width: 100%; }
.creation-card, .text-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.creation-card { display: flex; flex-direction: column; }
.creation-card .card-copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.creation-card .card-copy .button { margin-top: auto; padding-top: 0; }
.card-copy { padding: 26px; }
.card-copy h3 + p, .text-card h3 + p { margin-top: 10px; }
.card-copy p, .text-card p { color: var(--muted); }
.meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value {
  min-height: 180px;
  padding: 34px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value:last-child { border-right: 0; }
.value h3 { min-height: 2.12em; display: flex; align-items: center; }
.value p { margin-top: 10px; }
.icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  stroke: var(--taupe);
  fill: none;
  stroke-width: 1.4;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-copy { padding: clamp(44px, 7vw, 100px); align-self: center; }
.split-media { min-height: 520px; }
.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  min-height: 230px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.process-step:last-child { border-right: 0; }
.process-step strong {
  display: block;
  margin: 14px 0;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
}
form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input:hover, select:hover, textarea:hover { border-color: #b7ab9d; }
input:focus, select:focus, textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(138, 122, 104, .12);
  outline: 0;
}
textarea { min-height: 140px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 12px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.checkbox input { width: 18px; min-height: 18px; margin-top: 4px; }
.status { min-height: 24px; color: var(--sable); }

.site-footer {
  padding: 58px 32px 32px;
  background: #eee8de;
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 42px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fineprint {
  max-width: var(--max);
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 13px;
}
.legal-note {
  border-left: 1px solid var(--taupe);
  padding-left: 24px;
  color: var(--muted);
}

@media (max-width: 1360px) and (min-width: 1051px) {
  .header-inner { padding-inline: 22px; gap: 20px; }
  .brand strong { font-size: 25px; }
  .brand span { font-size: 9px; }
  .nav { gap: 15px; font-size: 9px; letter-spacing: .1em; }
}

@media (max-width: 1050px) {
  .header-inner { min-height: 78px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    padding: 22px 32px 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    box-shadow: 0 18px 34px rgba(47, 42, 36, .08);
  }
  .nav.is-open { display: flex; }
  body.nav-open { overflow: hidden; }
  .hero, .split, .form-shell, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 70px; padding-bottom: 60px; }
  .hero-media, .split-media { min-height: 420px; }
  .gallery-strip, .creation-grid, .four { grid-template-columns: repeat(2, 1fr); }
  .values, .process-list, .six, .three { grid-template-columns: repeat(2, 1fr); }
  .value h3 { min-height: auto; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 18px; }
  .brand strong { font-size: 22px; }
  .brand span { font-size: 9px; }
  .section { padding: 58px 18px; }
  .hero { min-height: 0; }
  .hero-copy { padding: 58px 22px; }
  .hero-media, .split-media { min-height: 320px; }
  h1 { font-size: 46px; }
  .lead { font-size: 18px; }
  .gallery-strip, .creation-grid, .four, .values, .process-list, .six, .three, .footer-links { grid-template-columns: 1fr; }
  .value, .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .image-card { min-height: 280px; }
  .three > article > .image-card,
  .creation-card > .image-card,
  .gallery-strip .image-card { min-height: 0; }
  .button { width: 100%; padding-inline: 20px; }
  .card-copy .button { width: auto; }
  .footer-grid { gap: 28px; }
  .fineprint { margin-top: 28px; }
}

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