:root {
  --ink: #151615;
  --charcoal: #242725;
  --paper: #f7f3eb;
  --panel: #eee6d8;
  --brass: #b98a45;
  --brick: #a54b34;
  --navy: #183454;
  --green: var(--navy);
  --blue: #476f8d;
  --muted: #68665f;
  --line: rgba(21, 22, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(24, 52, 84, 0.96);
  border-bottom: 6px solid var(--brass);
  color: #fffaf0;
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  font-size: 13px;
}

.brand-logo-mark {
  display: block;
  width: 52px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.nav {
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.nav-scroll {
  display: none;
}

.nav a {
  position: relative;
  padding: 10px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:not(.nav-cta):hover,
.nav a[aria-current="page"] {
  color: #f4d188;
}

.nav a[aria-current="page"]:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: #f4d188;
}

.nav-cta {
  border: 1px solid var(--brass);
  background: var(--brass);
  color: var(--ink);
}

.nav-cta:hover {
  color: var(--ink);
  background: #f4d188;
  border-color: #f4d188;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  filter: saturate(0.95) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.82) 0%, rgba(8, 9, 8, 0.52) 42%, rgba(8, 9, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.48) 0%, rgba(8, 9, 8, 0) 46%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(36px, 8vw, 92px) clamp(18px, 6vw, 84px);
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--brass);
  color: var(--ink);
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
}

.section-grid,
.services,
.feature,
.split-band,
.contact-band,
.gallery-hero,
.gallery-grid {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  columns: 2 280px;
  column-gap: 32px;
  color: var(--muted);
  font-size: 17px;
}

.intro-copy p {
  break-inside: avoid;
}

.services {
  background: #fffaf0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--brick);
  font-weight: 900;
}

.service-grid p,
.feature-copy p,
.gallery-hero p,
.contact-band p {
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.feature-image {
  aspect-ratio: 1.45;
  overflow: hidden;
}

.feature-image img,
.subpage-hero img,
.archive-gallery img,
.service-note img {
  border: 1px solid #111;
  box-sizing: border-box;
}

.feature-copy {
  max-width: 620px;
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 13px;
  height: 13px;
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 850;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--brass);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background: #eeeeee;
  color: var(--ink);
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(24, 52, 84, 0.18);
}

.steps div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(24, 52, 84, 0.18);
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.steps p {
  color: #8a632f;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: clamp(320px, 48vw, 620px);
}

.image-strip img:nth-child(2) {
  object-position: center center;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  color: #fffaf0;
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-top: 6px solid var(--brass);
}

.contact-band div:first-child {
  max-width: 720px;
}

.contact-band .eyebrow {
  color: #f4d188;
}

.contact-band p {
  color: var(--brass);
}

.contact-band h2 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fffaf0;
  font-size: 14px;
}

.footer-brand img {
  width: 76px;
  height: auto;
  object-fit: contain;
}

.site-footer a {
  text-decoration-color: rgba(255, 250, 240, 0.45);
}

.gallery-hero {
  max-width: 980px;
  padding-bottom: 34px;
}

.gallery-hero h1 {
  color: var(--ink);
}

.gallery-hero p {
  max-width: 660px;
  font-size: 18px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(64px, 10vw, 132px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  color: var(--ink);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.subpage-hero img {
  aspect-ratio: 1.1;
  min-height: 360px;
}

.about-hero img {
  object-position: center center;
}

.services-hero img {
  aspect-ratio: 1.32;
  object-position: center center;
}

.archive-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.08fr 1.24fr 0.8fr;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 72px);
  background: #fffaf0;
  border-bottom: 1px solid var(--line);
}

.archive-gallery img {
  height: clamp(220px, 24vw, 390px);
  cursor: zoom-in;
  transition: filter 180ms ease, transform 180ms ease;
}

.archive-gallery img:nth-child(1),
.archive-gallery img:nth-child(4) {
  object-fit: contain;
  background: var(--panel);
}

.archive-gallery img:hover {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.01);
}

.story-section {
  display: grid;
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 108px);
  background: var(--line);
}

.story-section article {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  column-gap: clamp(28px, 6vw, 92px);
  padding: clamp(36px, 6vw, 72px) 0;
  background: var(--paper);
}

.story-section article > .eyebrow {
  grid-column: 1;
  align-self: start;
  justify-self: center;
  min-width: min(100%, 190px);
  margin-top: 4px;
  padding: 10px 14px;
  border-top: 3px solid var(--brass);
  border-bottom: 3px solid var(--brass);
  color: var(--navy);
  text-align: center;
}

.story-section article > h2,
.story-section article > p {
  grid-column: 2;
}

.story-section article > p {
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
}

.package-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: #fffaf0;
}

.package-grid {
  display: grid;
  gap: 14px;
}

.package-grid details {
  border: 1px solid var(--line);
  background: var(--paper);
}

.package-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.package-grid summary::-webkit-details-marker {
  display: none;
}

.package-grid summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--brick);
  font-size: 24px;
  font-weight: 500;
}

.package-grid details[open] summary::after {
  content: "-";
}

.package-grid summary span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
}

.package-grid summary small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.package-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  padding: 0 28px 30px;
  margin: 0;
  list-style: none;
}

.package-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.package-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.service-details {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.service-note img {
  height: auto;
  aspect-ratio: 1.18;
  object-position: center center;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-grid p {
  color: var(--muted);
}

.gallery-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

figure {
  margin: 0;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid #111;
  box-sizing: border-box;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger img {
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.025);
  filter: contrast(1.04) saturate(1.04);
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: -3px;
}

figure.wide {
  grid-column: span 2;
}

figure.tall {
  grid-row: span 2;
  min-height: 620px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 11, 10, 0.64);
  backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.lightbox-image {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: min(94vw, 1400px);
  max-height: 90svh;
  object-fit: contain;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  cursor: zoom-out;
}

.lightbox-image.is-archive-lightbox {
  width: min(86vw, 760px);
  height: min(86svh, 760px);
  object-fit: contain;
}

@media (max-width: 980px) {
  .service-grid,
  .gallery-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .feature,
  .split-band,
  .subpage-hero,
  .service-details {
    grid-template-columns: 1fr;
  }

  .feature {
    padding-top: 64px;
  }

  .archive-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-section article {
    grid-template-columns: 1fr;
  }

  .story-section article > .eyebrow,
  .story-section article > h2,
  .story-section article > p {
    grid-column: 1;
  }

  .story-section article > .eyebrow {
    justify-self: start;
    min-width: 0;
    text-align: left;
  }
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .subpage-hero {
    grid-template-columns: minmax(0, 0.84fr) minmax(150px, 0.66fr);
    align-items: center;
    gap: clamp(16px, 4vw, 42px);
  }

  .subpage-hero h1 {
    font-size: clamp(30px, 6.6vw, 58px);
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: clamp(15px, 3.8vw, 20px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
  }

  figure.wide,
  figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-image,
  .subpage-hero,
  .service-note,
  figure,
  figure.tall {
    min-height: 0;
    aspect-ratio: auto;
    background: transparent;
  }

  .feature-image img,
  .subpage-hero img,
  .archive-gallery img,
  .service-note img,
  .image-strip img,
  .gallery-trigger img {
    height: auto;
    object-fit: contain;
  }

  .gallery-trigger img {
    border: 1px solid #111;
    box-sizing: border-box;
  }

  .archive-gallery img,
  .archive-gallery img:nth-child(1),
  .archive-gallery img:nth-child(4) {
    background: transparent;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    width: 100%;
    gap: 6px;
  }

  .nav {
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-scroll {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(244, 209, 136, 0.55);
    background: rgba(255, 250, 240, 0.08);
    color: #f4d188;
    font-size: 22px;
    line-height: 1;
  }

  .nav-scroll:disabled {
    opacity: 0.35;
  }

  .hero {
    min-height: 820px;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 20px;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .gallery-grid,
  .image-strip,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid article {
    padding: 18px;
  }

  .archive-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-gallery img {
    height: auto;
  }

  .subpage-hero h1 {
    font-size: clamp(27px, 7vw, 34px);
    line-height: 1;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.45;
  }

  .subpage-hero img {
    min-height: 300px;
  }

  .package-grid summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .package-grid ul {
    grid-template-columns: 1fr;
    padding: 0 22px 24px;
  }

  .image-strip {
    height: auto;
  }

  .image-strip img {
    height: 360px;
  }

  figure,
  figure.tall {
    min-height: 360px;
  }

  figure.wide,
  figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .feature-image,
  .subpage-hero,
  .service-note,
  .image-strip,
  figure,
  figure.tall {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    background: transparent;
    border: 0;
  }

  .gallery-trigger {
    height: auto;
  }

  .feature-image img,
  .subpage-hero img,
  .archive-gallery img,
  .service-note img,
  .gallery-trigger img {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    border: 1px solid #111;
    background: transparent;
    box-sizing: border-box;
    object-fit: contain;
  }

  .image-strip img,
  .gallery-trigger img {
    min-height: 0;
    height: clamp(260px, 34vw, 420px);
    aspect-ratio: auto;
    border: 1px solid #111;
    background: transparent;
    box-sizing: border-box;
    object-fit: cover;
  }

  .archive-gallery img,
  .archive-gallery img:nth-child(1),
  .archive-gallery img:nth-child(4) {
    width: 100%;
    height: clamp(220px, 30vw, 360px);
    object-fit: cover;
  }

  .service-note img {
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .hero-copy {
    transform: translateY(14px);
  }

  .subpage-hero img {
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 721px) and (max-width: 1100px) and (hover: none) and (pointer: coarse) {
  .subpage-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.78fr);
    align-items: center;
  }

  .service-details {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .service-note {
    position: sticky;
    top: 110px;
  }

  .service-note img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
  }
}
