:root {
  --paper: #f3efe7;
  --paper-light: #faf8f3;
  --ink: #26231f;
  --ink-soft: #625b53;
  --sand: #d8cbb9;
  --sand-light: #e7ddd0;
  --taupe: #9a8874;
  --clay: #80604f;
  --clay-dark: #59443a;
  --line: rgba(38, 35, 31, .18);
  --line-light: rgba(250, 248, 243, .22);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --container: min(100% - 2rem, 90rem);
  --section-space: clamp(5.25rem, 12vw, 10.5rem);
  --header-stuck: 4.65rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
p, h1, h2, h3, figure { margin-top: 0; }
p { margin-bottom: 1.2rem; }
h1, h2, h3 { overflow-wrap: break-word; }
h2 {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.65rem, 8.8vw, 5.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
}
h2 em { color: var(--clay); font-weight: 400; }
h3 { font-family: var(--display); font-size: clamp(1.65rem, 4vw, 2.2rem); font-weight: 400; line-height: 1.05; }
::selection { background: var(--clay); color: var(--paper-light); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--container); margin-inline: auto; }
.section-pad { padding-block: var(--section-space); }
.eyebrow {
  margin: 0 0 1.35rem;
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .24em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-heading { margin-bottom: clamp(2.8rem, 7vw, 5.25rem); display: grid; gap: 1rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 31rem; margin: 0; color: var(--ink-soft); }
.large-index { display: block; margin-bottom: 2rem; color: var(--taupe); font-family: var(--display); font-size: 4rem; line-height: 1; }

.button-row { margin-top: 2.1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.5rem; }
.button-row-center { justify-content: center; }
.button {
  min-height: 3.35rem;
  padding: .85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--paper-light); }
.button-primary:hover { background: var(--clay); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--paper-light); }
.button-light { background: var(--paper-light); color: var(--ink); }
.button-light:hover { background: var(--sand-light); }
.text-link {
  min-height: 3rem;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(.18rem, -.18rem); }
.text-link-light { color: var(--paper-light); }

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

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--ink);
  background: rgba(243, 239, 231, .94);
  transition: background .35s ease, box-shadow .35s ease;
}
.subpage .site-header { position: sticky; }
.header-inner {
  width: var(--container);
  min-height: 5.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: min-height .35s var(--ease), border-color .35s ease;
}
.site-header.is-scrolled { background: rgba(250, 248, 243, .88); box-shadow: 0 .75rem 2.5rem rgba(38, 35, 31, .08); backdrop-filter: blur(16px); }
.site-header.is-scrolled .header-inner { min-height: var(--header-stuck); border-color: rgba(38, 35, 31, .1); }
.brand { width: max-content; display: grid; text-decoration: none; line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.4rem; letter-spacing: .22em; }
.brand-subline { margin-top: .38rem; font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; }
.header-cta { display: none; }
.menu-toggle {
  position: relative;
  z-index: 70;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.menu-toggle-label { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.menu-toggle-icon { display: grid; gap: .26rem; width: 1.55rem; margin-top: .18rem; }
.menu-toggle-icon i { height: 1px; background: currentColor; transition: transform .35s var(--ease); }
.site-nav {
  position: fixed;
  z-index: 60;
  inset: 0 0 0 auto;
  width: min(88vw, 29rem);
  padding: 8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  color: var(--paper-light);
  background: var(--ink);
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: clip-path .55s var(--ease), opacity .35s ease, visibility .55s;
}
.site-nav::before { content: "VELORA / MENU"; margin-bottom: 2rem; color: var(--taupe); font-size: .62rem; letter-spacing: .18em; }
.site-nav > a { padding: 1rem 0; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: clamp(2rem, 9vw, 3.4rem); line-height: 1; text-decoration: none; }
.site-nav > a.is-active { color: var(--sand); }
.site-nav .nav-mobile-cta { margin-top: auto; border: 0; font-family: var(--sans); font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.menu-open .site-nav { clip-path: inset(0); opacity: 1; pointer-events: auto; visibility: visible; }
.menu-open .menu-toggle { color: var(--paper-light); }
.menu-open .menu-toggle-label { opacity: 0; }
.menu-open .menu-toggle-icon { position: absolute; top: 1.55rem; }
.menu-open .menu-toggle-icon i:first-child { transform: translateY(.14rem) rotate(45deg); }
.menu-open .menu-toggle-icon i:last-child { transform: translateY(-.14rem) rotate(-45deg); }

/* Home hero */
.hero { min-height: 46rem; display: grid; }
.hero-copy {
  min-width: 0;
  padding: clamp(3.5rem, 10vw, 7rem) max(1rem, calc((100vw - 90rem) / 2)) 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 14vw, 7.2rem);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero h1 em { color: var(--clay); font-weight: 400; }
.hero-lead { max-width: 39rem; margin: 2rem 0 0; color: var(--ink-soft); font-size: clamp(1rem, 2.5vw, 1.14rem); }
.hero-note { margin-top: 2.8rem; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual { min-height: 27rem; margin: 0; position: relative; overflow: hidden; background: var(--taupe); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(25,20,18,.58)); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 1; inset: auto 1.25rem 1.25rem; margin: 0; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; color: var(--paper-light); font-family: var(--display); font-size: 1.08rem; line-height: 1.15; text-align: right; }
.hero-visual figcaption span { font-family: var(--sans); font-size: .62rem; letter-spacing: .18em; }

/* Home sections */
.intro { background: var(--paper-light); }
.intro-grid { display: grid; gap: 2.25rem; }
.section-index { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.section-index span { color: var(--ink-soft); font-size: .65rem; letter-spacing: .12em; }
.intro-content h2 { max-width: 14ch; }
.prose-columns { max-width: 49rem; }
.prose-columns p { color: var(--ink-soft); }
.prose-columns p:first-child { color: var(--ink); font-family: var(--display); font-size: 1.45rem; line-height: 1.35; }
.services-teaser { background: var(--paper); }
.service-editorial-grid { display: grid; gap: 1rem; }
.service-card { min-width: 0; min-height: 24rem; margin: 0; position: relative; overflow: hidden; }
.service-card-image { color: var(--paper-light); background: var(--ink); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .7s ease; }
.service-card-image:nth-child(1) img { object-position: center 26%; }
.service-card-image:nth-child(2) img { object-position: center 48%; }
.service-card-image:nth-child(3) img { object-position: center 44%; }
.service-card-image:nth-child(4) img { object-position: center 46%; }
.service-card-image:hover img { transform: scale(1.035); filter: saturate(1.04) contrast(1.02); }
.service-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(26,22,20,.82)); }
.service-card-overlay { position: absolute; z-index: 1; inset: auto 1.3rem 1.3rem; transition: transform .5s var(--ease); }
.service-card-overlay > span, .card-number { display: block; margin-bottom: 1.8rem; font-size: .64rem; letter-spacing: .16em; }
.service-card h3 { margin: 0 0 .8rem; font-size: clamp(2.7rem, 9vw, 5rem); }
.service-card p { max-width: 29rem; color: inherit; font-size: .93rem; }
.service-card a { display: inline-flex; gap: .55rem; border-bottom: 1px solid currentColor; text-decoration: none; font-size: .7rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.service-card a span { transition: transform .35s var(--ease); }
.service-card:hover .service-card-overlay { transform: translateY(-.25rem); }
.service-card:hover a span { transform: translateX(.3rem); }
.service-card-text { padding: 1.35rem; display: flex; flex-direction: column; justify-content: space-between; background: var(--sand-light); }
.service-card-text p { color: var(--ink-soft); }
.service-card-dark { color: var(--paper-light); background: var(--clay-dark); }
.service-card-dark p { color: rgba(250,248,243,.75); }
.approach-section { display: grid; color: var(--paper-light); background: var(--ink); }
.approach-image { min-height: 25rem; overflow: hidden; }
.approach-image img { width: 100%; height: 100%; object-fit: cover; }
.approach-copy { padding: clamp(3.5rem, 10vw, 8rem) max(1rem, calc((100vw - 90rem) / 2)); }
.approach-copy h2 { max-width: 11ch; }
.approach-copy > p:not(.eyebrow) { max-width: 36rem; color: rgba(250,248,243,.72); }
.approach-copy .text-link { margin-top: 1.4rem; }
.color-grid { display: grid; gap: 3.5rem; }
.color-image { min-height: 32rem; position: relative; overflow: hidden; }
.color-image img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; inset: auto .8rem .8rem; padding: .6rem .75rem; color: var(--paper-light); background: rgba(38,35,31,.76); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.color-copy { align-self: center; }
.color-copy h2 { max-width: 11ch; }
.color-copy > p:not(.eyebrow) { max-width: 35rem; color: var(--ink-soft); }
.color-copy .button { margin-top: 1rem; }
.experience { color: var(--paper-light); background: var(--clay-dark); }
.experience-intro { display: grid; gap: 1.5rem; }
.experience-intro h2 { max-width: 11ch; font-size: clamp(3.3rem, 11vw, 7.2rem); }
.experience-intro h2 em { color: var(--sand); }
.experience-intro > div p { max-width: 35rem; color: rgba(250,248,243,.74); }
.principles { margin-top: clamp(3.5rem, 8vw, 6rem); display: grid; border-top: 1px solid var(--line-light); }
.principle { padding: 1.5rem 0; border-bottom: 1px solid var(--line-light); }
.principle span { font-size: .62rem; letter-spacing: .15em; }
.principle h3 { margin: 2rem 0 .55rem; }
.principle p { margin: 0; color: rgba(250,248,243,.68); }
.gallery-section { background: var(--paper-light); }
.editorial-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.gallery-item { min-width: 0; margin: 0; position: relative; overflow: hidden; background: var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption { position: absolute; inset: auto .65rem .65rem; padding: .35rem .5rem; color: var(--paper-light); background: rgba(38,35,31,.7); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item-a { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.gallery-item-b, .gallery-item-d { aspect-ratio: 3 / 4; }
.gallery-item-c, .gallery-item-e { aspect-ratio: 3 / 4; }

.home-contact { color: var(--paper-light); background: var(--ink); }
.home-contact-layout { display: grid; gap: clamp(3.5rem, 8vw, 7rem); }
.home-contact-intro { align-self: start; }
.home-contact-intro h2 { max-width: 10ch; }
.home-contact-intro > p:not(.eyebrow) { max-width: 37rem; color: rgba(250,248,243,.68); }
.home-contact-intro .button { margin-top: 1rem; border-color: var(--paper-light); }
.home-contact-intro .button:hover { color: var(--ink); background: var(--paper-light); }
.home-contact-grid { border-top: 1px solid var(--line-light); }
.home-contact-item { min-width: 0; padding: 1.6rem 0; border-bottom: 1px solid var(--line-light); }
.home-contact-item > span { display: block; margin-bottom: 1.65rem; color: var(--sand); font-size: .6rem; letter-spacing: .16em; }
.home-contact-item h3 { margin: 0 0 .7rem; font-family: var(--sans); font-size: .69rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.home-contact-item p, .home-contact-item a { margin: 0; color: rgba(250,248,243,.75); font-family: var(--display); font-size: clamp(1.25rem, 4vw, 1.8rem); line-height: 1.3; overflow-wrap: anywhere; }
.home-contact-item a { text-underline-offset: .28rem; text-decoration-thickness: 1px; }
.home-contact-item a:hover { color: var(--paper-light); }
.home-contact-hours dl { margin: 0; }
.home-contact-hours dl div { padding: .42rem 0; display: grid; grid-template-columns: minmax(6.5rem, .8fr) 1.2fr; gap: 1rem; border-bottom: 1px solid rgba(250,248,243,.08); }
.home-contact-hours dl div:last-child { border-bottom: 0; }
.home-contact-hours dt, .home-contact-hours dd { margin: 0; font-size: .78rem; }
.home-contact-hours dd { color: rgba(250,248,243,.62); text-align: right; overflow-wrap: anywhere; }
.closing-cta { padding: clamp(5.5rem, 14vw, 11rem) 1rem; color: var(--paper-light); background: var(--clay); text-align: center; }
.closing-cta-inner { max-width: 59rem; margin-inline: auto; }
.closing-cta h2 { margin-inline: auto; }
.closing-cta-inner > p:not(.eyebrow) { max-width: 39rem; margin: 0 auto; color: rgba(250,248,243,.78); }

/* Subpage heroes */
.page-hero { min-width: 0; display: grid; background: var(--sand-light); }
.page-hero > * { min-width: 0; }
.page-hero-copy { min-width: 0; padding: clamp(4.5rem, 11vw, 8rem) max(1rem, calc((100vw - 90rem) / 2)); }
.page-hero-copy h1,
.contact-hero h1,
.legal-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 7.4rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.page-hero-copy h1 em, .contact-hero h1 em { color: var(--clay); font-weight: 400; }
.page-hero-about .page-hero-copy h1 { font-size: clamp(2.2rem, 10.5vw, 7.4rem); overflow-wrap: normal; }
.page-hero-copy > p:last-child { max-width: 39rem; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1.06rem; }
.page-hero-image { min-height: 30rem; margin: 0; position: relative; overflow: hidden; background: var(--taupe); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-image figcaption { position: absolute; inset: auto 1rem 1rem; padding: .5rem .65rem; color: var(--paper-light); background: rgba(38,35,31,.74); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }
.page-hero-about .page-hero-image img { object-position: center; }

/* Services */
.service-jump { position: sticky; z-index: 20; top: var(--header-stuck); overflow: hidden; border-bottom: 1px solid var(--line); background: rgba(250,248,243,.94); backdrop-filter: blur(10px); }
.service-jump .section-shell { display: flex; overflow-x: auto; scrollbar-width: none; }
.service-jump .section-shell::-webkit-scrollbar { display: none; }
.service-jump a { flex: 0 0 auto; min-height: 3.7rem; padding: .8rem 1.1rem; display: inline-flex; align-items: center; text-decoration: none; font-size: .65rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.service-category { scroll-margin-top: 9rem; }
.service-category-tinted { background: var(--sand-light); }
.service-category-grid { display: grid; gap: 3rem; }
.service-category-heading > span, .mini-category > span { display: block; margin-bottom: 2.2rem; color: var(--taupe); font-family: var(--display); font-size: 3.5rem; line-height: 1; }
.service-category-heading h2 { margin-bottom: 1rem; }
.service-category-heading > p:last-child { max-width: 25rem; color: var(--ink-soft); }
.service-list { border-top: 1px solid var(--line); }
.service-row { padding: 1.6rem 0; display: grid; gap: 1rem; border-bottom: 1px solid var(--line); }
.service-row h3 { margin: 0 0 .4rem; font-family: var(--sans); font-size: 1.05rem; font-weight: 600; }
.service-row p { max-width: 34rem; margin: 0; color: var(--ink-soft); font-size: .92rem; }
.service-row strong, .mini-service strong { white-space: nowrap; font-size: .74rem; letter-spacing: .09em; }
.service-note { margin: 1.5rem 0 0; padding-left: 1rem; border-left: 2px solid var(--clay); color: var(--ink-soft); font-size: .82rem; }
.service-feature-image { height: clamp(28rem, 68vw, 50rem); position: relative; overflow: hidden; background: var(--taupe); }
.service-feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.service-feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(38,35,31,.52)); }
.service-feature-image > div { position: absolute; z-index: 1; inset: auto 1rem 1rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--paper-light); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.service-feature-duo { padding-block: clamp(1rem, 2vw, 2rem); display: grid; gap: 1rem; }
.service-feature-panel { min-height: 26rem; margin: 0; position: relative; overflow: hidden; background: var(--taupe); }
.service-feature-panel img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-panel:first-child img { object-position: center 52%; }
.service-feature-panel:last-child img { object-position: center 45%; }
.service-feature-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(25,20,18,.62)); pointer-events: none; }
.service-feature-panel figcaption { position: absolute; z-index: 1; inset: auto 1rem 1rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--paper-light); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.service-pair-grid { display: grid; gap: 1rem; }
.mini-category { padding: clamp(1.5rem, 5vw, 3.5rem); background: var(--sand-light); scroll-margin-top: 9rem; }
.mini-category-dark { color: var(--paper-light); background: var(--ink); }
.mini-category-dark > span { color: var(--sand); }
.mini-service { padding: 1.35rem 0; display: grid; gap: 1rem; border-top: 1px solid var(--line); }
.mini-category-dark .mini-service { border-color: var(--line-light); }
.mini-service h3 { margin: 0 0 .35rem; font-family: var(--sans); font-size: .98rem; font-weight: 600; }
.mini-service p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.mini-category-dark .mini-service p { color: rgba(250,248,243,.66); }
.placeholder-notice { margin-bottom: var(--section-space); padding: 1.25rem; border: 1px solid var(--clay); display: grid; gap: .65rem; }
.placeholder-notice span { color: var(--clay); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.placeholder-notice p { margin: 0; }
.consultation-cta { background: var(--paper-light); }
.consultation-grid { display: grid; gap: 3rem; }
.consultation-copy { align-self: center; }
.consultation-copy > p:not(.eyebrow) { max-width: 36rem; color: var(--ink-soft); }
.consultation-copy .button { margin-top: 1rem; }
.consultation-image { min-height: 24rem; margin: 0; overflow: hidden; }
.consultation-image img { width: 100%; height: 100%; object-fit: cover; }

/* About */
.philosophy-grid { display: grid; gap: 3rem; }
.philosophy-statement h2 { max-width: 12ch; }
.philosophy-copy { max-width: 38rem; color: var(--ink-soft); }
.philosophy-copy .display-quote { margin: 2.3rem 0; color: var(--clay); font-family: var(--display); font-size: clamp(1.8rem, 6vw, 3.4rem); line-height: 1.08; }
.craft-section { display: grid; color: var(--paper-light); background: var(--ink); }
.craft-image { min-height: 28rem; overflow: hidden; }
.craft-image img { width: 100%; height: 100%; object-fit: cover; }
.craft-copy { padding: clamp(3.5rem, 10vw, 8rem) max(1rem, calc((100vw - 90rem) / 2)); }
.craft-copy > p:not(.eyebrow) { max-width: 36rem; color: rgba(250,248,243,.7); }
.craft-tags { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.craft-tags span { padding: .45rem .7rem; border: 1px solid var(--line-light); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.atmosphere-grid { display: grid; gap: 3rem; }
.atmosphere-copy { align-self: center; }
.atmosphere-copy > p:not(.eyebrow) { max-width: 35rem; color: var(--ink-soft); }
.atmosphere-image { min-height: 28rem; margin: 0; position: relative; overflow: hidden; }
.atmosphere-image img { width: 100%; height: 100%; object-fit: cover; }
.atmosphere-image figcaption { position: absolute; inset: auto .8rem .8rem; padding: .55rem .7rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--paper-light); background: rgba(38,35,31,.72); font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; }
.team-section { background: var(--sand-light); }
.team-grid { display: grid; gap: 2.5rem 1rem; }
.team-photo-placeholder { aspect-ratio: 4 / 5; margin-bottom: 1.25rem; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; color: var(--clay-dark); background: linear-gradient(145deg, #d8cbb9, #bba995); }
.team-placeholder-alt { background: linear-gradient(145deg, #cabbaa, #8f7c68); color: var(--paper-light); }
.team-placeholder-dark { background: linear-gradient(145deg, #765f53, #302924); color: var(--paper-light); }
.team-photo-placeholder span { align-self: center; margin-block: auto; font-family: var(--display); font-size: clamp(6rem, 28vw, 12rem); line-height: 1; opacity: .22; }
.team-photo-placeholder small { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.team-card h3 { margin: 0 0 .4rem; font-size: 1.7rem; }
.team-card p { margin: 0; color: var(--ink-soft); font-size: .8rem; letter-spacing: .06em; }
.team-notice { margin: 3rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .82rem; }

/* Contact */
.contact-hero { min-height: 39rem; display: grid; color: var(--paper-light); background: var(--clay-dark); }
.contact-hero-copy { padding: clamp(4.5rem, 11vw, 8rem) max(1rem, calc((100vw - 90rem) / 2)); display: flex; flex-direction: column; justify-content: center; }
.contact-hero-copy h1 { max-width: 10ch; }
.contact-hero-copy h1 em { color: var(--sand); }
.contact-hero-copy > p:last-child { max-width: 38rem; margin: 2rem 0 0; color: rgba(250,248,243,.72); }
.contact-hero-mark { min-height: 19rem; position: relative; overflow: hidden; display: grid; place-items: center; color: var(--paper-light); background: var(--taupe); }
.contact-hero-mark::before { content: ""; position: absolute; width: 85%; aspect-ratio: 1; border: 1px solid rgba(250,248,243,.28); border-radius: 50%; }
.contact-hero-mark span { font-family: var(--display); font-size: clamp(10rem, 50vw, 24rem); line-height: 1; opacity: .22; }
.contact-hero-mark small { position: absolute; inset: auto 1rem 1rem auto; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-cards { display: grid; border-top: 1px solid var(--line); }
.contact-card { min-width: 0; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.contact-card > span { display: block; margin-bottom: 2rem; color: var(--taupe); font-size: .62rem; letter-spacing: .16em; }
.contact-card h3 { margin-bottom: .8rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--ink-soft); overflow-wrap: anywhere; }
.contact-card a { display: block; text-decoration-thickness: 1px; text-underline-offset: .25rem; }
.contact-card small { display: block; margin-top: .5rem; color: var(--taupe); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.hours-section { background: var(--paper-light); }
.hours-grid { display: grid; gap: 3rem; }
.hours-visual { min-height: 28rem; position: relative; overflow: hidden; }
.hours-visual img { width: 100%; height: 100%; object-fit: cover; }
.hours-visual span { position: absolute; inset: auto 1rem 1rem; color: var(--paper-light); font-family: var(--display); font-size: 1.2rem; }
.hours-copy { align-self: center; }
.hours-list { margin: 0; border-top: 1px solid var(--line); }
.hours-list > div { padding: .72rem 0; display: grid; grid-template-columns: 1fr auto; gap: 1rem; border-bottom: 1px solid var(--line); }
.hours-list dt { font-weight: 600; }
.hours-list dd { margin: 0; color: var(--ink-soft); }
.hours-notice { margin: 1.2rem 0 0; color: var(--clay); font-size: .78rem; }
.inquiry-section { color: var(--paper-light); background: var(--ink); scroll-margin-top: 2rem; }
.inquiry-grid { display: grid; gap: 3rem; }
.inquiry-intro h2 { max-width: 10ch; }
.inquiry-intro > p:not(.eyebrow) { max-width: 32rem; color: rgba(250,248,243,.7); }
.form-facts { margin-top: 2.5rem; display: grid; gap: .6rem; color: var(--sand); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.inquiry-form { min-width: 0; }
.form-grid-two { display: grid; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; margin-bottom: .45rem; font-size: .68rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(250,248,243,.45);
  border-radius: 0;
  color: var(--paper-light);
  background: transparent;
  outline: none;
}
.form-field select { color-scheme: dark; }
.form-field textarea { min-height: 7rem; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sand); }
.checkbox-field { margin: 1.5rem 0; display: grid; grid-template-columns: 1.3rem 1fr; gap: .75rem; align-items: start; color: rgba(250,248,243,.74); font-size: .79rem; }
.checkbox-field input { width: 1.15rem; height: 1.15rem; margin: .2rem 0 0; accent-color: var(--sand); }
.checkbox-field a { text-underline-offset: .2rem; }
.form-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form-submit .button { cursor: pointer; background: var(--sand); color: var(--ink); }
.form-submit p { margin: 0; color: rgba(250,248,243,.55); font-size: .66rem; }
.form-status { margin: 1.3rem 0 0; padding: .9rem; border-left: 2px solid var(--sand); color: rgba(250,248,243,.68); background: rgba(250,248,243,.06); font-size: .76rem; }
.form-status.is-ready { color: var(--paper-light); }
.contact-end { padding: clamp(4rem, 10vw, 7rem) 1rem; text-align: center; background: var(--sand-light); }
.contact-end > p:last-child { max-width: 18ch; margin: 0 auto; font-family: var(--display); font-size: clamp(2.5rem, 8vw, 5rem); line-height: .98; }

/* Legal */
.legal-hero { padding: clamp(5rem, 12vw, 9rem) 0; color: var(--paper-light); background: var(--clay-dark); }
.legal-hero h1 { margin-bottom: 1.5rem; }
.legal-hero > div > p:last-child { max-width: 38rem; margin: 0; color: rgba(250,248,243,.7); }
.legal-content { background: var(--paper-light); }
.legal-grid { display: grid; gap: 3rem; }
.legal-alert { align-self: start; padding: 1.25rem; border: 1px solid var(--clay); }
.legal-alert > span { display: block; margin-bottom: 1rem; color: var(--clay); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.legal-alert p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: .82rem; }
.legal-fields { border-top: 1px solid var(--line); }
.legal-fields article { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.legal-fields h2 { margin: 0 0 .55rem; font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.legal-fields p { margin: 0; color: var(--ink-soft); overflow-wrap: anywhere; }
.legal-outline article { position: relative; padding-left: 2.5rem; }
.legal-outline article > span { position: absolute; left: 0; top: 1.55rem; color: var(--taupe); font-size: .6rem; letter-spacing: .1em; }

/* Footer */
.site-footer { padding-top: clamp(4.5rem, 10vw, 7rem); color: var(--paper-light); background: var(--ink); }
.footer-main { display: grid; gap: 2.5rem; }
.brand-footer { color: var(--paper-light); }
.footer-brand > p { margin: 1.5rem 0 0; color: rgba(250,248,243,.55); font-family: var(--display); font-size: 1.15rem; }
.footer-column { display: grid; align-content: start; gap: .6rem; }
.footer-column h2 { margin: 0 0 .55rem; color: var(--sand); font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-column span { width: fit-content; color: rgba(250,248,243,.7); text-decoration: none; font-size: .85rem; overflow-wrap: anywhere; }
.footer-column a:hover { color: var(--paper-light); }
.footer-bottom { margin-top: 4rem; padding-block: 1.2rem; border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; color: rgba(250,248,243,.45); font-size: .58rem; letter-spacing: .09em; text-transform: uppercase; }

/* Progressive enhancement: content remains visible when observers are unavailable. */
.has-reveal .reveal,
.has-reveal .image-reveal { opacity: 0; transform: translateY(3rem); transition: opacity .85s var(--ease), transform .85s var(--ease), clip-path 1s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.has-reveal .image-reveal { clip-path: inset(0 0 12% 0); }
.has-reveal .reveal.is-visible,
.has-reveal .image-reveal.is-visible { opacity: 1; transform: translateY(0); clip-path: inset(0); }
.has-reveal .image-reveal img { transform: scale(1.055); transition: transform 1.35s var(--ease); }
.has-reveal .image-reveal.is-visible img { transform: scale(1); }
.has-reveal .service-card.reveal img { transform: scale(1.055); }
.has-reveal .service-card.reveal.is-visible img { transform: scale(1); }
.has-reveal .service-card.reveal.is-visible:hover img { transform: scale(1.035); }
.has-reveal .reveal-sequence > * { opacity: 0; transform: translateY(2.25rem); transition: opacity .78s var(--ease), transform .78s var(--ease); }
.has-reveal .reveal-sequence.is-visible > * { opacity: 1; transform: translateY(0); }
.has-reveal .reveal-sequence.is-visible > :nth-child(1) { transition-delay: 80ms; }
.has-reveal .reveal-sequence.is-visible > :nth-child(2) { transition-delay: 170ms; }
.has-reveal .reveal-sequence.is-visible > :nth-child(3) { transition-delay: 260ms; }
.has-reveal .reveal-sequence.is-visible > :nth-child(4) { transition-delay: 350ms; }
.has-reveal .reveal-sequence.is-visible > :nth-child(5) { transition-delay: 440ms; }

@media (min-width: 36rem) {
  .service-row, .mini-service { grid-template-columns: 1fr auto; align-items: start; }
  .form-grid-two { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-card { padding: 1.5rem; border-right: 1px solid var(--line); }
  .contact-card:last-child { border-right: 0; }
  .home-contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .home-contact-item:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--line-light); }
  .home-contact-item:nth-child(even) { padding-left: 1.5rem; }
}

@media (min-width: 48rem) {
  :root { --container: min(100% - 4rem, 90rem); }
  .section-heading { grid-template-columns: 1fr minmax(16rem, 28rem); align-items: end; }
  .header-inner { min-height: 6.25rem; }
  .hero { min-height: 52rem; grid-template-columns: minmax(0, 1.04fr) minmax(22rem, .96fr); padding-top: 0; }
  .hero-copy { padding: 4.5rem 2.5rem 3rem max(2rem, calc((100vw - 90rem) / 2)); }
  .hero h1 { font-size: clamp(4.5rem, 7.5vw, 7.1rem); }
  .hero-visual { min-height: 52rem; }
  .hero-note { margin-top: auto; }
  .intro-grid { grid-template-columns: minmax(10rem, .42fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); }
  .section-index { display: block; border: 0; }
  .section-index span { display: block; margin-top: 4rem; }
  .service-editorial-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 29rem; }
  .approach-section { grid-template-columns: 1.08fr .92fr; }
  .approach-image { min-height: 44rem; }
  .approach-copy { padding: clamp(4.5rem, 8vw, 8rem) max(2rem, calc((100vw - 90rem) / 2)) clamp(4.5rem, 8vw, 8rem) clamp(2.5rem, 6vw, 6rem); }
  .color-grid { grid-template-columns: minmax(20rem, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(4rem, 9vw, 9rem); }
  .color-image { min-height: 48rem; }
  .experience-intro { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); align-items: end; }
  .principles { grid-template-columns: repeat(3, 1fr); }
  .principle { padding: 1.8rem; border-right: 1px solid var(--line-light); }
  .principle:first-child { padding-left: 0; }
  .principle:last-child { border-right: 0; }
  .editorial-gallery { grid-template-columns: repeat(12, 1fr); grid-template-rows: 20rem 16rem 20rem; }
  .gallery-item-a { grid-column: 1 / 6; grid-row: 1 / 3; aspect-ratio: auto; }
  .gallery-item-b { grid-column: 6 / 10; grid-row: 1 / 2; aspect-ratio: auto; }
  .gallery-item-c { grid-column: 10 / 13; grid-row: 1 / 3; aspect-ratio: auto; }
  .gallery-item-d { grid-column: 1 / 5; grid-row: 3 / 4; aspect-ratio: auto; }
  .gallery-item-e { grid-column: 5 / 13; grid-row: 2 / 4; aspect-ratio: auto; }
  .home-contact-layout { grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr); align-items: start; }
  .page-hero { min-height: 43rem; grid-template-columns: minmax(0, 1.05fr) minmax(24rem, .95fr); }
  .page-hero-copy { padding: clamp(5rem, 8vw, 8rem) 3rem clamp(5rem, 8vw, 8rem) max(2rem, calc((100vw - 90rem) / 2)); display: flex; flex-direction: column; justify-content: center; }
  .page-hero-copy h1 { font-size: clamp(4.4rem, 7vw, 7.2rem); }
  .page-hero-image { min-height: 43rem; }
  .page-hero-about { grid-template-columns: .9fr 1.1fr; }
  .service-category-grid { grid-template-columns: minmax(15rem, .7fr) minmax(0, 1.3fr); gap: clamp(4rem, 10vw, 10rem); }
  .service-feature-image { width: var(--container); margin-inline: auto; }
  .service-feature-duo { grid-template-columns: 1fr 1fr; }
  .service-feature-panel { min-height: clamp(34rem, 50vw, 48rem); }
  .service-pair-grid { grid-template-columns: 1fr 1fr; }
  .placeholder-notice { grid-template-columns: 9rem 1fr; align-items: start; }
  .consultation-grid { grid-template-columns: .85fr 1.15fr; align-items: stretch; gap: clamp(3rem, 8vw, 8rem); }
  .consultation-image { min-height: 36rem; }
  .philosophy-grid { grid-template-columns: 1fr .75fr; gap: clamp(4rem, 10vw, 10rem); }
  .craft-section { grid-template-columns: 1.1fr .9fr; }
  .craft-image { min-height: 45rem; }
  .craft-copy { padding: clamp(4.5rem, 8vw, 8rem) max(2rem, calc((100vw - 90rem) / 2)) clamp(4.5rem, 8vw, 8rem) clamp(2.5rem, 6vw, 6rem); }
  .atmosphere-grid { grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 8vw, 8rem); }
  .atmosphere-image { min-height: 42rem; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-photo-placeholder span { font-size: clamp(7rem, 12vw, 11rem); }
  .contact-hero { min-height: 43rem; grid-template-columns: 1.25fr .75fr; }
  .contact-hero-copy { padding: clamp(5rem, 8vw, 8rem) 3rem clamp(5rem, 8vw, 8rem) max(2rem, calc((100vw - 90rem) / 2)); }
  .contact-hero h1 { font-size: clamp(4.5rem, 7vw, 7.2rem); }
  .hours-grid { grid-template-columns: 1.15fr .85fr; gap: clamp(4rem, 9vw, 9rem); }
  .hours-visual { min-height: 43rem; }
  .inquiry-grid { grid-template-columns: .75fr 1.25fr; gap: clamp(4rem, 9vw, 9rem); }
  .legal-grid { grid-template-columns: minmax(16rem, .7fr) minmax(0, 1.3fr); gap: clamp(4rem, 9vw, 9rem); }
  .legal-alert { position: sticky; top: 1.5rem; }
  .footer-main { grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2rem; }
}

@media (min-width: 68rem) {
  .site-header { background: rgba(243,239,231,.88); backdrop-filter: blur(12px); }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.4rem, 2.7vw, 2.8rem);
    color: inherit;
    background: transparent;
    clip-path: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }
  .site-nav::before, .site-nav .nav-mobile-cta { display: none; }
  .site-nav > a { position: relative; padding: .6rem 0; border: 0; font-family: var(--sans); font-size: .66rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
  .site-nav > a::after { content: ""; position: absolute; inset: auto 0 .15rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
  .site-nav > a:hover::after, .site-nav > a:focus-visible::after, .site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
  .site-nav > a.is-active { color: inherit; }
  .header-cta { justify-self: end; min-height: 2.9rem; padding: .6rem 1.05rem; display: inline-flex; align-items: center; border: 1px solid var(--ink); text-decoration: none; font-size: .65rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; transition: background .3s ease, color .3s ease; }
  .header-cta:hover { color: var(--paper-light); background: var(--ink); }
  .hero-copy { padding-top: 5.25rem; padding-right: clamp(3rem, 5vw, 6rem); }
  .service-editorial-grid { grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, clamp(24rem, 34vw, 31rem)); }
  .service-card { min-height: 0; }
  .service-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 2; }
  .service-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
  .service-card:nth-child(3) { grid-column: 1 / 6; grid-row: 2 / 3; }
  .service-card:nth-child(4) { grid-column: 6 / 13; grid-row: 2 / 3; }
  .service-card-text { padding: 2rem; }
  .service-card-overlay { inset: auto 2rem 2rem; }
  .service-card h3 { font-size: clamp(3.5rem, 5.5vw, 5.5rem); }
  .service-jump { top: var(--header-stuck); }
}

@media (min-width: 90rem) {
  .hero { min-height: 58rem; }
  .hero-visual { min-height: 58rem; }
  .hero-copy { padding-left: max(2rem, calc((100vw - 90rem) / 2)); }
  .page-hero-copy, .contact-hero-copy { padding-left: max(2rem, calc((100vw - 90rem) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-reveal .reveal, .has-reveal .image-reveal, .has-reveal .reveal-sequence > * { opacity: 1; transform: none; clip-path: none; }
}
