/* ==========================================================================
   Vashon Photography — homepage
   Vintage label/badge system: SP Blunt display type, squiggle-sun mark,
   hot yellow + signal red + ink on ivory. Square corners everywhere.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */
/* Licensed YouWorkForThem webfonts. The comment blocks below are a condition of
   the license ("All details above must always remain unaltered and visible in
   your CSS") — do not remove or reformat them. Only the url() paths differ from
   the vendor's originals, pointing at ../assets/fonts/ instead of ./.
   Vendor sources kept at sp-blunt-complete-family-webfont-full/ in the repo. */

/*
Font: 		SP BLUNT
Style: 		Regular
URL: 		https://youworkforthem.com/font/T12322/sp-blunt
Foundry: 	Sup-Port Studio
Foundry: 	https://youworkforthem.com/designer/1395/sup-port-studio
Copyright:
Version: 	18
Created:	April 02, 2026
License: 	https://www.youworkforthem.com/font-license
License: 	The WebFont(s) listed in this document must follow the YouWorkForThem
			WebFont license rules. All other parties are strictly restricted
			from using the WebFonts(s) listed without a purchased license.
			All details above must always remain unaltered and visible in your CSS.
*/

@font-face {
	font-family: 'SPBLUNT-Regular';
	src: url('../assets/fonts/sp-blunt-regular.woff2') format('woff2'),
	     url('../assets/fonts/sp-blunt-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*
Font: 		SP BLUNT Outline
Style: 		Regular
URL: 		https://youworkforthem.com/font/T12322/sp-blunt
Foundry: 	Sup-Port Studio
Foundry: 	https://youworkforthem.com/designer/1395/sup-port-studio
Copyright:
Version: 	18
Created:	April 02, 2026
License: 	https://www.youworkforthem.com/font-license
License: 	The WebFont(s) listed in this document must follow the YouWorkForThem
			WebFont license rules. All other parties are strictly restricted
			from using the WebFonts(s) listed without a purchased license.
			All details above must always remain unaltered and visible in your CSS.
*/

@font-face {
	font-family: 'SPBLUNT-Outline';
	src: url('../assets/fonts/sp-blunt-outline.woff2') format('woff2'),
	     url('../assets/fonts/sp-blunt-outline.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*
Font: 		SP Blunt Script Script
Style: 		Regular
URL: 		https://youworkforthem.com/font/T12322/sp-blunt
Foundry: 	Sup-Port Studio
Foundry: 	https://youworkforthem.com/designer/1395/sup-port-studio
Copyright:
Version: 	18
Created:	April 02, 2026
License: 	https://www.youworkforthem.com/font-license
License: 	The WebFont(s) listed in this document must follow the YouWorkForThem
			WebFont license rules. All other parties are strictly restricted
			from using the WebFonts(s) listed without a purchased license.
			All details above must always remain unaltered and visible in your CSS.
*/

@font-face {
	font-family: 'SPBluntScript-Script';
	src: url('../assets/fonts/sp-blunt-script.woff2') format('woff2'),
	     url('../assets/fonts/sp-blunt-script.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  --ivory: #f4efe4;
  --ink: #1c1a16;
  --red: #d43d1e;
  --yellow: #f6c437;
  --muted: #55503f;
  --muted-small: #6b6659;

  /* Family names come from the vendor's @font-face blocks above — they are not
     tidy, but they must match exactly or the fonts silently fail to bind. */
  --display: 'SPBLUNT-Regular', Helvetica, Arial, sans-serif;
  --script: 'SPBluntScript-Script', 'Brush Script MT', cursive;
  --outline: 'SPBLUNT-Outline', 'SPBLUNT-Regular', Helvetica, sans-serif;
  --body: Helvetica, Arial, sans-serif;

  --frame: 3px solid var(--ink);   /* section frames */
  --rule: 2px solid var(--ink);    /* internal dividers */

  --gutter: 40px;                  /* page side margin */
}

/* --- Base ----------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { display: contents; }

h1, h2, p, figure, address { margin: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.skip-link:focus {
  left: 0;
  color: var(--ivory);
}

/* --- Brand sun ------------------------------------------------------------ */

.sun-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@keyframes vp-spin { to { transform: rotate(360deg); } }

.sun {
  display: block;
  flex: none;
  animation: vp-spin var(--spin, 30s) linear infinite;
}

.sun--hero    { width: 92px;  height: 92px;  color: var(--ivory);  stroke-width: 4;   --spin: 30s; }
.sun--chip    { width: 18px;  height: 18px;  color: var(--yellow); stroke-width: 7;   --spin: 14s; }
.sun--signoff { width: 30px;  height: 30px;  color: var(--red);    stroke-width: 7;   --spin: 14s; }
.sun--footer  { width: 380px; height: 380px; color: var(--yellow); stroke-width: 2.4; --spin: 60s; }

/* --- Nav ------------------------------------------------------------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px var(--gutter);
  background: var(--ivory);
  border-bottom: var(--rule);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}
.nav.is-visible { transform: translateY(0); }

.nav__brand {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Label-style CTA: red keyline, 3px gap, red plate inside. */
.btn-book {
  display: inline-block;
  border: 2px solid var(--red);
  padding: 3px;
}
.btn-book__plate {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  padding: 8px 16px;
  transition: background 0.2s ease;
}
.btn-book__label {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.btn-book:hover .btn-book__plate { background: var(--ink); }

/* --- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
}

.hero__photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

/* Each column stacks its photos and crossfades between them. */
.hero__col {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero__photo.is-active { opacity: 1; }

/* The lockup sits over photos that range from dusk-dark to white-bright. The
   design's text-shadows carry most of it; this adds just enough floor under
   the centre so cream type never lands on a blown-out interior. */
.hero__photos::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 42% at 50% 50%, rgba(28, 26, 22, 0.34), rgba(28, 26, 22, 0) 70%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  text-align: center;
  padding: 0 20px;
}

.hero__title {
  font-family: var(--display);
  font-weight: normal;
  font-size: clamp(72px, 10vw, 150px);
  letter-spacing: 0.1em;
  text-indent: 0.1em;   /* offsets the trailing letter-space so it reads centered */
  line-height: 1;
  color: var(--ivory);
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(28, 26, 22, 0.35);
}

.hero__subtitle {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 26px);
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  color: var(--ivory);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(28, 26, 22, 0.55), 0 2px 18px rgba(28, 26, 22, 0.5);
}

.hero__cue {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* --- Strapline ------------------------------------------------------------ */

.strapline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 60px var(--gutter) 20px;
  text-align: center;
}
.strapline__script {
  font-family: var(--script);
  font-size: 30px;
  color: var(--red);
}
.strapline__place {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: var(--muted-small);
}

/* --- Services ------------------------------------------------------------- */

.services {
  margin: 34px var(--gutter) 72px;
  border: var(--frame);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}
.service:hover { background: var(--yellow); }

/* Internal rules only: never doubled, never on the outer edge. */
.service:not(:nth-child(3n)) { border-right: var(--rule); }
.service:not(:nth-last-child(-n + 3)) { border-bottom: var(--rule); }

.service__no {
  font-family: var(--outline);
  font-size: 34px;
  color: var(--red);
}
.service__title {
  font-family: var(--display);
  font-weight: normal;
  font-size: 23px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service__blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* --- Work ----------------------------------------------------------------- */

/* Five projects would leave a ragged second row in a 3-column grid, so the grid
   runs on 6 tracks: the first three tiles span 2 each, the last two span 3 each.
   Row two reads as deliberate rather than unfinished. */
.work {
  margin: 0 var(--gutter) 72px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.work__tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: span 2;
}
.work__tile:nth-last-child(-n + 2) { grid-column: span 3; }

.work__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.work__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.work__link:hover .work__img,
.work__link:focus-visible .work__img {
  transform: scale(1.03);
  filter: brightness(0.82);
}

/* Photo count, revealed on hover as the affordance that the tile opens. */
.work__count {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 11px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.work__link:hover .work__count,
.work__link:focus-visible .work__count {
  opacity: 1;
  transform: translateY(0);
}

.work__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.work__label {
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work__note { color: var(--muted-small); }

/* --- About ---------------------------------------------------------------- */

.about {
  margin: 0 var(--gutter) 72px;
  border: var(--frame);
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
}

.about__portrait {
  border-right: var(--rule);
  min-height: 400px;
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__body {
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about__heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__hello {
  font-family: var(--script);
  font-size: 27px;
  color: var(--red);
}
.about__title {
  font-family: var(--display);
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about__para {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}
.about__signoff {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  font-family: var(--script);
  font-size: 24px;
  color: var(--red);
}

/* --- Book a shoot --------------------------------------------------------- */

.book {
  margin: 0 var(--gutter) 72px;
  border: var(--frame);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.book__intro {
  padding: 42px 44px;
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.book__script {
  font-family: var(--script);
  font-size: 27px;
  color: var(--red);
}
.book__title {
  font-family: var(--display);
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.book__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin-top: 4px;
}
.book__aside {
  font-size: 14px;
  color: var(--muted-small);
  margin-top: 8px;
}
.book__aside a {
  font-family: var(--display);
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
}

.book__form {
  padding: 42px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-small);
}
.field__input {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: var(--rule);
  padding: 11px 13px;
  width: 100%;
}
.field__input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.field__input--area {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
/* Only scold a field after they've actually tried to submit. */
.book__form.was-submitted .field__input:invalid { border-color: var(--red); }

.book__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-book--submit {
  align-self: flex-start;
  background: none;
  font: inherit;
  cursor: pointer;
}
.btn-book--submit[disabled] {
  cursor: default;
  opacity: 0.55;
}

.book__status {
  font-size: 14px;
  line-height: 1.5;
  min-height: 1.2em;
}
.book__status--ok  { color: var(--muted); }
.book__status--err { color: var(--red); }

/* --- Lightbox ------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #14120f;   /* opaque: nothing behind should compete with the photo */
  color: var(--ivory);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  /* An explicit, shrinkable row. Without it the row sizes to the image and
     max-height: 100% below resolves against the image's own height, which
     constrains nothing and lets tall photos overflow. */
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  /* Symmetric top/bottom so the photo sits optically centred, and at least as
     tall as the bar (78px) so a portrait photo tall enough to fill the row
     still can't slide underneath the title. */
  padding: 84px 20px;
}
.lightbox[hidden] { display: none; }

.lightbox__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
}
.lightbox__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.lightbox__title {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lightbox__counter {
  font-size: 13px;
  color: rgba(244, 239, 228, 0.65);
}

.lightbox__close,
.lightbox__nav {
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 10px;
  display: flex;
  transition: opacity 0.2s ease;
  opacity: 0.75;
}
.lightbox__close:hover,
.lightbox__nav:hover { opacity: 1; color: var(--yellow); }

/* A quarter turn every few seconds so the close control catches the eye.
   90 degrees maps an X onto itself, so it always settles looking correct and
   the loop restart is invisible. Deliberately not a continuous spin, which
   would read as a loading indicator. */
@keyframes lb-close-turn {
  0%, 86% { transform: rotate(0deg); }
  100%    { transform: rotate(90deg); }
}
.lightbox__close svg {
  animation: lb-close-turn 5s ease-in-out infinite;
}
.lightbox__close:hover svg,
.lightbox__close:focus-visible svg { animation-play-state: paused; }

/* Shown briefly on touch, positioned clear of the photo. */
.lightbox__hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(6px);
  background: rgba(20, 18, 15, 0.72);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}
.lightbox__hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* width/height are set from JS as attributes so the aspect ratio is known before
   the photo loads. auto here lets the max-* rules drive the actual size, rather
   than the height attribute being taken literally. Capping at the natural size
   keeps a smaller export from being upscaled and going soft. */
.lightbox__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

/* --- Footer --------------------------------------------------------------- */

.footer {
  background: var(--red);
  color: var(--ivory);
  padding: 96px var(--gutter) 56px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

/* Only the lower-left quarter of the sun sits inside the footer box. */
.sun--footer {
  position: absolute;
  top: -190px;
  right: -190px;
}

.footer__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.footer__pitch {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__headline {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.footer__script {
  font-family: var(--script);
  font-size: 22px;
  color: var(--yellow);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: right;
  padding-right: 6px;
  text-transform: uppercase;
}
.footer__contact a:hover { color: var(--yellow); }
.footer__mark {
  font-family: var(--display);
  letter-spacing: 0.14em;
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 1000px) {
  :root { --gutter: 28px; }

  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service:not(:nth-child(3n)) { border-right: none; }
  .service:not(:nth-last-child(-n + 3)) { border-bottom: none; }
  .service:not(:nth-child(2n)) { border-right: var(--rule); }
  .service:not(:nth-last-child(-n + 2)) { border-bottom: var(--rule); }

  /* Two up: every tile spans half of the 6-track grid. */
  .work__tile,
  .work__tile:nth-last-child(-n + 2) { grid-column: span 3; }

  .about { grid-template-columns: 300px minmax(0, 1fr); }
  .about__body { padding: 34px 32px; }

  .book__intro, .book__form { padding: 34px 32px; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }

  .nav { padding: 10px var(--gutter); }
  .nav__brand { font-size: 14px; letter-spacing: 0.12em; }
  .nav__links { gap: 18px; }
  .nav__link { display: none; }         /* anchors stay reachable by scrolling */
  .btn-book__plate { padding: 7px 12px; }
  .btn-book__label { font-size: 11px; letter-spacing: 0.16em; }

  /* The split doesn't survive a phone: two slivers, and the lockup lands on the
     seam. Show the darker column full-bleed so the cream type stays legible.
     Hiding the column also stops its lazy photos from ever being fetched. */
  .hero__photos { grid-template-columns: 1fr; }
  .hero__col:last-child { display: none; }

  .services { grid-template-columns: minmax(0, 1fr); }
  .service { padding: 28px 22px; }
  .service:not(:nth-child(2n)) { border-right: none; }
  .service:not(:nth-last-child(-n + 2)) { border-bottom: none; }
  .service:not(:last-child) { border-bottom: var(--rule); }

  /* One up. */
  .work__tile,
  .work__tile:nth-last-child(-n + 2) { grid-column: span 6; }
  .work__img { height: 260px; }
  /* No hover on touch, so the photo count just stays put. */
  .work__count { opacity: 1; transform: none; }

  .about { grid-template-columns: minmax(0, 1fr); }
  .about__portrait {
    border-right: none;
    border-bottom: var(--rule);
    min-height: 0;
    height: 320px;
  }
  .about__body { padding: 30px 24px; }

  .book { grid-template-columns: minmax(0, 1fr); }
  .book__intro {
    border-right: none;
    border-bottom: var(--rule);
    padding: 30px 24px;
  }
  .book__form { padding: 30px 24px; }

  /* Arrows would squeeze the photo if they kept their own grid columns, so they
     float over its edges instead. Keeping them visible matters: swipe alone is
     invisible, and a gallery with no visible way forward reads as a dead end. */
  .lightbox {
    grid-template-columns: minmax(0, 1fr);
    padding: 84px 12px;
  }
  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 18, 15, 0.6);
    padding: 12px 8px;
    opacity: 0.9;
  }
  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }

  .nav__brand { white-space: nowrap; }
  .btn-book__label { white-space: nowrap; }

  .footer { padding: 72px var(--gutter) 44px; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer__headline { font-size: 26px; }
  .footer__script { font-size: 19px; }
  .footer__contact { text-align: left; padding-right: 0; }
  .sun--footer { width: 260px; height: 260px; top: -130px; right: -130px; }
}

/* Narrow phones: the brand mark and the CTA have to share one line. */
@media (max-width: 460px) {
  .nav { padding: 9px 16px; }
  .nav__brand { font-size: 12px; letter-spacing: 0.07em; }
  .btn-book { padding: 2px; }
  .btn-book__plate { padding: 6px 9px; gap: 6px; }
  .btn-book__label { font-size: 10px; letter-spacing: 0.1em; }
  .sun--chip { width: 14px; height: 14px; }
}

/* --- Motion preferences --------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sun { animation: none; }
  .lightbox__close svg { animation: none; }
  .nav { transition: none; }
  * { transition-duration: 0.01ms !important; }
}
