@font-face {
  font-family: "Ink Free";
  src: url("/assets/fonts/Inkfree.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-body: "Segoe UI Variable Text", "Aptos", "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-label: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
  --font-script: "Ink Free", "Segoe Print", cursive;
  --ink: #201c19;
  --ink-soft: #38312c;
  --muted: #6e6259;
  --paper: #f2ede5;
  --paper-strong: #fbf8f2;
  --stone: #d8cfc3;
  --sage: #838d7d;
  --accent: #85182c;
  --accent-deep: #5e0f20;
  --accent-soft: rgba(133, 24, 44, 0.1);
  --line: rgba(32, 28, 25, 0.18);
  --dark: #181412;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.28, 0.64, 1);
  --shadow-soft: 0 30px 70px -32px rgba(43, 29, 22, 0.34);
  --shadow-diffuse: 0 32px 80px -42px rgba(43, 29, 22, 0.26);
  --glass-edge: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  --max: 1400px;
  --page-pad: clamp(18px, 4vw, 58px);
  --shell-pad: max(var(--page-pad), calc((100vw - var(--max)) / 2));
  --section-pad-top: clamp(76px, 11vw, 140px);
  --section-pad-bottom: clamp(88px, 12vw, 156px);
  --panel-warm: #302824;
  --panel-warm-deep: #1c1715;
  --z-progress: 60;
  --z-header: 30;
  --z-overlay: 50;
  --hover-x: 50%;
  --hover-y: 50%;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(32, 28, 25, 0.24) 0.45px, transparent 0.45px);
  background-size: 5px 5px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  width: 100%;
  height: 2px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  pointer-events: none;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid img,
.show-strip img,
.local-note img,
.bookkeeping img,
.service-row img {
  height: auto;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

button {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--dark);
  color: var(--paper-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(32, 28, 25, 0.12);
  background: rgba(242, 237, 229, 0.78);
  backdrop-filter: blur(22px) saturate(1.08);
  box-shadow: var(--glass-edge);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 16px 50px -34px rgba(43, 29, 22, 0.36), var(--glass-edge);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--font-label);
  font-size: clamp(23px, 2.4vw, 31px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  transition: opacity 0.3s var(--ease), transform 0.32s var(--ease);
}

.brand:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.055em;
}

.main-nav a.is-active {
  font-weight: 600;
  color: var(--accent);
}

.main-nav a,
.feature-card-link,
.footer-policy,
.contact-list a,
.social-links a,
.site-footer a {
  position: relative;
}

.main-nav a::after,
.feature-card-link::after,
.contact-list a::after,
.social-links a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after,
.feature-card-link:hover::after,
.contact-list a:hover::after,
.social-links a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(140, 4, 29, 0.34);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.065em;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.32s var(--spring),
    border-color 0.32s var(--ease),
    color 0.32s var(--ease),
    background 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}

.button::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    140px circle at var(--hover-x) var(--hover-y),
    rgba(255, 253, 248, 0.42),
    transparent 68%
  );
  transition: opacity 0.35s var(--ease);
}

.button:hover::before,
.header-cta:hover::before {
  opacity: 1;
}

.button:active,
.header-cta:active,
.gallery-item:active {
  transform: translateY(1px) scale(0.98);
}

.primary {
  background: var(--accent);
  color: var(--paper-strong);
  border-color: transparent;
  box-shadow: 0 14px 36px -18px rgba(98, 3, 20, 0.55);
}

.primary:hover {
  background: var(--accent-deep);
}

.secondary,
.header-cta {
  background: rgba(251, 248, 242, 0.78);
  color: var(--accent);
  box-shadow: var(--glass-edge);
}

.secondary:hover,
.header-cta:hover {
  background: var(--paper-strong);
  border-color: rgba(140, 4, 29, 0.55);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(100dvh, 920px);
  padding: clamp(110px, 14vw, 180px) clamp(18px, 4vw, 58px) clamp(92px, 10vw, 132px);
  overflow: hidden;
  color: var(--ink);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--dark);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      108deg,
      rgba(242, 237, 229, 0.98) 0%,
      rgba(242, 237, 229, 0.9) 31%,
      rgba(242, 237, 229, 0.48) 52%,
      rgba(24, 20, 18, 0.22) 72%,
      rgba(24, 20, 18, 0.55) 100%
    ),
    linear-gradient(180deg, transparent 55%, rgba(23, 21, 19, 0.45) 100%);
}

.hero-background-video,
.hero-background-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.hero-background-video {
  z-index: 0;
  opacity: 1;
  object-position: center;
  transition: opacity 0.6s var(--ease);
}

.hero-background-fallback {
  z-index: 0;
  display: none;
  object-fit: cover;
  object-position: center;
}

.hero.is-static .hero-background-video {
  opacity: 0;
  visibility: hidden;
}

.hero.is-static .hero-background-fallback {
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-caption {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(24, 20, 18, 0.9) 0%, rgba(24, 20, 18, 0.32) 55%, rgba(24, 20, 18, 0.7) 100%),
    linear-gradient(180deg, transparent 55%, rgba(24, 20, 18, 0.38));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  padding-left: clamp(20px, 3vw, 44px);
  border-left: 1px solid rgba(133, 24, 44, 0.44);
}

.hero-copy > p:first-child,
.kicker,
.page-hero-copy > p:first-child {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-script);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-copy > p:first-child {
  animation: kicker-pulse 4.8s var(--ease) infinite;
}

@keyframes kicker-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

.page-hero-copy > p:first-child {
  color: rgba(255, 253, 248, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h3 {
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 102px);
}

h1 span,
.page-hero-copy :is(h1, h2) span,
.about-grid h2 span,
.show-copy h2 span,
.two-notes h2 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.25vw, 33px);
}

.hero-copy > p:last-of-type,
.measure p,
.section-title p,
.overview-copy p,
.bookkeeping p,
.local-note p,
.about-grid p,
.show-copy p,
.two-notes p,
.gallery-intro,
.page-hero-copy p,
.contact-copy p,
.service-row p,
.site-footer p,
.legal-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-copy > p:last-of-type,
.page-hero-copy p {
  max-width: 65ch;
}

.page-hero-copy p {
  color: rgba(255, 253, 248, 0.82);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad-top) var(--page-pad) var(--section-pad-bottom);
  background:
    radial-gradient(circle at 12% 4%, rgba(133, 24, 44, 0.045), transparent 32rem),
    rgba(242, 237, 229, 0.94);
}

.cards-section {
  overflow: visible;
  background:
    radial-gradient(ellipse 90% 60% at 12% -10%, rgba(133, 24, 44, 0.07), transparent 58%),
    rgba(251, 248, 242, 0.7);
}

.home-intro,
.bookkeeping,
.local-note,
.about-grid,
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 48px);
  align-items: center;
}

@media (min-width: 901px) {
  .home-intro,
  .about-grid,
  .contact-section {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 100px);
  }
}

.home-intro {
  padding-top: clamp(68px, 8vw, 112px);
}

.split-heading {
  padding-left: clamp(0px, 8vw, 128px);
}

.split-heading h2,
.section-title h2,
.overview-copy h2,
.bookkeeping h2,
.local-note h2 {
  max-width: 13ch;
}

.measure,
.overview-copy,
.contact-copy,
.legal-section .measure {
  max-width: 720px;
}

.measure p,
.section-title > p,
.overview-copy p,
.about-grid p,
.contact-copy p,
.home-intro .measure p {
  max-width: 65ch;
  line-height: 1.68;
  text-wrap: pretty;
}

.measure h3,
.overview-copy h3 {
  font-weight: 600;
}

.cards-section,
.service-overview,
.gallery-section,
.show-section,
.services-list {
  border-top: 1px solid var(--line);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.84fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 88px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px) clamp(16px, 2.4vw, 30px);
  align-items: stretch;
  overflow: visible;
}

.feature-card {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.45s var(--ease);
}

.feature-card:nth-child(1) {
  grid-column: span 7;
}

.feature-card:nth-child(2) {
  grid-column: span 5;
}

.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), opacity 0.5s var(--ease);
}

.feature-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0 0;
}

.feature-card-body h3 {
  margin-bottom: 0;
}

.feature-card-body h3::before {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.feature-card:nth-child(1) h3::before {
  content: "01";
}

.feature-card:nth-child(2) h3::before {
  content: "02";
}

.feature-card:nth-child(3) h3::before {
  content: "03";
}

.feature-card:nth-child(4) h3::before {
  content: "04";
}

.feature-card-body p {
  flex: 1;
  margin-bottom: 0;
}

.feature-card-link,
.feature-card a.feature-card-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-4px);
  }

  .feature-card:hover .feature-card-media img {
    transform: scale(1.04);
    opacity: 0.94;
  }
}

.contact-list a,
.social-links a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 98px);
  align-items: center;
}

.overview-images {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-auto-rows: minmax(180px, 18vw);
  gap: 8px;
}

.overview-images img {
  border-radius: var(--radius);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}

.overview-images img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.overview-images img:first-child,
.overview-images img:last-child {
  grid-row: span 2;
}

.bookkeeping {
  max-width: none;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 14% 12%, rgba(133, 24, 44, 0.28), transparent 30rem),
    linear-gradient(118deg, var(--panel-warm-deep) 0%, var(--panel-warm) 55%, #3c312b 100%);
  border-block: 1px solid rgba(255, 253, 248, 0.08);
}

.bookkeeping .kicker {
  color: rgba(255, 253, 248, 0.72);
}

.bookkeeping img,
.local-note img,
.about-grid img {
  min-height: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.bookkeeping p {
  color: rgba(255, 253, 248, 0.74);
}

.local-note img {
  aspect-ratio: 1;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: min(72dvh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
  color: var(--paper-strong);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  transition: transform 8s var(--ease), opacity 0.6s var(--ease);
}

.page-hero:hover > img {
  transform: scale(1.04);
  opacity: 0.78;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  padding: clamp(100px, 12vw, 180px) clamp(18px, 4vw, 58px) clamp(44px, 6vw, 80px);
}

.page-hero-copy :is(h1, h2) {
  max-width: 980px;
}

.about-grid img {
  aspect-ratio: 4 / 5;
  height: auto;
}

.show-section {
  max-width: 100%;
  padding-right: 0;
  overflow-x: clip;
}

.show-copy {
  width: 100%;
  max-width: none;
  margin: 0 0 40px;
  padding-inline: var(--page-pad);
  box-sizing: border-box;
}

.show-copy h2,
.show-copy p {
  max-width: min(48ch, 100%);
}

.show-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(12px, 1.8vw, 18px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding-block: 6px 14px;
  padding-inline: var(--page-pad);
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--page-pad);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  -webkit-overflow-scrolling: touch;
}

.show-strip::after {
  content: "";
  flex: 0 0 var(--page-pad);
}

.show-strip img {
  flex: 0 0 auto;
  width: clamp(10.5rem, 62vw, 17.5rem);
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  max-height: min(20rem, 50dvh);
  border-radius: var(--radius-lg);
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.55s var(--ease);
}

.show-strip img:hover {
  transform: translateY(-6px);
}

.show-strip.is-scrollable {
  cursor: grab;
}

.show-strip.is-scrollable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.show-strip.is-scrollable.is-dragging {
  cursor: grabbing;
  user-select: none;
}

@media (min-width: 1280px) {
  .show-strip {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    overflow-x: hidden;
    overflow-y: visible;
    padding-inline: var(--shell-pad);
    scroll-snap-type: none;
  }

  .show-strip::after {
    content: none;
  }

  .show-strip img {
    width: 100%;
    min-height: 0;
    max-height: min(16rem, 28vh);
    scroll-snap-align: none;
  }
}

.two-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 901px) {
  .two-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.two-notes article {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(32, 28, 25, 0.13);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.58);
  box-shadow: none;
  transition: transform 0.45s var(--ease), border-color 0.4s var(--ease);
}

.two-notes article p {
  flex: 1;
  margin-bottom: 18px;
}

.two-notes article:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 4, 29, 0.22);
}

.gallery-section {
  max-width: none;
  background: #e4ddd3;
}

.gallery-intro {
  max-width: min(72ch, 100%);
  margin: 0 auto 46px;
  text-align: left;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, 16vw);
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--dark);
  cursor: zoom-in;
  grid-column: span 3;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    320px circle at var(--hover-x) var(--hover-y),
    rgba(255, 253, 248, 0.22),
    transparent 62%
  );
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(23, 21, 19, 0.78));
  pointer-events: none;
}

.gallery-item img {
  transition: transform 0.75s var(--ease), opacity 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  color: var(--paper-strong);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.gallery-item.tall {
  grid-row: span 2;
  grid-column: span 3;
}

.gallery-item.wide {
  grid-column: span 6;
}

.services-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 4vw, 24px);
  align-items: start;
  padding: clamp(34px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
  transition: background 0.4s var(--ease);
}

@media (min-width: 901px) {
  .service-row {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 68px);
    align-items: center;
  }
}

.service-row:hover {
  background: rgba(255, 253, 248, 0.55);
}

@media (hover: hover) and (pointer: fine) {
  .service-row {
    transition: background 0.4s var(--ease), padding 0.4s var(--ease);
  }

  .service-row:hover {
    padding-inline: clamp(12px, 2vw, 22px);
  }
}

.service-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-row h2 {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.service-row:hover img {
  transform: scale(1.03);
}

.contact-section {
  align-items: start;
}

.contact-copy h3 {
  margin-top: 32px;
}

.contact-list,
.social-links {
  display: grid;
  gap: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.84);
  box-shadow: var(--shadow-diffuse), var(--glass-edge);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.contact-form .full,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 34, 30, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: none;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(140, 4, 29, 0.68);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

label.is-invalid input,
label.is-invalid select,
label.is-invalid textarea {
  border-color: var(--accent);
}

small {
  min-height: 18px;
  color: var(--accent);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.consent button,
.footer-policy {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
}

.consent small {
  grid-column: 2;
}

.submit-button {
  justify-self: start;
}

.form-status {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.legal-section {
  min-height: min(70dvh, 720px);
  display: grid;
  align-items: center;
}

.legal-section h1 {
  margin-bottom: 28px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.not-found .measure {
  max-width: 40rem;
}

.legal-prose h2,
.legal-prose h3 {
  margin: 2.4rem 0 0.85rem;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

.legal-prose h3 {
  font-size: clamp(18px, 1.6vw, 22px);
}

.legal-prose ul,
.legal-prose ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

.legal-prose li + li {
  margin-top: 0.45rem;
}

.legal-prose .legal-updated {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.credits-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.credits-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.credits-list li:first-child {
  border-top: 1px solid var(--line);
}

.credits-list a {
  color: var(--accent);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.95fr;
  gap: 36px;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 0%, rgba(133, 24, 44, 0.22), transparent 28rem),
    rgba(24, 20, 18, 0.98);
  color: var(--paper-strong);
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer h2 {
  font-family: var(--font-label);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0.12em;
}

.site-footer h3 {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.site-footer p,
.site-footer a,
.footer-policy {
  color: rgba(255, 253, 248, 0.7);
}

.site-footer a,
.footer-policy {
  display: table;
  margin: 8px 0;
}

.policy-dialog {
  max-width: 560px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.policy-dialog::backdrop {
  background: rgba(23, 21, 19, 0.52);
  backdrop-filter: blur(10px);
}

.dialog-close,
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 47%, currentColor 49% 51%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, currentColor 49% 51%, transparent 53%),
    rgba(255, 253, 248, 0.88);
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 21, 19, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(1120px, 92vw);
  height: min(84vh, 840px);
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
}

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

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

  .hero-background-video,
  .scroll-progress {
    display: none;
  }

  .hero.is-static .hero-background-fallback {
    display: block;
  }

  .hero-copy > p:first-child {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 48px;
    justify-self: end;
    gap: 5px;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.88);
    cursor: pointer;
    box-shadow: var(--glass-edge);
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    z-index: 29;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-label);
    font-weight: 600;
    letter-spacing: 0.045em;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .home-intro,
  .bookkeeping,
  .local-note,
  .about-grid,
  .contact-section,
  .service-overview,
  .section-title,
  .two-notes,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: clamp(28px, 6vw, 48px);
  }

  .bookkeeping img,
  .local-note img,
  .about-grid img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .page-hero {
    min-height: min(64dvh, 580px);
  }

  .page-hero-copy :is(h1, h2) {
    max-width: 100%;
    font-size: clamp(30px, 6.8vw, 52px);
    line-height: 1.06;
  }

  .show-copy {
    margin-bottom: 28px;
  }

  .section.show-section {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    overflow-x: clip;
  }

  .page-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .split-heading {
    padding-left: 0;
  }

  .hero h1,
  .split-heading h1 {
    max-width: 7.4ch;
  }

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(240px, 34vw);
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    gap: 10px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 25px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    min-height: min(100dvh, 820px);
    padding: 34px 18px 24px;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
  }

  .hero-copy > p:first-child,
  .page-hero-copy > p:first-child {
    max-width: 32ch;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero h1,
  .split-heading h1 {
    max-width: 7.4ch;
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-caption {
    flex-direction: column;
    gap: 2px;
  }

  .hero-background::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, 0.94) 0%,
        rgba(255, 253, 248, 0.82) 42%,
        rgba(23, 21, 19, 0.38) 100%
      );
  }

  h2 {
    font-size: clamp(34px, 10.4vw, 54px);
  }

  .section {
    padding: 68px 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card-media {
    aspect-ratio: 4 / 3;
  }

  .overview-images,
  .two-notes,
  .contact-form,
  .service-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    padding-top: clamp(78px, 18vw, 100px);
    padding-bottom: clamp(72px, 14vw, 96px);
  }

  .hero-caption {
    font-size: 10px;
  }

  .overview-images img:first-child,
  .overview-images img:last-child {
    grid-row: auto;
  }

  .bookkeeping img,
  .local-note img,
  .about-grid img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .page-hero {
    min-height: min(52dvh, 480px);
  }

  .page-hero-copy {
    padding-top: clamp(84px, 20vw, 112px);
    padding-bottom: clamp(28px, 7vw, 44px);
    padding-inline: 18px;
  }

  .show-copy {
    padding-inline: 0;
  }

  .page-hero-copy :is(h1, h2) {
    font-size: clamp(26px, 8.2vw, 40px);
    line-height: 1.1;
  }

  .show-section {
    padding-top: clamp(52px, 12vw, 68px);
    padding-bottom: clamp(60px, 14vw, 80px);
  }

  .show-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .show-strip::after {
    content: none;
  }

  .show-strip img {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    scroll-snap-align: none;
  }

  .about-grid .button,
  .two-notes .button {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .service-row {
    gap: 14px;
    padding: 24px 0;
  }

  .service-row h2 {
    font-size: clamp(20px, 5.4vw, 26px);
    line-height: 1.2;
  }

  .services-hero .page-hero-copy :is(h1, h2) {
    max-width: 100%;
  }

  .services-hero .page-hero-copy > p:last-of-type {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
  }

  .two-notes article {
    padding: clamp(20px, 5vw, 28px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, 74vw);
  }

  .contact-form .full,
  .form-status {
    grid-column: auto;
  }
}

@media (min-width: 721px) and (max-width: 1279px) {
  .show-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-inline: var(--page-pad);
  }

  .show-strip::after {
    content: none;
  }

  .show-strip img {
    width: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    scroll-snap-align: none;
  }

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

  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    grid-column: auto;
  }

}

@media (min-width: 1081px) {
  :root {
    --max: min(1480px, calc(100vw - 2 * var(--page-pad)));
  }

  .site-header,
  .site-footer {
    padding-inline: var(--shell-pad);
  }

  .hero {
    padding-inline: var(--shell-pad);
  }

  .hero-caption {
    left: var(--shell-pad);
    right: var(--shell-pad);
  }

  .page-hero {
    min-height: min(70dvh, 780px);
  }

  .hero-copy {
    max-width: 38rem;
  }

  .hero h1,
  .split-heading h1 {
    max-width: 12ch;
    font-size: clamp(52px, 5.4vw, 96px);
  }

  h2 {
    font-size: clamp(34px, 4.2vw, 76px);
  }

  .split-heading {
    padding-left: clamp(0px, 5vw, 88px);
  }

  .section-title {
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.9fr);
  }

  .overview-images {
    grid-auto-rows: minmax(200px, min(18vw, 260px));
  }

  .bookkeeping,
  .local-note {
    grid-template-columns: minmax(300px, 520px) minmax(340px, 520px);
    justify-content: center;
    gap: clamp(48px, 5vw, 100px);
  }

  .bookkeeping img,
  .local-note img {
    min-height: min(420px, 42vh);
    max-height: 520px;
  }

  .about-grid,
  .home-intro,
  .contact-section,
  .service-overview {
    gap: clamp(48px, 5vw, 96px);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .about-grid > div {
    max-width: 40rem;
  }

  .about-grid h2 {
    max-width: none;
  }

  .about-grid img {
    width: 100%;
    max-height: min(540px, 52vh);
    object-fit: cover;
  }

  .section.show-section {
    padding-inline: 0;
  }

  .show-copy {
    padding-inline: var(--shell-pad);
  }

  .show-copy h2,
  .show-copy p {
    max-width: min(52ch, 100%);
  }

  .two-notes {
    gap: clamp(16px, 2vw, 24px);
  }

  .gallery-section {
    padding-inline: var(--shell-pad);
  }

  .gallery-grid {
    grid-auto-rows: minmax(200px, min(14vw, 280px));
    gap: clamp(12px, 1.2vw, 18px);
  }

  .gallery-intro {
    max-width: min(68ch, 100%);
    padding-inline: 0;
  }

  .page-hero-copy {
    width: 100%;
    margin-inline: 0;
    padding-inline: var(--shell-pad);
  }

  .page-hero-copy :is(h1, h2) {
    max-width: min(22ch, 100%);
  }

  .services-hero .page-hero-copy :is(h1, h2) {
    max-width: min(30ch, 100%);
  }

  .feature-card-media {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 1081px) and (max-width: 1240px) {
  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
  }
}

@media (min-width: 1440px) {
  :root {
    --max: min(1680px, calc(100vw - 2 * var(--page-pad)));
  }

  .feature-grid {
    gap: 22px;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .gallery-grid {
    grid-auto-rows: minmax(220px, min(13vw, 300px));
  }
}

@media (min-width: 1920px) {
  :root {
    --max: min(1880px, calc(100vw - 2 * var(--page-pad)));
  }

  .page-hero {
    min-height: min(68dvh, 900px);
  }

  .overview-images {
    grid-auto-rows: minmax(220px, 280px);
  }

  .gallery-grid {
    grid-auto-rows: minmax(240px, min(12vw, 320px));
    gap: 16px;
  }

  .show-strip img {
    max-height: min(18rem, 30vh);
  }
}

@media (min-width: 2400px) {
  :root {
    --max: min(2040px, calc(100vw - 2 * var(--page-pad)));
  }

  .gallery-grid {
    grid-auto-rows: minmax(260px, 300px);
  }
}
