/* ═══════════════════════════════════════════════════════════════
   BINGLEY CUT — style.css
   Design: Dark-Gallery × Craft Aesthetic
   Dials: DESIGN_VARIANCE 8 / MOTION_INTENSITY 5 / VISUAL_DENSITY 3
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --void:      #0a0d09;
  --ink:       #111509;
  --ink-2:     #191e17;
  --parchment: #f0ebe4;
  --cream:     #e6e0d8;
  --muted:     rgba(240,235,228,.52);
  --dim:       rgba(240,235,228,.25);
  --red:       #c91b1b;
  --red-hi:    #e02020;
  --green:     #3d8c41;
  --border:    rgba(240,235,228,.1);
  --border-lm: rgba(17,21,9,.1);

  --ff-display: 'Space Grotesk', system-ui, sans-serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.0,.0,.2,1);

  --gap-section: clamp(72px, 9vw, 130px);
  --container:   1300px;
  --nav-h:       68px;
  --radius:      3px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--parchment);
  background: var(--void);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
address { font-style: normal; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-display); line-height: 1.04; letter-spacing: -.03em; }

.tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}

.h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--muted);
}

.section-desc {
  font-size: .95rem;
  color: rgba(240,235,228,.68);
  max-width: 52ch;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-101%);
  transition: transform .35s var(--ease);
}
.btn:hover::after { transform: translateX(0); }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hi); }

.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(240,235,228,.28);
}
.btn-outline:hover { border-color: var(--parchment); }

.btn-sm { padding: .5rem 1rem; font-size: .78rem; }

/* Nav CTA — always visible regardless of scroll state */
.nav-cta {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(240,235,228,.35);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .15s var(--ease);
}
.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.reveal-word.is-visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .42s; }
.delay-5 { transition-delay: .54s; }

.accent-red { color: var(--red); }

/* ── Cookie Banner ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: min(calc(100% - 2.5rem), 560px);
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1000;
  transition: transform .5s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.cookie-banner.is-visible { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: .82rem; color: var(--cream); flex: 1; min-width: 180px; }
.cookie-banner a { color: var(--parchment); text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-reject {
  border: none;
  padding: .38rem .85rem;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff-display);
  transition: opacity .2s;
}
.btn-cookie-accept { background: var(--red); color: #fff; }
.btn-cookie-reject { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-cookie-accept:hover { opacity: .88; }
.btn-cookie-reject:hover { color: var(--parchment); }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-inline: clamp(20px, 5vw, 64px);
  z-index: 200;
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(10,13,9,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo img { width: 40px; height: auto; flex-shrink: 0; }
.nav-wordmark {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--parchment);
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--parchment); }

.nav-tel {
  display: none;
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-tel:hover { color: var(--red); }

.nav-toggle {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--parchment);
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 2px; }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  transform: translateX(101%);
  transition: transform .4s var(--ease);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer ul { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.nav-drawer a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--parchment);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--red); }
.drawer-tel {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--muted);
}

/* ── Section base ────────────────────────────────────────────── */
.section { padding-block: var(--gap-section); }

.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 7vh, 96px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,13,9,.55) 0%, rgba(10,13,9,.1) 40%, rgba(10,13,9,.8) 100%),
    linear-gradient(90deg, rgba(10,13,9,.75) 0%, rgba(10,13,9,.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-kicker {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-size: clamp(3.8rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .96;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(240,235,228,.72);
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-address {
  font-family: var(--ff-display);
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}
.hero-address a { color: rgba(240,235,228,.7); transition: color .2s; }
.hero-address a:hover { color: var(--red); }
.sep { opacity: .3; }

.hero-scroll-hint {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: pulse-line 2.2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--ff-display);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}
@keyframes pulse-line {
  0%, 100% { opacity: .25; transform: scaleY(.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ── Marquee ─────────────────────────────────────────────────── */
/* ── Services ────────────────────────────────────────────────── */
.services-section { background: var(--void); position: relative; overflow: hidden; }

.services-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  z-index: 0;
}
.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: .14;
  mask-image: linear-gradient(to right, transparent 0%, black 55%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
}
.services-section .container { position: relative; z-index: 1; }

.services-list {
  border-top: 1px solid var(--border);
  counter-reset: svc;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  counter-increment: svc;
}
.service-item .service-main::before {
  content: counter(svc, decimal-leading-zero);
  display: block;
  font-family: var(--ff-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--dim);
  margin-bottom: .45rem;
}
.service-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width .4s var(--ease);
}
.service-item:hover::before { width: 72px; }

.service-main { flex: 1; }
.service-main h3 {
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .3rem;
  color: var(--parchment);
}
.service-main p {
  font-size: .88rem;
  color: rgba(240,235,228,.65);
  max-width: 48ch;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  flex-shrink: 0;
}
.price {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.duration {
  font-family: var(--ff-display);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--dim);
  white-space: nowrap;
}

.services-footnote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--dim);
}

/* ── About ───────────────────────────────────────────────────── */
.about-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.about-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,13,9,1) 0%, rgba(10,13,9,0) 20%, rgba(10,13,9,0) 80%, rgba(10,13,9,1) 100%),
    linear-gradient(90deg, rgba(10,13,9,.88) 0%, rgba(10,13,9,.48) 60%, rgba(10,13,9,.72) 100%);
}

.about-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 8vw, 7rem);
  max-width: 620px;
}
.about-content .h2 { margin-top: .25rem; }
.about-body {
  font-size: .95rem;
  color: rgba(240,235,228,.72);
  max-width: 52ch;
  margin-bottom: .9rem;
  line-height: 1.75;
}

/* ── Works / Portfolio ───────────────────────────────────────── */
.works-section { background: var(--void); }
.works-section .section-header { padding-inline: 0; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.work-item {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  display: block;
}

.work-item:hover img { transform: scale(1.05); }
.work-item--tall { grid-row: span 2; }
.work-item--wide { grid-column: span 2; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-section {
  background: var(--void);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .12;
  filter: grayscale(1);
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}
.contact-form-col .h2 { margin-bottom: 1.75rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,235,228,.4);
}
.optional { font-weight: 400; letter-spacing: 0; text-transform: none; font-family: var(--ff-body); font-size: .7rem; }

input, select, textarea {
  background: rgba(25,30,23,.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .68rem .9rem;
  color: var(--parchment);
  font-size: .9rem;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
}
input::placeholder, textarea::placeholder { color: var(--dim); }
textarea { resize: vertical; min-height: 96px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,235,228,.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }

.form-note {
  font-size: .72rem;
  color: var(--dim);
  text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--red); text-decoration: underline; }

/* Submit button loading state */
#submitBtn { position: relative; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
#submitBtn.btn--loading .btn-label { opacity: 0; }
#submitBtn.btn--loading .btn-spinner { display: block; animation: spin .65s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(61,140,65,.35);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(61,140,65,.06);
  animation: fadeSlideUp .5s var(--ease) both;
}
.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
  margin: 0 auto 1rem;
}
.success-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: .35rem;
}
.success-body { font-size: .88rem; color: rgba(240,235,228,.65); }
.success-direct { margin-top: .5rem; font-size: .8rem !important; }
.success-direct a { color: var(--parchment) !important; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.btn[disabled], .btn.is-loading {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Info cards */
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10,13,9,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .3s;
}
.info-card:hover { border-color: rgba(201,27,27,.25); }

.info-card h3 {
  font-family: var(--ff-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.info-card address { line-height: 1.75; font-size: .9rem; color: var(--muted); }
.info-card address strong { color: var(--parchment); font-weight: 600; }
.info-card p { font-size: .9rem; color: var(--muted); }
.info-card a { color: var(--parchment); transition: color .2s; }
.info-card a:hover { color: var(--red); }

.map-link {
  display: inline-block;
  margin-top: .6rem;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--red) !important;
  letter-spacing: .04em;
  transition: opacity .2s !important;
}
.map-link:hover { opacity: .78; }

.hours { display: flex; flex-direction: column; gap: .45rem; }
.hours-row { display: grid; grid-template-columns: 1fr 1fr; font-size: .88rem; }
.hours-row dt { color: var(--muted); }
.hours-row dd { text-align: right; color: var(--parchment); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
}
.footer-inner {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-wordmark {
  font-family: var(--ff-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--parchment);
  white-space: nowrap;
}
.footer-reg {
  font-size: .74rem;
  color: rgba(240,235,228,.48);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.footer-contact {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}
.footer-contact a {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(240,235,228,.68);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--parchment); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: .72rem; color: rgba(240,235,228,.40); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-legal a {
  font-size: .72rem;
  color: rgba(240,235,228,.48);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--parchment); }

.cookie-reset {
  background: none;
  border: none;
  font-size: .72rem;
  color: rgba(240,235,228,.60);
  cursor: pointer;
  font-family: var(--ff-display);
  text-decoration: underline;
  transition: color .2s;
}
.cookie-reset:hover { color: var(--red); }

/* ── Work items — clickable ──────────────────────────────────── */
.work-item { cursor: zoom-in; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.lightbox[hidden] { display: none !important; }
.lightbox.is-open  { opacity: 1; pointer-events: auto; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,13,9,.94);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  background: rgba(17,21,9,.8);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1100px);
  max-height: 92vh;
  transform: scale(.96);
  transition: transform .22s var(--ease);
}
.lightbox.is-open .lightbox-stage { transform: scale(1); }

.lightbox-img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  display: block;
}

/* ── Focus-visible global ────────────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-up, .reveal-word {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Mobile-only adjustments ─────────────────────────────────── */
@media (max-width: 639px) {
  /* Nav: hide empty nav wrapper, align Book Now to the right */
  .nav > nav { display: none; }
  .nav .btn-sm { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  /* Form: stack phone/email on narrow screens */
  .field-row { grid-template-columns: 1fr; }
}

/* ── MD: 640px+ ─────────────────────────────────────────────── */
@media (min-width: 640px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .work-item--tall { grid-row: span 1; }
  .work-item--wide { grid-column: span 1; }
}

/* ── LG: 768px+ ─────────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav-links, .nav-tel { display: flex; }
  .nav-toggle { display: none; }
}

/* ── XL: 1024px+ ────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
  }
  .work-item--tall { grid-row: span 2; }
  .work-item--wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1.3fr 0.7fr; align-items: start; }
}
