/* ==========================================================================
   Design Italiano S.r.l. — design system
   Palette and typography take their cue from the reference site's
   understated, neutral, high-whitespace aesthetic.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Neutrals — warm, paper-like */
  --ink: #1b1a18;
  --ink-2: #3d3a36;
  --muted: #6f6961;
  --line: #e4e0da;
  --line-strong: #cec8c0;
  --paper: #ffffff;
  --paper-alt: #f6f4f1;
  --paper-deep: #edeae5;
  --dark: #1b1a18;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.72);

  /* Type */
  --font-sans: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2rem, 1.15rem + 2.5vw, 3.5rem);
  --fs-h1: clamp(1.875rem, 1.3rem + 2.2vw, 3.25rem);
  --fs-h2: clamp(1.625rem, 1.2rem + 1.7vw, 2.5rem);
  --fs-h3: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.6875rem;

  /* Space — one vertical scale, shared by every page */
  --gutter: clamp(1.5rem, 4.5vw, 4rem);
  --section-y: clamp(3.5rem, 6.5vw, 6.5rem);
  --section-y-tight: clamp(2.5rem, 4.5vw, 4.25rem);
  --container: 1320px;
  --measure: 68ch;

  /* Chrome */
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 900px) {
  :root { --header-h: 88px; }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Kills the elastic overscroll. Without it, dragging up past the top
     exposes a white gap above the hero and carries the fixed header
     down with it, so the logo lands half over white and half over image. */
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1.35em; }
p:last-child { margin-bottom: 0; }

/* Keyboard focus is always visible, never removed */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Light focus ring wherever the surface behind it is dark */
.hero :focus-visible,
.section--dark :focus-visible,
.site-footer :focus-visible,
.site-header.is-transparent :focus-visible {
  outline-color: #ffffff;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--on-dark);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Typography helpers
   -------------------------------------------------------------------------- */

.h2 { font-size: var(--fs-h2); }

.eyebrow {
  display: block;
  margin: 0 0 1.5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--light { color: var(--on-dark-muted); }

/* Over a photograph the eyebrow is small text on a live backdrop, so it
   stays fully opaque rather than the 72% used on flat dark panels */
.hero .eyebrow--light { color: var(--on-dark); }

.lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-2);
}

.lead--light { color: var(--on-dark-muted); }

.prose {
  max-width: var(--measure);
  color: var(--ink-2);
  font-weight: 300;
}

.prose--center { margin-inline: auto; text-align: center; }
.prose--gap { margin-top: 1.5rem; }

.rule {
  width: 56px;
  height: 1px;
  margin: 0 0 1.5rem;
  background: var(--line-strong);
  border: 0;
}

.rule--center { margin-inline: auto; }
.rule--gap { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 940px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }
.section--alt { background: var(--paper-alt); }

.section--dark {
  background: var(--dark);
  color: var(--on-dark-muted);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--on-dark); }

.section-head { margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.section-head--center { text-align: center; }
.section-head--flush { margin-bottom: 0; }

.section-head .lead {
  max-width: 62ch;
  margin-top: 1.35rem;
}

.section-head--center .lead { margin-inline: auto; }

.split {
  display: grid;
  gap: clamp(2.25rem, 4vw, 4rem);
  align-items: center;
}

.split--top { align-items: start; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 0.9fr 1.1fr; }
  .split--wide-media { grid-template-columns: 0.85fr 1.15fr; }
}

.split__text > .prose { max-width: 56ch; }

/* --------------------------------------------------------------------------
   5. Buttons & links
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--ink);
  color: var(--on-dark);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--on-dark);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: var(--on-dark);
  color: var(--ink);
  border-color: var(--on-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.75rem, 2.5vw, 2.25rem);
}

.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.link-arrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after { width: 46px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

/* Frosted rather than flat white: the page reads through it softly, which
   keeps the header feeling light over photography. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(27, 26, 24, 0.07);
  box-shadow: 0 1px 28px rgba(27, 26, 24, 0.05);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

/* Translucency is only safe where the blur actually renders */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: var(--paper); }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand img {
  width: auto;
  height: 32px;
  transition: opacity 0.4s var(--ease);
}

@media (min-width: 900px) {
  .brand img { height: 40px; }
}

.brand__mark--light { display: none; }

/* Transparent overlay state, used above the home hero */
.site-header.is-transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-transparent .brand__mark--dark { display: none; }
.site-header.is-transparent .brand__mark--light { display: block; }
.site-header.is-transparent .nav__link { color: var(--on-dark); }
.site-header.is-transparent .nav-toggle__bar { background: var(--on-dark); }

.nav { display: none; }

@media (min-width: 900px) {
  .nav { display: block; }

  .nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1.75rem, 3.5vw, 3.25rem);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav__link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.3s var(--ease);
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
  }

  .nav__link:hover::after,
  .nav__link:focus-visible::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
}

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  margin-right: -12px;
  padding: 0 12px;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease),
    background-color 0.4s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter) 12vh;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    visibility 0.35s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (min-width: 900px) {
  .mobile-nav { display: none; }
}

.mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__list li + li { border-top: 1px solid var(--line); }

.mobile-nav__link {
  display: block;
  padding: 1.35rem 0;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}

.mobile-nav__link[aria-current="page"] { color: var(--muted); }

.mobile-nav__meta {
  margin-top: 3rem;
  font-size: var(--fs-small);
  color: var(--muted);
}

.mobile-nav__meta a { text-decoration: none; }
.mobile-nav__meta a:hover { text-decoration: underline; }

body.nav-open { overflow: hidden; }

/* While the panel is open the header always reads as solid, so it matches
   the opaque panel below it */
.site-header.is-open,
.site-header.is-open.is-transparent {
  background: var(--paper);
  border-bottom-color: var(--line);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header.is-open.is-transparent .brand__mark--dark { display: block; }
.site-header.is-open.is-transparent .brand__mark--light { display: none; }
.site-header.is-open.is-transparent .nav-toggle__bar { background: var(--ink); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

/* min-height, never height: a fixed height cannot grow for its own content,
   so on a short window the text overflowed upward behind the fixed header */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 88vh, 860px);
  background: var(--dark);
  color: var(--on-dark);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

/* Two scrims: a side wash that keeps the left-aligned text legible over the
   brightest part of the photograph, and a softer vertical one for depth.
   Verified to hold 4.5:1 against the actual composited pixels. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(14, 13, 12, 0.88) 0%,
      rgba(14, 13, 12, 0.72) 34%,
      rgba(14, 13, 12, 0.14) 72%,
      rgba(14, 13, 12, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(14, 13, 12, 0.42) 0%,
      rgba(14, 13, 12, 0.18) 40%,
      rgba(14, 13, 12, 0.62) 100%
    );
}

/* Narrow screens: the text spans the full width, so the wash must too */
@media (max-width: 759px) {
  .hero__media::after {
    background:
      linear-gradient(
        to right,
        rgba(14, 13, 12, 0.7) 0%,
        rgba(14, 13, 12, 0.58) 60%,
        rgba(14, 13, 12, 0.45) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(14, 13, 12, 0.3) 0%,
        rgba(14, 13, 12, 0.1) 35%,
        rgba(14, 13, 12, 0.5) 100%
      );
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(3rem, 6vw, 5.25rem);
  padding-top: calc(var(--header-h) + 2rem);
}

.hero__title {
  max-width: 22ch;
  font-size: var(--fs-display);
  color: var(--on-dark);
}

.hero__text {
  max-width: 52ch;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

/* Short windows (laptops, split screens): tighten the hero so it still
   holds the whole message without running past the fold */
@media (max-height: 760px) and (min-width: 900px) {
  .hero__inner {
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  }

  .hero .btn-row { margin-top: 1.75rem; }
}

/* Page hero for the interior pages */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(2.75rem, 5.5vw, 5rem));
  padding-bottom: clamp(2.5rem, 4.5vw, 4rem);
  background: var(--paper-alt);
  border-bottom: 1px solid var(--line);
}

.page-hero__title { font-size: var(--fs-h1); }

.page-hero__text {
  max-width: 60ch;
  margin-top: 1.35rem;
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   8. Figures & media
   -------------------------------------------------------------------------- */

.figure { margin: 0; }

.figure__frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.figure__frame img {
  width: 100%;
  transition: transform 1.2s var(--ease);
}

.figure--zoom:hover .figure__frame img { transform: scale(1.035); }

/* Keeps a small source image at its native size instead of upscaling it */
.figure--limit {
  max-width: 384px;
  margin-inline: auto;
}

/* Showroom pair */
.showrooms {
  display: grid;
  gap: clamp(2rem, 3vw, 2.75rem);
}

@media (min-width: 760px) {
  .showrooms { grid-template-columns: repeat(2, 1fr); }
}

.showroom__frame {
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 4 / 3;
}

.showroom__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.showroom:hover .showroom__frame img { transform: scale(1.035); }

.showroom__name {
  margin-top: 1.5rem;
  font-size: var(--fs-h3);
  font-weight: 400;
}

.showroom__meta {
  margin-top: 0.4rem;
  font-size: var(--fs-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */

.services {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .services { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 5rem); }
}

@media (min-width: 1080px) {
  .services { grid-template-columns: repeat(4, 1fr); }
}

/* Single column when the list sits inside one half of a split layout */
.services--stack { margin-top: 2.25rem; }

@media (min-width: 700px) {
  .services--stack { grid-template-columns: 1fr; }
}

@media (min-width: 1080px) {
  .services--stack { grid-template-columns: 1fr; }
}

.services__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.services__num {
  flex-shrink: 0;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  line-height: 2.2;
}

.services__label {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}

.section--dark .services,
.section--dark .services__item { border-color: rgba(255, 255, 255, 0.16); }

.section--dark .services__label { color: var(--on-dark); }
.section--dark .services__num { color: var(--on-dark-muted); }

/* --------------------------------------------------------------------------
   10. Contact
   -------------------------------------------------------------------------- */

/* The remaining details sit in one row, echoing the services row on the
   home page, so the page keeps a three-beat rhythm like the other two */
.contact-row {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

/* Two steps, so the email address always has room to sit on one line */
@media (min-width: 620px) {
  .contact-row {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(2rem, 5vw, 4.5rem);
  }
}

@media (min-width: 1000px) {
  .contact-row { grid-template-columns: repeat(3, 1fr); }
}

.contact-row > .contact-block {
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
}

/* Two or more addresses stacked in one column, separated by a hairline */
.contact-stack > .contact-block + .contact-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Home call to action: the two addresses sit as separate labelled columns
   rather than running together as one wrapped paragraph. */
.cta-addresses {
  display: grid;
  gap: 2rem clamp(2rem, 6vw, 4.5rem);
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 620px) {
  .cta-addresses {
    grid-template-columns: repeat(2, minmax(0, 250px));
    justify-content: center;
  }
}

.cta-addresses address {
  font-style: normal;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-2);
}

.cta-addresses__label {
  margin: 0 0 0.5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-email {
  margin-top: 1.75rem;
  text-align: center;
}

/* Group heading above the stacked addresses */
.contact-heading {
  margin: 0 0 1.75rem;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.35;
}

.contact-block__label {
  margin: 0 0 0.9rem;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-block__body {
  margin: 0;
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  font-style: normal;
}

.contact-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  /* Vertical padding keeps the tap target comfortable on touch screens */
  padding-block: 0.3rem 0.25rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.contact-note {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 0.75rem;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-note:hover,
.contact-note:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--dark);
  color: var(--on-dark-muted);
  padding-block: clamp(2.75rem, 5vw, 4.5rem) 1.75rem;
  font-size: var(--fs-small);
}

.site-footer__grid {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.7fr 1fr 1fr; }
}

/* Addresses sit side by side wherever the column is wide enough, and fall
   back to stacked on their own — no breakpoint to keep in sync. */
.site-footer__addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem clamp(1.5rem, 3vw, 2.5rem);
}

/* City labels sit under the "Address" heading, so they are deliberately
   quieter than it: sentence case, tighter tracking. */
.site-footer__label {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--on-dark);
}

.site-footer__logo {
  width: auto;
  height: 38px;
  margin-bottom: 1.75rem;
}

.site-footer h2 {
  margin: 0 0 1.35rem;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark);
}

.site-footer address {
  font-style: normal;
  line-height: 1.9;
  max-width: 34ch;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
}

.site-footer__list a,
.site-footer address a {
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.site-footer__list a {
  display: inline-block;
  padding: 0.35rem 0;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer address a:hover,
.site-footer address a:focus-visible { color: var(--on-dark); }

.site-footer__list a[aria-current="page"] { color: var(--on-dark); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   12. Reveal animation
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
