:root {
  --cream: #f6f1e8;
  --cream-deep: #ece2d2;
  --paper: #fffdf8;
  --sand: #d7c5aa;
  --brass: #b78e4f;
  --brass-light: #f3dfb1;
  --green: #173f34;
  --green-soft: #28594b;
  --green-pale: #dce7df;
  --charcoal: #262b29;
  --muted: #66706c;
  --line: rgba(38, 43, 41, 0.16);
  --white: #fff;
  --danger: #a02b2b;
  --success: #1f6a48;
  --shadow: 0 24px 70px rgba(27, 43, 36, 0.13);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1240px;
  --header-height: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d6a95f;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--green-soft);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #dfc99e;
}

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

h1,
h2 {
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.75rem);
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.3;
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--green);
  border-radius: 0;
  color: var(--white);
  background: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--green-soft);
  background: var(--green-soft);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
}

.button-outline {
  color: var(--green);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
}

.button-light {
  border-color: var(--paper);
  color: var(--green);
  background: var(--paper);
}

.button-light:hover {
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
  color: var(--green);
  font-weight: 720;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(23, 63, 52, 0.1);
  background: rgba(255, 253, 248, 0.96);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(25, 45, 37, 0.1);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.header-brand {
  display: block;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--green);
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.045em;
}

.brand-tagline {
  margin-top: 0.3rem;
  color: var(--brass);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}

.main-nav a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  min-height: min(780px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(360px, 44%) minmax(0, 56%);
  color: var(--white);
  background: var(--green);
}

.hero-copy {
  display: flex;
  align-items: center;
}

.hero-copy-inner {
  width: min(100%, 610px);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: clamp(4rem, 8vw, 7rem) clamp(2.3rem, 5vw, 6rem) clamp(4rem, 8vw, 7rem) 0;
}

.hero .eyebrow {
  color: #ddc69b;
}

.hero h1 {
  max-width: 8.2ch;
}

.hero-intro {
  max-width: 560px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero .button {
  border-color: var(--paper);
  color: var(--green);
  background: var(--paper);
}

.hero .button:hover {
  border-color: var(--white);
  background: var(--white);
}

.hero-note {
  margin: 2.4rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.hero-image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.hero-image-wrap picture {
  display: block;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  max-width: 310px;
  padding: 1rem 1.2rem;
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.94);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
}

/* Trust */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  margin: 0;
  padding: 1.7rem 2rem;
  border-right: 1px solid var(--line);
}

.trust-grid p:first-child {
  padding-left: 0;
}

.trust-grid p:last-child {
  border: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.trust-grid span {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.79rem;
}

/* About */
.about {
  overflow: hidden;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.about-copy h2 {
  max-width: 11ch;
}

.about-copy p:not(.eyebrow) {
  max-width: 590px;
}

.about-images {
  position: relative;
  min-height: 650px;
}

.about-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  margin: 0;
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  margin: 0;
  border: 10px solid var(--paper);
  box-shadow: var(--shadow);
}

.about-image-detail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--brass);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* Services */
.services {
  background: var(--cream);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px minmax(300px, 1fr) minmax(180px, 0.35fr);
  align-items: center;
  gap: 2rem;
}

.service-number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1rem;
}

.service-row h3 {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 400;
}

.service-row p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-keyword {
  justify-self: end;
  color: var(--green-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

/* Occasions */
.occasions {
  color: var(--white);
  background: var(--green);
}

.occasions .eyebrow {
  color: #dfc99e;
}

.occasions-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.occasions-intro {
  align-self: start;
}

.occasions-intro h2 {
  max-width: 10ch;
}

.occasions-intro p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.73);
}

.occasions .button-outline {
  margin-top: 1rem;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.occasions .button-outline:hover {
  border-color: var(--white);
  color: var(--green);
  background: var(--white);
}

.occasion-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.occasion-list li {
  position: relative;
  padding: 1.25rem 1.8rem 1.25rem 2.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.occasion-list li:nth-child(2n) {
  border-right: 0;
}

.occasion-list li::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  content: "";
  transform: translateY(-50%);
}

.occasion-list li:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

/* Gallery */
.gallery-section {
  background: var(--paper);
}

.gallery-heading h2 {
  max-width: 13ch;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 240px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream-deep);
  cursor: zoom-in;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 250ms ease, transform 450ms ease;
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green);
  background: rgba(255, 253, 248, 0.92);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-hint {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

/* Delivery */
.delivery {
  background: var(--cream);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.delivery-image {
  position: relative;
  margin: 0;
}

.delivery-image::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: 30px;
  bottom: 24px;
  left: -24px;
  border: 1px solid var(--brass);
  content: "";
}

.delivery-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.delivery-copy h2 {
  max-width: 10ch;
}

.delivery-copy p {
  max-width: 590px;
}

/* Process */
.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 245px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  border: 0;
}

.process-list span {
  display: block;
  margin-bottom: 3rem;
  color: var(--brass);
  font-family: var(--serif);
}

.process-list h3 {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  color: var(--white);
  background: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: clamp(4rem, 9vw, 8rem);
}

.contact-intro h2 {
  max-width: 10ch;
}

.contact-intro > p:not(.eyebrow, .contact-note) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  margin: 2.5rem 0;
  gap: 1.15rem;
}

.contact-details div {
  display: grid;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
  column-gap: 1rem;
}

.contact-details dt {
  color: #dfc99e;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  min-width: 0;
  margin: 0;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--white);
}

.contact-note {
  max-width: 430px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.contact-form-wrap {
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--charcoal);
  background: var(--paper);
}

.contact-form-wrap > h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 400;
}

.contact-form-wrap > p {
  margin: 0.4rem 0 2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
  font-size: 0.79rem;
  font-weight: 680;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid #aeb5b1;
  border-radius: 0;
  color: var(--charcoal);
  background: transparent;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 1px 0 var(--green);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
  border-color: var(--danger);
}

.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.65rem;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--green);
}

.consent-field label {
  font-weight: 450;
  line-height: 1.5;
}

.consent-field a {
  color: var(--green);
}

.button-submit {
  margin-top: 1.8rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--danger);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  padding-top: 4.5rem;
  color: #d8dedb;
  background: #102d26;
}

.footer-grid {
  display: grid;
  padding-bottom: 3.5rem;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.7fr;
  gap: 3rem;
}

.brand-footer {
  margin-bottom: 1.3rem;
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-title {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer address,
.site-footer p,
.footer-nav {
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.8;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-cookie-button {
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

/* Cookie notice */
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 450;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.cookie-banner-inner {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: 1.5rem 1.65rem;
  border: 1px solid rgba(202, 160, 85, 0.35);
  border-radius: 4px;
  color: var(--white);
  background: #102d26;
  box-shadow: 0 20px 55px rgba(8, 25, 20, 0.3);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2rem;
}

.cookie-banner-copy {
  max-width: 820px;
}

.cookie-banner .eyebrow {
  margin-bottom: 0.35rem;
}

.cookie-banner h2 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.65;
}

.cookie-banner a {
  color: var(--white);
  text-decoration-color: var(--brass);
  text-underline-offset: 0.2em;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-confirm {
  min-width: 145px;
  border: 2px solid var(--brass-light);
  color: #102d26;
  background: var(--brass-light);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.cookie-confirm:hover {
  border-color: var(--white);
  color: #102d26;
  background: var(--white);
}

/* Lightbox */
.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 2rem;
  place-items: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 15, 0.92);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 92vw);
  max-height: 90vh;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
}

.lightbox figure {
  min-width: 0;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -2.5rem;
  right: 0;
  width: 44px;
  height: 44px;
  font-size: 2rem;
}

.lightbox-nav {
  min-width: 48px;
  min-height: 54px;
  font-family: var(--serif);
  font-size: 3rem;
}

.lightbox-counter {
  position: absolute;
  right: 0;
  bottom: -2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Legal and response pages */
.subpage-main {
  min-height: 65vh;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--cream);
}

.subpage-hero {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  margin-bottom: 1rem;
  color: var(--green);
}

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
}

.legal-content {
  max-width: 850px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--paper);
}

.legal-content h2 {
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 2rem;
  color: var(--green);
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.todo-notice {
  margin-block: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--brass);
  color: #5d4929;
  background: #f5e8cd;
}

.response-box {
  max-width: 760px;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--paper);
}

.response-box h1 {
  color: var(--green);
}

.response-box.is-error {
  border-top: 4px solid var(--danger);
}

.response-box.is-success {
  border-top: 4px solid var(--success);
}
