/* =====================================================================
   IRON & ONYX : Dark-luxury barbershop
   Brand extracted from "Iron & Onyx Brand.html":
     Onyx base   #08080A   |   Gold accent #D8B98A
     Logo        a straight razor in a 45deg diamond frame, brass gradient,
                 blade unfolds around the pivot pin (the "unfold" motion)
   Typography    Georgia (display / brand) + Inter (UI / body)
   ===================================================================== */

/* -------------------------------- Tokens -------------------------------- */
:root {
  /* Surfaces (onyx, layered for depth) */
  --onyx-900: #08080a;
  --onyx-850: #0b0b0e;
  --onyx-800: #111116;
  --onyx-700: #17171d;
  --onyx-600: #1e1e25;

  /* Gold (brand accent + tonal range) */
  --gold: #d8b98a;
  --gold-bright: #ecd4a8;
  --gold-deep: #b2926a;
  --gold-tint: rgba(216, 185, 138, 0.14);
  --gold-line: rgba(216, 185, 138, 0.28);

  /* Ink */
  --ivory: #f4efe7;
  --smoke: #b6afa3;
  --smoke-dim: #7b756a;

  /* Lines */
  --hairline: rgba(216, 185, 138, 0.18);
  --hairline-soft: rgba(244, 239, 231, 0.08);

  /* Type */
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-hero: clamp(3rem, 1rem + 8vw, 8.5rem);
  --text-display: clamp(2.3rem, 1.2rem + 3.6vw, 4.25rem);
  --text-title: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  --text-quote: clamp(1.7rem, 1rem + 2.8vw, 3.15rem);
  --text-lead: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --label: 0.72rem;

  /* Rhythm */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --space-section: clamp(5rem, 3rem + 8vw, 11rem);

  /* Motion */
  --dur-fast: 180ms;
  --dur-normal: 320ms;
  --dur-slow: 620ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --radius: 4px;
  --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Lenis drives scrolling once JS runs; native smooth is the fallback */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--onyx-900);
  color: var(--smoke);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--ivory);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -------------------------------- Layout -------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-size: var(--text-title);
  color: var(--ivory);
}
.section-title .accent {
  color: var(--gold);
  font-style: italic;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  display: grid;
  gap: 1rem;
}

/* Atmosphere overlays ---------------------------------------------------- */
.grain,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.grain {
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* -------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05em 2em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color var(--dur-normal) var(--ease-out-soft),
    background-color var(--dur-normal) var(--ease-out-soft),
    border-color var(--dur-normal) var(--ease-out-soft),
    transform var(--dur-normal) var(--ease-out-soft);
}
.btn--sm {
  padding: 0.7em 1.35em;
  font-size: 0.72rem;
}

/* Gold outline CTA (brand signature) */
.btn--gold {
  color: var(--gold);
  border-color: var(--gold-line);
  background: linear-gradient(var(--gold-tint), var(--gold-tint));
}
.btn--gold:hover {
  color: var(--onyx-900);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--ivory);
  border-color: var(--hairline);
}
.btn--ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold-line);
  background: var(--gold-tint);
}
.btn--text {
  color: var(--smoke);
  padding-inline: 0.4em;
  letter-spacing: 0.14em;
}
.btn--text:hover {
  color: var(--gold-bright);
}

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color var(--dur-normal) var(--ease-out-soft),
    border-color var(--dur-normal) var(--ease-out-soft),
    backdrop-filter var(--dur-normal);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.15rem;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
}
.brandmark__word {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 1.5vw, 2.4rem);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav > a:not(.btn) {
  color: var(--smoke);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--dur-normal) var(--ease-out-soft);
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out-expo);
}
.site-nav > a:not(.btn):hover {
  color: var(--ivory);
}
.site-nav > a:not(.btn):hover::after {
  transform: scaleX(1);
}

/* ---------------------- Logo: straight-razor lockup --------------------
   Recreated 1:1 from the brand file: a brass straight razor lying across a
   45deg diamond frame. The blade pivots on the pin (view-box origin 57 26.5).
   Static state = fully open (rotate 0). The unfold motion is driven by JS
   (on hover for nav/footer, on load for the hero). ---------------------- */
.razor-lockup {
  --frame: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.razor-frame {
  width: var(--frame);
  height: var(--frame);
  flex: none;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid var(--frame-line, #63656a);
  transition: border-color var(--dur-normal) var(--ease-out-soft);
}
.razor {
  width: calc(var(--frame) * 1.02);
  height: auto;
  overflow: visible;
  transform: rotate(-45deg);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}
.razor__blade {
  transform-box: view-box;
  transform-origin: 57px 26.5px;
  transform: rotate(0deg); /* static: fully open */
}
/* Hover flourish is JS-driven; brighten the frame on interaction */
a.razor-lockup:hover .razor-frame,
.razor-lockup[data-razor]:hover .razor-frame {
  border-color: var(--gold-line);
}
.razor-lockup--lg {
  --frame: 60px;
}

/* -------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__field {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
}
.hero__glow {
  position: absolute;
  width: min(120vw, 1100px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(216, 185, 138, 0.16) 0%,
    rgba(216, 185, 138, 0.05) 32%,
    transparent 62%
  );
  filter: blur(10px);
}
.hero__mark {
  width: clamp(320px, 60vw, 620px);
  height: auto;
  opacity: 0.14; /* faint depth watermark behind the razor lockup */
}
.hero__diamond {
  filter: drop-shadow(0 0 24px rgba(216, 185, 138, 0.18));
}

.hero__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(1.3rem, 0.8rem + 2vw, 2.4rem);
  padding-block: 6rem;
  width: 100%;
}
/* Hero razor: prominent, with a gold-tinted frame and a soft glow */
.hero__logo {
  --frame: clamp(104px, 8rem + 4vw, 148px);
  --frame-line: var(--gold-line);
  margin-bottom: clamp(0.5rem, 1vw, 1.25rem);
}
.hero__logo .razor-frame {
  background: radial-gradient(120% 120% at 50% 30%, var(--gold-tint), transparent 70%);
  box-shadow: 0 0 60px -20px rgba(216, 185, 138, 0.4);
}
.hero__logo .razor {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}
.hero__wordmark {
  font-size: var(--text-hero);
  display: flex;
  align-items: baseline;
  gap: 0.22em;
  color: var(--ivory);
  line-height: 0.9;
}
.hero__wordmark .amp {
  color: var(--gold);
  font-style: italic;
  font-size: 0.7em;
}
.hero__tagline {
  font-family: var(--serif);
  font-size: var(--text-quote);
  color: var(--ivory);
  line-height: 1.06;
  display: grid;
}
.hero__tagline .line--accent {
  color: var(--gold);
  font-style: italic;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
}

/* -------------------------------- About --------------------------------- */
.about {
  position: relative;
  background: linear-gradient(180deg, var(--onyx-900), var(--onyx-850));
  padding-block: var(--space-section);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 6rem);
  align-items: start;
}
.about__pin {
  position: sticky;
  top: clamp(5rem, 18vh, 9rem);
}
.about__panel {
  position: relative;
  background: linear-gradient(155deg, var(--onyx-700), var(--onyx-850));
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(2rem, 1.4rem + 3vw, 3.75rem);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.about__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 100% 0%, var(--gold-tint), transparent 60%);
  pointer-events: none;
}
.panel-index {
  display: inline-block;
  font-size: var(--label);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.pullquote__body {
  font-family: var(--serif);
  font-size: var(--text-quote);
  line-height: 1.14;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
/* Word-by-word scrub target: words dimmed until scrolled through */
.pullquote .pq-word {
  transition: color var(--dur-normal) linear;
}
.about__panel-mark {
  margin-top: 2.4rem;
  opacity: 0.5;
}

.about__body {
  display: grid;
  gap: 1.5rem;
  padding-top: clamp(0rem, 2vw, 2rem);
}
.about__body .section-title {
  font-size: var(--text-display);
  margin-bottom: 0.6rem;
}
.about__body p {
  max-width: 46ch;
  color: var(--smoke);
  font-size: var(--text-lead);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.2rem, 0.5rem + 2vw, 2.6rem);
  margin-top: 1.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 1.5rem + 2vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
}
.stat__unit {
  font-size: 0.4em;
  color: var(--smoke-dim);
  margin-left: 0.15em;
}
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--smoke-dim);
  max-width: 14ch;
}

/* -------------------------------- Services ------------------------------ */
.services {
  padding-block: var(--space-section);
  background: var(--onyx-850);
}
.services__list {
  display: grid;
  gap: clamp(1.25rem, 0.5rem + 2vw, 2rem);
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "meta title cta"
    "meta desc cta"
    "meta inc cta";
  gap: 0.5rem clamp(1.5rem, 0.5rem + 4vw, 4rem);
  align-items: start;
  padding: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  background: linear-gradient(150deg, var(--onyx-800), var(--onyx-850));
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  transition: border-color var(--dur-normal) var(--ease-out-soft),
    transform var(--dur-normal) var(--ease-out-soft),
    background-color var(--dur-normal) var(--ease-out-soft);
}
.service-card::after {
  /* gold sweep line that grows on hover */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.service-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  background: linear-gradient(150deg, var(--onyx-700), var(--onyx-800));
}
.service-card:hover::after {
  transform: scaleY(1);
}
.service-card--feature {
  border-color: var(--hairline);
  background: linear-gradient(150deg, var(--onyx-700), var(--onyx-850));
}
.service-card__flag {
  position: absolute;
  top: -1px;
  right: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  transform: translateY(-50%);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--onyx-900);
  background: var(--gold);
  padding: 0.4em 1em;
  border-radius: 999px;
}
.service-card__meta {
  grid-area: meta;
  display: grid;
  gap: 0.6rem;
  align-content: start;
  min-width: 4.5rem;
}
.service-card__no {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-deep);
}
.service-card__price {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem);
  color: var(--gold);
  line-height: 1;
}
.service-card__title {
  grid-area: title;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
}
.service-card__desc {
  grid-area: desc;
  max-width: 48ch;
  color: var(--smoke);
}
.service-card__inc {
  grid-area: inc;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 0.8rem;
}
.service-card__inc li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--smoke-dim);
}
.service-card__inc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.service-card__cta {
  grid-area: cta;
  align-self: center;
  white-space: nowrap;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  gap: 0.5em;
  transition: gap var(--dur-normal) var(--ease-out-expo),
    color var(--dur-normal);
}
.service-card__cta:hover {
  gap: 1em;
  color: var(--gold-bright);
}

/* -------------------------------- Booking ------------------------------- */
.booking {
  padding-block: var(--space-section);
  background: linear-gradient(180deg, var(--onyx-850), var(--onyx-900));
}
.booking__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.booking__intro {
  position: sticky;
  top: clamp(5rem, 16vh, 8rem);
  display: grid;
  gap: 1.4rem;
}
.booking__intro .section-title {
  font-size: var(--text-display);
}
.booking__intro p {
  max-width: 40ch;
}
.booking__facts {
  display: grid;
  gap: 1.2rem;
  margin-top: 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline-soft);
}
.booking__facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.booking__facts dd {
  color: var(--smoke);
  font-size: 0.95rem;
}
.booking__embed-frame {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--onyx-800), var(--onyx-850));
  padding: clamp(0.75rem, 0.4rem + 1vw, 1.25rem);
  box-shadow: var(--shadow-card);
}
.booking__embed {
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.booking__fallback {
  color: var(--smoke);
  text-align: center;
  padding: 2rem;
}
.booking__fallback a {
  color: var(--gold);
}

/* -------------------------------- Gallery ------------------------------- */
.gallery {
  padding-block: var(--space-section);
  background: var(--onyx-900);
}
.gallery__grid {
  columns: 3;
  column-gap: clamp(0.75rem, 0.4rem + 1vw, 1.25rem);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 0.4rem + 1vw, 1.25rem);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-soft);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 10, 0.5));
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out-soft);
}
.gallery__item img {
  width: 100%;
  filter: grayscale(0.35) contrast(1.02) brightness(0.92);
  transition: transform var(--dur-slow) var(--ease-out-expo),
    filter var(--dur-slow) var(--ease-out-expo);
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05) brightness(1);
}
.gallery__item:hover::after {
  opacity: 1;
}

/* -------------------------------- Reviews ------------------------------- */
.reviews {
  padding-block: var(--space-section);
  background: linear-gradient(180deg, var(--onyx-900), var(--onyx-850));
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.5rem + 2vw, 1.75rem);
}
.review-card {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.6rem);
  background: linear-gradient(155deg, var(--onyx-800), var(--onyx-850));
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius);
  transition: border-color var(--dur-normal) var(--ease-out-soft),
    transform var(--dur-normal) var(--ease-out-soft);
}
.review-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}
.review-card__stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
}
.review-card blockquote p {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--ivory);
}
.review-card blockquote em {
  color: var(--gold);
  font-style: italic;
}
.review-card figcaption {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline-soft);
}
.review-card__name {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: 1.02rem;
}
.review-card__role {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke-dim);
}

/* -------------------------------- Footer -------------------------------- */
.site-footer {
  background: var(--onyx-900);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3.5rem, 2rem + 5vw, 6rem);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
  padding-bottom: clamp(3rem, 2rem + 3vw, 5rem);
}
.site-footer__brand {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
  align-content: start;
}
.site-footer__glyph {
  margin-bottom: 1rem;
  --frame-line: var(--gold-line);
}
.site-footer__word {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
}
.site-footer__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 0.5rem + 3vw, 3rem);
}
.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col address {
  font-style: normal;
  color: var(--smoke);
  line-height: 1.7;
}
.footer-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--ivory);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
  transition: color var(--dur-normal);
}
.footer-link:hover {
  color: var(--gold-bright);
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--smoke);
  font-size: 0.92rem;
}
.footer-hours li span:last-child {
  color: var(--ivory);
}
.footer-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--smoke-dim);
}
.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.75rem;
  border-top: 1px solid var(--hairline-soft);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--smoke-dim);
}

/* ------------------------- JS-driven reveal states ---------------------- */
/* Elements are visible by default (progressive enhancement). The .anime-ready
   class is added by JS ONLY when motion is allowed, which arms the hidden
   pre-animation states below. No JS / reduced motion => everything visible. */
.anime-ready [data-reveal],
.anime-ready [data-service],
.anime-ready [data-hero],
.anime-ready [data-gallery] .gallery__item,
.anime-ready [data-reviews] .review-card {
  opacity: 0;
  will-change: transform, opacity;
}

/* Hero brand mark starts undrawn, then strokes in on load */
.anime-ready .hero__diamond--outer {
  stroke-dasharray: 1120;
  stroke-dashoffset: 1120;
}
.anime-ready .hero__diamond--inner {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
}
/* Hero razor starts with its blade folded shut, then unfolds open on load */
.anime-ready [data-razor="hero"] .razor__blade {
  transform: rotate(-158deg);
}

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

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 900px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
  .booking__intro {
    position: static;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .site-nav a:not(.btn) {
    display: none;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__pin {
    position: static;
  }
  .service-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "title"
      "desc"
      "inc"
      "cta";
    gap: 0.75rem;
  }
  .service-card__meta {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }
  .service-card__cta {
    justify-self: start;
    align-self: start;
    margin-top: 0.5rem;
  }
  .service-card__flag {
    right: auto;
    left: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer__base {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    columns: 1;
  }
  .hero__tagline {
    gap: 0;
  }
}
