/* ============================================================
   WATSON STYLE GROUP — Homepage
   Aesthetic: refined editorial luxury. Schnyder serif display
   + Neue Haas Grotesk sans. Warm paper, ink black, generous
   negative space.
   ============================================================ */

/* ---- Self-hosted brand fonts ---- */
@font-face {
  font-family: 'Schnyder M';
  src: url('../fonts/Schnyder-MLight-Web.woff2') format('woff2'),
       url('../fonts/Schnyder-MLight-Web.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-Lt.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-LtIt.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-RgIt.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-Md.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('../fonts/NHaasGroteskDS-Bd.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- Watson Style Group brand palette (from brand guide) ---- */
  --blush: #f8e5e7;        /* accent — used sparingly */
  --black: #000000;        /* text + dark sections */
  --white: #ffffff;
  --camel: #be7b44;        /* accent */
  --green: #2d500d;        /* accent */
  --butter: #ede8be;       /* accent */
  --red: #c30319;          /* accent */
  --blue: #7fb5cb;         /* accent */

  /* semantic tokens */
  --ink: #000000;          /* primary text on light bg */
  --paper: #ffffff;        /* primary background — clean white */
  --paper-pure: #f8e5e7;   /* blush panel accent */
  --line: rgba(0, 0, 0, 0.12);
  --muted: #6b6b6b;

  --serif: "Schnyder M", Georgia, serif;
  --sans: "Neue Haas Grotesk", "Helvetica Neue", Arial, sans-serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1400px;

  /* ---- Hero header (WATSON wordmark collage) ---- */
  --nav-h: 96px;              /* sticky nav height; JS keeps it exact */
  --wsg-bg: #050505;          /* hero background            */
  --wsg-ink: #ffffff;         /* hero text                  */
  --watson-size: 14cqw;       /* overall size of WATSON     */
  --watson-track: 0.015em;    /* letter-spacing of WATSON   */
  --watson-y: 46%;            /* vertical center of WATSON  */
  --group-size: 2.5cqw;       /* size of STYLE GROUP        */
  --group-track: 0.52em;      /* letter-spacing STYLE GROUP */
  --group-y: 74%;             /* vertical center STYLE GROUP*/
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--blush); color: var(--ink); }

/* Fraunces display tuning — soft, high-optical-size for warm didone feel */
.section-title,
.intro__headline,
.service h3,
.footer__name {
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 28, "WONK" 0;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.35rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img {
  width: 80px;
  height: auto;
  transition: filter 0.45s ease, opacity 0.25s ease;
}
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 2.6vw, 3rem);
  margin-left: auto;
  margin-right: auto;
}
.nav__links a {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--blush);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav--scrolled .nav__links a::after { background: var(--blush); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  padding-bottom: 4px;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: opacity 0.35s ease;
}
/* Trailing arrow */
.nav__cta::before {
  content: '\2192';
  display: inline-block;
  order: 1;
  font-size: 1.1em;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__cta:hover::before {
  transform: translateX(4px);
}
/* Persistent underline */
.nav__cta::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: opacity 0.4s ease, height 0.4s ease;
}
.nav__cta:hover::after {
  opacity: 1;
  height: 1.5px;
}

/* nav state on hero (dark bg) — solid so it blends into the hero header */
.nav--on-dark {
  color: #fff;
  background: var(--wsg-bg);
}
.nav--on-dark .nav__logo img { filter: invert(1); }
.nav--on-dark .nav__cta:hover { opacity: 0.8; }

/* nav state when scrolled (light bg) */
.nav--scrolled {
  background: #fff;
  border-bottom-color: var(--line);
  color: var(--ink);
}
.nav--scrolled .nav__logo img { filter: none; }
.nav--scrolled .nav__cta:hover { opacity: 0.8; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* ============================================================
   HERO HEADER — WATSON wordmark + scattered editorial collage
   .wsg-hero is a full-bleed black band sized to fill the viewport
   below the sticky nav. .wsg-hero__stage holds the actual collage
   at the reference aspect ratio and is scaled to *contain* within
   the band — so the whole composition is always fully visible,
   never cropped, with black letterbox space (invisible on black).
   Everything inside the stage is sized in cqw / %, so it scales
   as one proportional unit.
   ============================================================ */
.wsg-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-h));
  min-height: 400px;
  background: var(--wsg-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* the collage canvas — keeps the reference proportions and fits
   inside the band on whichever axis is the constraint */
.wsg-hero__stage {
  position: relative;
  aspect-ratio: 2940 / 1666;
  height: 100%;
  width: auto;
  max-width: 100%;
  container-type: inline-size;
}

/* ---- Scattered editorial photographs ---- */
.wsg-hero__img {
  position: absolute;
  display: block;
  object-fit: cover;
  /* gentle staggered entrance */
  opacity: 0;
  transform: translateY(1.4cqw);
  animation: wsg-rise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}

/* top-left — plaid coat */
.wsg-img--coat {
  left: 10%;  top: 6%;  width: 16%;
  z-index: 3;
  animation-delay: .15s;
}

/* far-left, tucked behind the pink portrait — white lace dress */
.wsg-img--lace {
  left: 5.2%;  top: 55%;  width: 9%;  height: 28%;
  z-index: 1;
  animation-delay: .45s;
}

/* left of centre — pink hat / gloves portrait */
.wsg-img--portrait {
  left: 11.2%;  top: 51.3%;  width: 13.3%;
  z-index: 3;
  animation-delay: .35s;
}

/* right side — blue shirt / red trousers — overlaps WATSON, bleeds right */
.wsg-img--bluered {
  left: 80%;  top: 8%;  width: 22%;
  z-index: 4;
  animation-delay: .25s;
}

/* bottom-right — yellow skirt / mint boots — bleeds off bottom-right corner */
.wsg-img--yellow {
  left: 78%;  top: 75%;  width: 22%;
  z-index: 3;
  animation-delay: .5s;
}

/* ---- Wordmark ---- */
.wsg-hero__wordmark {
  position: absolute;
  left: 50%;
  top: var(--watson-y);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.wsg-watson {
  display: block;
  width: 90cqw;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  animation: wsg-fade 1.3s ease .55s forwards;
}

.wsg-group {
  position: absolute;
  left: 50%;
  top: var(--group-y);
  transform: translateX(-50%);
  z-index: 2;
  width: 28cqw;
  opacity: 0;
  animation: wsg-fade 1.3s ease .8s forwards;
}
.wsg-group img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes wsg-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wsg-fade {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wsg-hero__img, .wsg-watson, .wsg-group {
    animation: none;
    opacity: 1;
  }
  .wsg-hero__img { transform: none; }
  .wsg-group { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 11rem) var(--pad);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.intro__text .eyebrow { display: block; margin-bottom: 2rem; }
.intro__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.1vw, 3.05rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  margin-bottom: 2.4rem;
}
.intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 46ch;
  font-size: 1rem;
  color: #1a1a1a;
}
.intro__body em { font-style: italic; }
.intro__body strong { font-weight: 500; }

.intro__image {
  position: sticky;
  top: 7rem;
  overflow: hidden;
}
.intro__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ============================================================
   ADVISORY
   ============================================================ */
.advisory {
  background: var(--black);
  color: #fff;
}
.advisory__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
}
.advisory__image { overflow: hidden; }
.advisory__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.advisory__text { display: flex; flex-direction: column; gap: 1.4rem; }
.advisory__text .section-title { margin-bottom: 0.6rem; }
.advisory__text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 11rem) var(--pad);
}
.services__title {
  max-width: 16ch;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service {
  padding: 2.6rem 2rem 2.8rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}
.service:nth-child(3n) { border-right: none; padding-right: 0; }
.service:nth-child(3n+1) { padding-left: 0; }
.service:not(:nth-child(3n+1)) { padding-left: 2rem; }

.service__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  display: block;
  margin-bottom: 1.1rem;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.005em;
}
.service p {
  font-size: 0.92rem;
  color: #2a2a2a;
  max-width: 38ch;
}

/* ============================================================
   ELEVATE / CTA
   ============================================================ */
.elevate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 88vh;
}
.elevate__image { overflow: hidden; }
.elevate__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elevate__text {
  background: var(--paper-pure);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  padding: clamp(3rem, 8vw, 7rem) var(--pad);
}
.elevate__text p {
  font-size: 1.05rem;
  color: #1a1a1a;
  max-width: 42ch;
}
.btn {
  align-self: flex-start;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: none;
  padding: 0.6rem 0;
  margin-top: 0.6rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: opacity 0.4s ease;
}
/* Trailing arrow */
.btn::before {
  content: '\2192';
  display: inline-block;
  order: 1;
  font-size: 1.1em;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before {
  transform: translateX(4px);
}
/* Persistent underline */
.btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(1);
  transform-origin: left;
  transition: opacity 0.4s ease, height 0.4s ease;
}
.btn:hover::after {
  opacity: 1;
  height: 1.5px;
}

/* ============================================================
   MICRO-INTERACTIONS
   ============================================================ */
.intro__image img,
.advisory__image img,
.elevate__image img,
.pack-gallery__item img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro__image:hover img,
.advisory__image:hover img,
.elevate__image:hover img,
.pack-gallery__item:hover img {
  transform: scale(1.03);
}

/* ---- Dark hero variant for inner pages ---- */
.fn-hero--dark {
  background: var(--wsg-bg);
  color: #fff;
}
.fn-hero--dark .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.fn-hero--dark .fn-hero__title {
  color: #fff;
}

/* ============================================================
   FOOTER — columnar layout
   ============================================================ */
.footer {
  background: var(--black);
  color: #fff;
  padding: clamp(4rem, 9vw, 7rem) var(--pad) 2.5rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__logo {
  width: 42px;
  filter: invert(1);
}
.footer__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.footer__since {
  font-family: var(--serif);
  font-size: clamp(0.82rem, 2.4vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}
.footer__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer__col-title {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.4rem;
}
.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer__address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}
.footer__address-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer__col-links a:hover { color: #fff; }
.footer__copy {
  max-width: var(--maxw);
  margin: 1.8rem auto 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   SCROLL REVEAL — staggered editorial rise
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Staggered children within a grid or section */
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
body {
  animation: wsg-page-in 0.5s ease both;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.3s ease;
}
@keyframes wsg-page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.wsg-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.wsg-preloader.is-done {
  opacity: 0;
  pointer-events: none;
}
.wsg-preloader__logo {
  width: 60px;
  height: auto;
  opacity: 0;
  animation: preloader-breathe 1.6s ease infinite;
}
@keyframes preloader-breathe {
  0%   { opacity: 0; transform: scale(0.92); }
  50%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.92); }
}

/* ============================================================
   PARALLAX FLOAT
   ============================================================ */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ============================================================
   IMAGE ZOOM ON HOVER
   ============================================================ */
.img-hover-zoom {
  overflow: hidden;
  display: block;
}
.img-hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-hover-zoom:hover img {
  transform: scale(1.05);
}

/* ============================================================
   IMAGE BLUR-UP LAZY LOADING
   ============================================================ */
.img-blur {
  filter: blur(12px);
  transition: filter 0.8s ease;
}
.img-blur.is-loaded {
  filter: blur(0);
}

/* ============================================================
   CUSTOM CURSOR — White Glove
   ============================================================ */
html.has-custom-cursor,
html.has-custom-cursor *,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [data-booking],
html.has-custom-cursor input,
html.has-custom-cursor textarea {
  cursor: url('../images/cursor-glove.png') 7 1, auto !important;
}
/* Hide on touch devices */
@media (hover: none) {
  html { cursor: auto !important; }
  html.has-custom-cursor, html.has-custom-cursor * { cursor: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .img-blur { filter: none; }
  .wsg-preloader { display: none; }
  .parallax-img { transform: none !important; }
  .img-hover-zoom img { transform: none !important; }
  html { scroll-behavior: auto; cursor: auto !important; }
  html.has-custom-cursor, html.has-custom-cursor * { cursor: auto !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__image { position: relative; top: 0; max-width: 520px; }
  .advisory__grid { grid-template-columns: 1fr; }
  .advisory__image { order: 2; max-width: 560px; }
  .elevate { grid-template-columns: 1fr; }
  .elevate__image { min-height: 60vh; }
  .services__list { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--line); padding-right: 2rem; }
  .service:nth-child(3n+1) { padding-left: 2rem; }
  .service:nth-child(2n) { border-right: none; padding-right: 0; }
  .service:nth-child(2n+1) { padding-left: 0; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    background: var(--black);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    padding: 3rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    margin: 0;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 0.95rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; z-index: 110; }
  .nav__toggle.is-open span { color: #fff; }
  .nav__toggle.is-open span:first-child { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.is-open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

  .services__list { grid-template-columns: 1fr; }
  .service,
  .service:nth-child(n) {
    padding: 2.2rem 0;
    border-right: none;
  }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer__columns { grid-template-columns: 1fr 1fr; }
  .footer__addresses { flex-direction: column; gap: 1.6rem; }
}
