/* =========================================================================
   SHB · Stephen Harding Bathrooms — Quiet Craft
   Editorial redesign · paper, ink & a precise cyan signature
   ========================================================================= */

/* ------------------------------ 01 · TOKENS ------------------------------ */
:root {
  /* Palette — warm linen paper + deep ink + stone, cyan preserved as accent */
  --paper:        #f2ede3;
  --paper-2:      #ebe4d6;
  --paper-soft:   #f8f3ea;
  --ink:          #131418;
  --ink-2:        #1f2128;
  --ink-soft:     #3a3d46;
  --muted:        #7a766d;
  --hair:         rgba(19, 20, 24, 0.12);
  --hair-soft:    rgba(19, 20, 24, 0.06);
  --stone:        #8a7c67;
  --stone-light:  #c7b99f;

  --brand:        #00cfef;          /* preserved SHB cyan */
  --brand-deep:   #0097b1;
  --brand-wash:   rgba(0, 207, 239, 0.10);

  /* Typography */
  --serif:        'Fraunces', 'Times New Roman', serif;
  --sans:         'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Scale */
  --pad-x:        clamp(20px, 5vw, 72px);
  --radius:       2px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------------ 02 · RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--brand); color: var(--ink); }

/* utility: a thin column for ultra-wide content centering */
.wrap {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.mono--light { color: rgba(242, 237, 227, 0.7); }

/* ------------------------------ 03 · GRAIN & CURSOR ---------------------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.08 0 0 0 0 0.1 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              background 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
  mix-blend-mode: difference;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover {
  width: 44px; height: 44px;
  background: var(--paper);
}
@media (hover: none) { .cursor { display: none; } }

/* ------------------------------ 04 · NAV --------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 22px var(--pad-x);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(242, 237, 227, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--hair);
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img {
  height: 42px;
  width: auto;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo img { height: 34px; }
.nav.is-dark .nav__logo img { filter: brightness(1.15) saturate(1.05); }

.nav__links {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.nav__links a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav.is-dark .nav__links a { color: var(--paper); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav__cta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 207, 239, 0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 207, 239, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 207, 239, 0); }
}

.nav.is-dark .nav__cta { border-color: rgba(242, 237, 227, 0.2); color: var(--paper); }
.nav.is-dark .nav__cta:hover { background: var(--paper); color: var(--ink); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    position: fixed;
    top: 22px;
    right: var(--pad-x);
    z-index: 9997;
    color: var(--ink);
    transition: top 0.4s var(--ease), color 0.3s var(--ease);
  }
  .nav.is-scrolled .nav__burger { top: 14px; }
  .nav.is-dark .nav__burger { color: var(--paper); }
  .nav__burger[aria-expanded="true"] { color: var(--ink); }
}

/* Mobile menu overlay — body-rooted, no stacking-context ambiguity */
@media (max-width: 960px) {
  .nav__links {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 96px 28px 80px;
    background: var(--paper);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -24px, 0);
    transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
  }
  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
  .nav__links a {
    display: block;
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 9vw, 56px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink) !important;
    padding: 6px 12px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  .nav__links a::after { display: none !important; }
  .nav__links.is-open a { opacity: 1; transform: none; }
  .nav__links.is-open a:nth-child(1) { transition-delay: 0.12s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: 0.18s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: 0.24s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: 0.30s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: 0.36s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: 0.42s; }

  .nav__links::before {
    content: "Menu";
    position: absolute;
    top: 34px;
    left: 28px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav__links::after {
    content: "07983 603998 · contact@shbathrooms.co.uk";
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    white-space: nowrap;
    max-width: calc(100vw - 48px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ------------------------------ 05 · HERO -------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroZoom 8s var(--ease) forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 12, 16, 0.55) 0%,
      rgba(10, 12, 16, 0.30) 35%,
      rgba(10, 12, 16, 0.45) 75%,
      rgba(10, 12, 16, 0.75) 100%),
    linear-gradient(120deg,
      rgba(0, 130, 150, 0.12) 0%,
      transparent 60%);
}

.hero__grid {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 120px var(--pad-x) 52px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 1s var(--ease-out) 0.4s forwards;
}
.hero__meta .mono { color: rgba(242, 237, 227, 0.75); }
.hero__meta::after {
  content: "";
  flex: 0 0 120px;
  height: 1px;
  background: rgba(242, 237, 227, 0.4);
}

.hero__title {
  align-self: end;
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(48px, 9.3vw, 152px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--paper-soft);
  max-width: 16ch;
}
.hero__title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: block;
  transform: translateY(110%);
  animation: riseIn 1.1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.40s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.55s; }

.hero__foot {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 34%);
  gap: 48px;
  align-items: end;
  padding-top: 36px;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 1s var(--ease-out) 0.95s forwards;
}
.hero__lede {
  max-width: 54ch;
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: rgba(242, 237, 227, 0.85);
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(242, 237, 227, 0.75);
}
.hero__scroll .mono { color: inherit; }
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: rgba(242, 237, 227, 0.35);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--paper);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(0); }
  100% { transform: translateY(400%); }
}

.hero__ticker {
  position: absolute;
  right: var(--pad-x);
  bottom: 32px;
  color: rgba(242, 237, 227, 0.75);
  display: flex;
  gap: 28px;
}
.hero__ticker .mono { color: inherit; }

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 780px) {
  .hero__foot { grid-template-columns: 1fr; gap: 22px; }
  .hero__cta { justify-content: flex-start; }
  .hero__ticker { display: none; }
}

/* ------------------------------ 06 · BUTTONS ----------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.btn--primary:hover { background: var(--brand); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(242, 237, 227, 0.4);
}
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--brand); color: var(--ink); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* ------------------------------ 07 · SECTION CHROME --------------------- */
.section {
  position: relative;
  padding: clamp(96px, 12vw, 168px) 0;
}
.section--tight  { padding: clamp(64px, 8vw, 104px) 0; }

.section__label {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  padding: 0 var(--pad-x);
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}
.section__label::before {
  content: attr(data-num);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.section__label-line {
  height: 1px;
  background: var(--ink);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease);
}
.section__label.is-in .section__label-line { transform: scaleX(1); }
.section__label-title {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* display heading */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 6.2vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.display em { font-style: italic; color: var(--ink); font-weight: 300; }
.display .accent { color: var(--brand); font-style: italic; }

/* ------------------------------ 08 · TRUST STRIP ------------------------- */
.strip {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 24px 0;
  isolation: isolate;
}
.strip::before, .strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.strip::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.strip__track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.strip__item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.strip__dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------ 09 · ABOUT ------------------------------- */
.about {
  background: var(--paper);
}
.about__grid {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
}
.about__head .display { max-width: 14ch; }
.about__head .display em { color: var(--ink); }
.about__head .display .underline {
  display: inline-block;
  position: relative;
  color: var(--ink);
  font-style: italic;
}
.about__head .display .underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0%;
  bottom: 0.14em;
  height: 0.09em;
  background: var(--brand);
}

.about__body {
  padding-top: clamp(12px, 2vw, 40px);
  display: grid;
  gap: 22px;
  max-width: 48ch;
}
.about__body p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.about__body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 0.08em 0.14em 0 0;
  color: var(--ink);
}
.about__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.about__sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.about__sig-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Stats row */
.stats {
  max-width: 1560px;
  margin: clamp(72px, 10vw, 120px) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stat {
  padding: 44px 28px;
  border-right: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 0;
  background: var(--ink);
  transition: height 0.5s var(--ease);
  z-index: 0;
}
.stat:hover::before { height: 100%; }
.stat:hover * { color: var(--paper); position: relative; z-index: 1; }
.stat:hover .stat__num .accent { color: var(--brand); }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.4s var(--ease);
}
.stat__num .accent { color: var(--brand); font-style: italic; }
.stat__num .sub { font-size: 0.35em; color: var(--muted); font-weight: 400; font-family: var(--mono); letter-spacing: 0.05em; }
.stat__lbl {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.4s var(--ease);
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hair); }
}

/* ------------------------------ 10 · SERVICES ---------------------------- */
.services {
  background: var(--paper-2);
}
.services__head {
  max-width: 1560px;
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
.services__lede {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0;
}

.services__list {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  list-style: none;
  margin-block: 0;
  padding-block: 0;
  border-top: 1px solid var(--hair);
}
.svc {
  display: grid;
  grid-template-columns: 72px 1.2fr 1.6fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 8px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  cursor: pointer;
  transition: padding 0.5s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transition: left 0.6s var(--ease);
  z-index: 0;
}
.svc:hover::before { left: 0; }
.svc > * { position: relative; z-index: 1; transition: color 0.5s var(--ease); }
.svc:hover > * { color: var(--paper); }
.svc:hover { padding-left: 28px; padding-right: 28px; }

.svc__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.svc__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.svc__title em { font-style: italic; color: var(--brand); }
.svc__desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
  transition: color 0.5s var(--ease);
}
.svc:hover .svc__desc { color: rgba(242, 237, 227, 0.75); }
.svc:hover .svc__num { color: rgba(242, 237, 227, 0.5); }

.svc__arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.svc__arrow svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.svc:hover .svc__arrow {
  background: var(--brand);
  border-color: var(--brand);
  transform: rotate(-45deg);
}
.svc:hover .svc__arrow svg { stroke: var(--ink); }

@media (max-width: 880px) {
  .services__head { grid-template-columns: 1fr; gap: 20px; }
  .svc { grid-template-columns: 44px 1fr auto; padding: 22px 4px; }
  .svc__desc { grid-column: 1 / -1; padding-left: 72px; margin-top: -10px; }
}

/* ------------------------------ 11 · PORTFOLIO --------------------------- */
.work { background: var(--paper); }
.work__head {
  max-width: 1560px;
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.work__filters {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-self: end;
}
.filter {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  font-family: var(--mono);
  text-transform: uppercase;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* Asymmetric masonry-ish grid */
.work__grid {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 20px;
}
.tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-2);
  border-radius: var(--radius);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile.is-hidden {
  display: none;
}
.tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.tile:hover > img { transform: scale(1.06); filter: brightness(0.75); }

.tile__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  color: var(--paper);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}
.tile:hover .tile__caption { transform: translateY(0); }
.tile__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.tile__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  margin: 4px 0 0;
  line-height: 1.1;
}
.tile__tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid rgba(242, 237, 227, 0.4);
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tile__zoom {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--ink);
  transform: scale(0.6) rotate(-10deg);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.tile:hover .tile__zoom { transform: scale(1) rotate(0); opacity: 1; }
.tile__zoom svg { width: 16px; height: 16px; }

/* Asymmetric placement */
.tile--1 { grid-column: span 7;  grid-row: span 5; }
.tile--2 { grid-column: span 5;  grid-row: span 3; }
.tile--3 { grid-column: span 5;  grid-row: span 4; }
.tile--4 { grid-column: span 4;  grid-row: span 4; }
.tile--5 { grid-column: span 8;  grid-row: span 4; }

@media (max-width: 900px) {
  .work__head { grid-template-columns: 1fr; }
  .work__filters { justify-self: start; }
  .work__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .tile--1 { grid-column: span 6; grid-row: span 4; }
  .tile--2 { grid-column: span 3; grid-row: span 3; }
  .tile--3 { grid-column: span 3; grid-row: span 3; }
  .tile--4 { grid-column: span 3; grid-row: span 3; }
  .tile--5 { grid-column: span 6; grid-row: span 3; }
}

/* ------------------------------ 12 · TESTIMONIALS ----------------------- */
.voices {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.voices::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 207, 239, 0.18), transparent);
  filter: blur(40px);
  z-index: 0;
}
.voices .section__label::before { color: var(--paper); }
.voices .section__label-line { background: var(--paper); }
.voices .section__label-title { color: var(--paper); }

.voices__stage {
  position: relative;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  z-index: 1;
}
.voices__quote-mark {
  position: absolute;
  top: -40px; left: var(--pad-x);
  font-family: var(--serif);
  font-style: italic;
  font-size: 380px;
  line-height: 0.8;
  color: var(--brand);
  opacity: 0.14;
  user-select: none;
  pointer-events: none;
}
.voice {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  padding: 40px 0 0;
}
.voice.is-active { opacity: 1; transform: translateY(0); position: relative; }
.voice__text {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(22px, 2.8vw, 42px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  max-width: 22ch;
  color: var(--paper-soft);
}
.voice__text .highlight { color: var(--brand); font-style: italic; }
.voice__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.voice__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
}
.voice__where {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.6);
}

.voices__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
  padding-top: 24px;
}
.voices__counter {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 227, 0.7);
}
.voices__arrows { display: flex; gap: 12px; }
.voices__arrow {
  width: 54px; height: 54px;
  border: 1px solid rgba(242, 237, 227, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.voices__arrow:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.voices__arrow svg { width: 18px; height: 18px; }

.voices__track {
  position: relative;
  min-height: clamp(260px, 30vh, 360px);
}
@media (max-width: 680px) {
  .voices__quote-mark { font-size: 200px; top: -20px; }
}

/* ------------------------------ 13 · JOURNAL ---------------------------- */
.journal { background: var(--paper-soft); }
.journal__item {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.journal__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}
.journal__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.journal__item:hover .journal__img img { transform: scale(1.06); }

.journal__body .mono { color: var(--muted); margin-bottom: 14px; display: inline-block; }
.journal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
}
.journal__title em { font-style: italic; color: var(--brand); }
.journal__excerpt {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 32px;
}
.journal__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.journal__link svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.journal__link:hover svg { transform: translateX(4px); }

@media (max-width: 800px) {
  .journal__item { grid-template-columns: 1fr; }
}

/* ------------------------------ 14 · CONTACT ---------------------------- */
.contact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 207, 239, 0.12), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(138, 124, 103, 0.1), transparent 40%);
  z-index: 0;
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("../images/contact.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  filter: grayscale(1) contrast(1.05);
  z-index: 0;
}
.contact > * { position: relative; z-index: 1; }

.contact .section__label::before { color: var(--paper); }
.contact .section__label-line { background: var(--paper); }
.contact .section__label-title { color: var(--paper); }

.contact__headline {
  max-width: 1560px;
  margin: 0 auto 72px;
  padding: 0 var(--pad-x);
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 7.4vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.contact__headline-inner { display: block; max-width: 18ch; }
.contact__headline em { font-style: italic; color: var(--brand); }

.contact__grid {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 56px;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
}
.contact__card {
  display: block;
  padding: 40px 36px;
  border: 1px solid rgba(242, 237, 227, 0.18);
  border-radius: var(--radius);
  background: rgba(242, 237, 227, 0.02);
  transition: background 0.4s var(--ease), transform 0.5s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 207, 239, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.contact__card:hover { border-color: rgba(0, 207, 239, 0.5); transform: translateY(-4px); }
.contact__card:hover::after { opacity: 1; }

.contact__card .mono { color: rgba(242, 237, 227, 0.55); margin-bottom: 14px; display: inline-block; }
.contact__card-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.01em;
  color: var(--paper);
  display: block;
  margin-bottom: 12px;
}
.contact__card-hint {
  font-size: 14px;
  color: rgba(242, 237, 227, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact__card-hint svg { width: 12px; height: 12px; transition: transform 0.4s var(--ease); }
.contact__card:hover .contact__card-hint svg { transform: translate(3px, -3px); }

@media (max-width: 680px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ------------------------------ 15 · FOOTER ----------------------------- */
.footer {
  background: var(--ink);
  color: rgba(242, 237, 227, 0.7);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(242, 237, 227, 0.12);
  font-size: 14px;
}
.footer__grid {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.footer__logo img { height: 38px; }
.footer__social {
  display: flex;
  gap: 10px;
  justify-self: end;
}
.footer__social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(242, 237, 227, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.footer__social svg { width: 16px; height: 16px; }
.footer__copy {
  max-width: 1560px;
  margin: 40px auto 0;
  padding: 26px var(--pad-x) 0;
  border-top: 1px solid rgba(242, 237, 227, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(242, 237, 227, 0.45);
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__copy a { color: var(--brand); }

@media (max-width: 680px) {
  .footer__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__social { justify-self: center; }
}

/* ------------------------------ 16 · REVEALS ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal--stagger.is-in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal--stagger.is-in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal--stagger.is-in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal--stagger.is-in > *:nth-child(6) { transition-delay: 0.55s; }

.reveal--mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal--mask > * {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.reveal--mask.is-in > * { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .reveal--stagger > *, .reveal--mask > * { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------ 17 · LIGHTBOX --------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  width: auto;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.6s var(--ease);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(242, 237, 227, 0.08);
  color: var(--paper);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 237, 227, 0.18);
  transition: all 0.3s var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--brand); color: var(--ink); border-color: var(--brand);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 20px; height: 20px; }
.lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 227, 0.7);
}

/* ------------------------------ 18 · FAQ -------------------------------- */
.faq { background: var(--paper); }
.faq__head {
  max-width: 1560px;
  margin: 0 auto 56px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}
.faq__lede {
  margin: 0;
  max-width: 52ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq__list {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  border-top: 1px solid var(--hair);
}
.faq__item {
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.3s var(--ease), padding 0.4s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brand-deep); padding-left: 16px; }
.faq__item[open] .faq__q { color: var(--ink); padding-left: 16px; }

.faq__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  justify-self: end;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.4s var(--ease), background 0.35s var(--ease);
}
.faq__toggle::before { width: 12px; height: 1.5px; }
.faq__toggle::after  { width: 1.5px; height: 12px; }
.faq__q:hover .faq__toggle { background: var(--brand); border-color: var(--brand); }
.faq__item[open] .faq__toggle { background: var(--ink); border-color: var(--ink); }
.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after { background: var(--paper); }
.faq__item[open] .faq__toggle::after { transform: rotate(90deg); opacity: 0; }

.faq__answer {
  padding: 0 80px 32px 16px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 72ch;
  animation: faqIn 0.5s var(--ease);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 780px) {
  .faq__head { grid-template-columns: 1fr; gap: 20px; }
  .faq__q { font-size: 18px; padding: 22px 4px; }
  .faq__answer { padding: 0 4px 24px; font-size: 15.5px; }
}

/* ------------------------------ 19 · CONTACT FIND ----------------------- */
.contact__find {
  max-width: 1560px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 40px var(--pad-x) 0;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.contact__addr {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: rgba(242, 237, 227, 0.92);
}
.contact__addr .mono { color: rgba(242, 237, 227, 0.55); display: block; margin-bottom: 8px; }
.contact__addr-body {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15.5px;
  line-height: 1.55;
}
.contact__addr-name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.contact__addr-body strong {
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.contact__hours-list {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.contact__hours-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(242, 237, 227, 0.14);
}
.contact__hours-list > div:last-child { border-bottom: 0; }
.contact__hours-list dt {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: rgba(242, 237, 227, 0.55);
}
.contact__hours-list dd {
  margin: 0;
  color: rgba(242, 237, 227, 0.88);
  font-size: 14px;
}

.contact__nap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15.5px;
}
.contact__nap a {
  color: var(--paper);
  transition: color 0.3s var(--ease);
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.contact__nap a:hover { color: var(--brand); border-bottom-color: var(--brand); }

.contact__gbp {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(242, 237, 227, 0.24);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  width: fit-content;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact__gbp svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.contact__gbp:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.contact__gbp:hover svg { transform: translate(3px, -3px); }

.contact__map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(242, 237, 227, 0.18);
}
.contact__map::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 207, 239, 0.25);
  pointer-events: none;
  border-radius: inherit;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.6) contrast(0.92) brightness(0.95);
  transition: filter 0.6s var(--ease);
}
.contact__map:hover iframe {
  filter: grayscale(0) contrast(1) brightness(1);
}

@media (max-width: 780px) {
  .contact__find { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }
  .contact__map iframe { min-height: 280px; }
}

/* ------------------------------ 20 · FOOTER ADDR ------------------------ */
.footer__addr {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-size: 13px;
  color: rgba(242, 237, 227, 0.6);
  line-height: 1.6;
}
.footer__addr a {
  color: rgba(242, 237, 227, 0.9);
  transition: color 0.3s var(--ease);
}
.footer__addr a:hover { color: var(--brand); }

/* ------------------------------ 21 · MISC ------------------------------- */
.is-interactive { /* hooked in JS for cursor */ }

/* prevent scroll when menu or lightbox is open */
body.is-locked { overflow: hidden; }

/* accessibility: focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
