/* WINKZ DESIGN V2
   Change these shared colors first when adjusting the brand. */
:root {
  --ink: #35282d;
  --paper: #fffaf7;
  --pink: #f1dbe0;
  --rose: #8b455f;
  --line: #dfcbd0;
  --muted: #68585e;
  --serif: 'Italiana', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

/* Base styles and keyboard access */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.65 var(--sans);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 6px;
}
img { max-width: 100%; }
.skip {
  position: fixed;
  left: 1rem;
  top: -100px;
  background: white;
  padding: 0.75rem;
  z-index: 10;
}
.skip:focus { top: 0.75rem; }

/* Header: mobile navigation stays visible and works without JavaScript. */
header {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5.5%;
  border-bottom: 1px solid var(--line);
  gap: 1.5rem;
}
.brand {
  font: 3rem/0.9 Georgia, serif;
  letter-spacing: -2px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.brand span {
  font: 0.75rem/1.5 var(--sans);
  letter-spacing: 2px;
  margin: 0.6rem 0 0 0.2rem;
}
nav { display: flex; gap: 1.75rem; font-size: 0.875rem; flex-wrap: wrap; }
nav a { padding: 0.5rem 0; }
nav a:hover, .text-link:hover { color: var(--rose); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 1rem 1.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  transition: background 220ms ease, transform 300ms ease;
}
.button:hover {
  background: #57333f;
  transform: translateY(-2px);
}
.button.small { padding: 0.75rem 1.4rem; white-space: nowrap; }
.text-link {
  display: inline-block;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  padding: 0.35rem 0;
}
.eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; }
h2 {
  font: clamp(2.6rem, 4.5vw, 4.125rem)/1.15 var(--serif);
  letter-spacing: -1px;
  margin: 1.2rem 0 0;
}
em { font-family: Georgia, serif; font-weight: 400; font-size: 0.91em; }

/* V1's split hero, softened with a blush wash and one curved photo corner. */
.hero {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  max-width: 1600px;
  margin: auto;
  min-height: 690px;
  background: linear-gradient(120deg, var(--paper) 30%, #f9e9e9 100%);
}
.hero-copy {
  padding: 4.5rem 8% 2rem 10.3%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.hero h1 {
  font: clamp(3.2rem, 5.5vw, 5.875rem)/1.08 var(--serif);
  letter-spacing: -1.5px;
  margin: 1.8rem 0 1.6rem;
}
h1 em { color: var(--rose); letter-spacing: -2px; }
.hero p { color: var(--muted); max-width: 360px; margin: 0 0 1.8rem; }
.hero .text-link { margin-top: 1rem; }
.hero-note { font-size: 0.75rem; letter-spacing: 1.4px; margin-top: 2.7rem; }
.hero-art {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #9d8e90;
  border-radius: 0 0 0 130px;
}
.hero-art img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.82);
}
.hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #24151d50, transparent 30%, transparent 55%, #24151d75);
  pointer-events: none;
}
.image-top {
  position: absolute;
  z-index: 1;
  top: 1.9rem;
  left: 1.9rem;
  right: 1.9rem;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.image-bottom {
  position: absolute;
  z-index: 1;
  bottom: 2.5rem;
  right: 2.25rem;
  left: 2.25rem;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.image-bottom span { font: clamp(4rem, 7vw, 6.25rem)/1 Georgia, serif; letter-spacing: -5px; }
.image-bottom i { font: italic 1.5rem/1.4 Georgia, serif; padding-bottom: 0.3rem; }
.ribbon {
  background: var(--pink);
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.2rem 5%;
  gap: 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}
.ribbon b { font-size: 1.6rem; font-weight: 400; }

/* Shared section layout */
.section { padding: 6.25rem 7%; max-width: 1600px; margin: auto; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 2.5rem; margin-bottom: 2.8rem; }
.section-heading p { max-width: 350px; color: var(--muted); margin-bottom: 0.25rem; }
.service-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 7%; }
.service-photo { position: relative; height: 430px; overflow: hidden; border-radius: 12px 70px 12px 12px; }
.service-photo img { height: 100%; width: 100%; object-fit: cover; }
.service-photo > span {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 6px #000;
}
.service-list > a { display: flex; gap: 1.75rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.number { font-size: 0.75rem; color: var(--rose); padding-top: 0.5rem; }
.service-list h3, .form-grid h3 { font: 2.125rem/1.2 var(--serif); margin: 0; }
.service-list p { color: var(--muted); margin: 0.875rem 0 1.5rem; }
.service-cta { font-size: 0.875rem; border-bottom: 1px solid; padding-bottom: 5px; }
.service-list a:hover .service-cta { color: var(--rose); }

/* Daniela's portrait and handwritten-style signature (no extra font download). */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12%;
  background: linear-gradient(115deg, #f4e3e3, #f8eeea);
  border-block: 1px solid var(--line);
}
.portrait-wrap {
  position: relative;
  max-width: 430px;
  transform: rotate(-2deg);
  padding: 12px 12px 3rem;
  background: var(--paper);
  border: 1px solid #e2cbd0;
  border-radius: 5px;
  box-shadow: 0 16px 32px #54303a0d;
}
.portrait-wrap img { width: 100%; height: auto; aspect-ratio: 1 / 1.13; object-fit: cover; display: block; border-radius: 3px; }
.portrait-label { position: absolute; bottom: 0.75rem; left: 0; width: 100%; text-align: center; font-size: 0.75rem; letter-spacing: 1.5px; }
.about-copy p { color: var(--muted); }
.about-copy .intro { font-size: 1.25rem; color: var(--ink); margin-top: 1.75rem; }
.signature { font: italic 2.375rem/1.3 Georgia, serif; color: var(--rose); margin: 1.8rem 0; }

/* Consent forms remain on Jotform. */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-grid article { border: 1px solid var(--line); padding: 2.5rem; background: #fffdfb; border-radius: 18px; }
.form-label { font-size: 0.75rem; letter-spacing: 1.5px; color: var(--rose); display: block; margin-bottom: 1.5rem; }
.form-grid p { color: var(--muted); margin: 1.25rem 0 1.8rem; }

/* Static review cards: readable without scripts, no autoplay or invented ratings. */
.reviews { background: var(--ink); color: var(--paper); text-align: center; }
.reviews h2 { margin-top: 1.4rem; }
.reviews h2 em { color: var(--pink); }
.reviews-intro { color: #e2cdd3; margin: 1.5rem 0 2.6rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; text-align: left; }
.review-card { margin: 0; display: flex; flex-direction: column; padding: 2rem; border: 1px solid #80626d; border-radius: 18px; background: #44323a; }
.quote-mark { font: 3.5rem/1 Georgia, serif; height: 2.7rem; color: var(--pink); }
.review-card blockquote { margin: 1rem 0 2rem; font: 1.7rem/1.4 Georgia, serif; }
.review-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 0.3rem; }
.review-name { font-size: 0.875rem; font-weight: 600; }
.review-card time, .review-source { font-size: 0.75rem; color: #e2cdd3; }
.review-source { margin-top: 1rem; }
.light { background: var(--pink); color: var(--ink); border-color: var(--pink); }
.light:hover { background: var(--paper); }
.reviews a:focus-visible { outline-color: var(--pink); }

/* Booking and payment links stay exactly with the current providers. */
.booking { display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 14%; }
.booking p { color: var(--muted); margin: 1.5rem 0; }
.payments { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.payments > a { display: flex; justify-content: space-between; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
.payments > a:hover { color: var(--rose); }
footer { padding: 2.8rem 5.5%; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1.8rem; }
footer > span, footer > a:not(.brand), footer p { font-size: 0.875rem; color: var(--muted); }

/* Native dialog provides Escape handling and keyboard focus containment. */
dialog { width: min(940px, 94vw); max-height: 92vh; border: 1px solid var(--line); border-radius: 18px; padding: 1.4rem; background: var(--paper); color: var(--ink); }
dialog::backdrop { background: #35282dbb; }
.dialog-header { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.dialog-header h2 { font: 1.6rem/1.3 Georgia, serif; margin: 0; }
.close { background: transparent; border: 0; color: var(--ink); font-size: 2rem; min-width: 44px; min-height: 44px; }
.fallback { font-size: 0.875rem; }
.fallback a { text-decoration: underline; text-underline-offset: 3px; }
iframe { width: 100%; height: 65vh; border: 1px solid var(--line); border-radius: 8px; background: white; }
body.modal-open { overflow: hidden; }

/* Tablet and smaller laptop screens */
@media (min-width: 1700px) {
  header, footer { padding-inline: max(5.5%, calc((100vw - 1424px) / 2)); }
}
@media (max-width: 1000px) {
  header { flex-wrap: wrap; }
  nav { gap: 1.3rem; }
  .hero-copy { padding-top: 3rem; }
  .section { padding: 4.7rem 6%; }
  .about { gap: 8%; }
  .section-heading { gap: 1.6rem; }
  .section-heading p { max-width: 280px; }
  .service-grid { gap: 6%; }
  .form-grid article { padding: 1.75rem; }
  .review-card { padding: 1.5rem; }
  .review-card blockquote { font-size: 1.4rem; }
  footer { flex-wrap: wrap; }
  .ribbon span:last-of-type, .ribbon b:last-child { display: none; }
}

/* Phone layout: compact navigation, single-column content, comfortable touch targets. */
@media (max-width: 700px) {
  header { padding: 1.3rem 7% 0; gap: 1rem; }
  .brand { font-size: 2.5rem; }
  header nav { order: 3; width: 100%; justify-content: space-between; gap: 0.25rem 1rem; padding: 0.7rem 0; border-top: 1px solid var(--line); }
  nav a { font-size: 0.875rem; padding-block: 0.5rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 2.7rem 7% 2.5rem; }
  .hero h1 { font-size: clamp(2.9rem, 9.4vw, 4rem); letter-spacing: -1px; margin-top: 1.5rem; }
  h1 em { letter-spacing: -1px; }
  .hero p { max-width: 370px; }
  .hero-note { margin-top: 1.8rem; }
  .hero-art { min-height: 450px; border-radius: 75px 0 0 0; }
  .hero-art img { object-position: center 50%; }
  .image-bottom span { font-size: 5rem; }
  .ribbon { padding: 1rem 6%; gap: 0.75rem; font-size: 0.75rem; letter-spacing: 1px; }
  .ribbon b { font-size: 1.25rem; }
  .section { padding: 4rem 7%; }
  .section-heading { display: block; margin-bottom: 2rem; }
  .section-heading p { margin-top: 1.4rem; max-width: none; }
  .service-grid, .about, .form-grid, .booking, .review-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-photo { height: 350px; }
  .service-list > a { padding: 1.6rem 0; }
  .about-copy { padding-top: 1.25rem; }
  .portrait-wrap { max-width: 340px; margin: auto; }
  .form-grid article { padding: 1.9rem; }
  .review-grid { gap: 1rem; }
  .review-card blockquote { font-size: 1.6rem; margin-bottom: 1.5rem; }
  .booking { gap: 3rem; }
  footer { padding: 2.3rem 7%; display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem 1rem; }
  footer .brand { align-items: flex-start; }
  footer .brand span { margin-left: 5px; }
  footer p { text-align: right; }
}
/* Large text settings need room to wrap rather than overflow. */
.hero-copy, .about-copy, .service-list, .form-grid article, .review-card, .payments { min-width: 0; }
h1, h2, h3, p, blockquote { overflow-wrap: break-word; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* EDITORIAL MOTION — optional enhancement; no hidden baseline content.
   Translation and opacity carry most motion. Clipping is limited to photo entrances. */
.hero-line { display: block; }
.hero-photo-motion { position: absolute; inset: 0; }
nav a { position: relative; }
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }

@keyframes editorial-arrive {
  from { opacity: 0.25; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-arrive {
  from { opacity: 0.12; transform: translateY(0.35em); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes photo-unveil {
  from { clip-path: inset(0 0 85% 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes photo-settle {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}
@keyframes accent-arrive {
  from { opacity: 0.5; transform: translateY(3px) rotate(-12deg); }
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@media (prefers-reduced-motion: no-preference) {
  :root { --motion-ease: cubic-bezier(0.22, 1, 0.36, 1); }
  .motion-arrive {
    animation: editorial-arrive 750ms var(--motion-ease) var(--motion-delay, 0ms) backwards;
  }
  .motion-arrive[data-motion='hero'] {
    animation-name: hero-arrive;
    animation-duration: 950ms;
  }
  .motion-arrive[data-motion='photo'] {
    animation-name: photo-unveil;
    animation-duration: 1100ms;
    animation-delay: 0ms;
  }
  .hero-art.motion-arrive img {
    animation: photo-settle 1100ms var(--motion-ease) backwards;
  }
  .motion-arrive[data-motion='accent'] {
    animation-name: accent-arrive;
    animation-duration: 850ms;
  }
  nav a::after { transition: transform 350ms var(--motion-ease); }
  .button > span[aria-hidden='true'] { transition: transform 350ms var(--motion-ease); }
  .button:hover > span[aria-hidden='true'] { transform: translate(2px, -2px); }
}

/* Only one photograph and its lettering use scroll-linked transforms.
   The small crop conceals photo edges while it moves. No pinned sections or scroll hijack. */
@media (min-width: 1001px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .has-parallax .hero-photo-motion { transform: translateY(var(--photo-drift, 0px)) scale(1.065); }
  .has-parallax .image-bottom { transform: translateY(var(--type-drift, 0px)); }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-photo img { transition: transform 900ms var(--motion-ease); }
  .service-photo:hover img { transform: scale(1.035); }
  .portrait-wrap { transition: transform 700ms var(--motion-ease); }
  .portrait-wrap:hover { transform: rotate(-1deg) translateY(-3px); }
}
@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .motion-arrive { animation-duration: 500ms; animation-delay: 0ms; }
  .motion-arrive[data-motion='hero'] { animation-duration: 650ms; animation-delay: var(--motion-delay, 0ms); }
  /* Cheaper, partial photo reveal on phones. */
  .motion-arrive[data-motion='photo'] { animation-name: editorial-arrive; animation-duration: 650ms; }
  .hero-art.motion-arrive img { animation-duration: 650ms; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-motion, .image-bottom { transform: none !important; }
  .motion-arrive { opacity: 1 !important; clip-path: none !important; }
  .button:hover { transform: none; }
}
@media print {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .motion-arrive { opacity: 1 !important; clip-path: none !important; transform: none !important; }
  .hero-photo-motion, .image-bottom { transform: none !important; }
}

/* Reusable seasonal promotions. Visibility is controlled by promotions.js. */
.promos {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #f8ece9 0%, #f1dbe0 100%);
  border-bottom: 1px solid var(--line);
}
.promos::before {
  content: '✧';
  position: absolute;
  top: 1.4rem;
  right: 5%;
  color: #b9788e55;
  font: 5rem/1 Georgia, serif;
  pointer-events: none;
}
.promo-heading { position: relative; z-index: 1; }
.promo-season {
  color: var(--rose) !important;
  font: italic clamp(1.5rem, 2.4vw, 2.1rem)/1.3 Georgia, serif;
}
.promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.promo-card {
  grid-column: span 2;
  min-width: 0;
  padding: 2rem;
  background: #fffaf7d9;
  border: 1px solid #d9bcc4;
  border-radius: 18px;
}
.promo-card:nth-last-child(-n + 2) { grid-column: span 3; }
.promo-price {
  display: block;
  color: var(--rose);
  font: clamp(2rem, 3vw, 2.8rem)/1 var(--serif);
  margin-bottom: 1rem;
}
.promo-card h3 { font: 1.5rem/1.25 var(--serif); margin: 0; }
.promo-card p { color: var(--muted); margin: 0.8rem 0 0; }
.promo-card-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.promo-card-featured .promo-price { color: var(--pink); }
.promo-card-featured p { color: #e2cdd3; max-width: 560px; }
.promo-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}
.promo-footer p { color: var(--muted); font-size: 0.875rem; }
.promo-nav-link::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0.35rem 0.1rem 0;
  border-radius: 50%;
  background: var(--rose);
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .promo-card { transition: transform 400ms var(--motion-ease), border-color 400ms ease; }
  .promo-card:hover { transform: translateY(-3px); border-color: var(--rose); }
  .promo-card-featured:hover { border-color: var(--pink); }
}
@media (max-width: 1000px) {
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-card, .promo-card:nth-last-child(-n + 2) { grid-column: span 1; }
  .promo-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .promos::before { top: 1rem; right: 3%; font-size: 3.5rem; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card, .promo-card:nth-last-child(-n + 2), .promo-card:last-child { grid-column: 1; padding: 1.6rem; }
  .promo-footer { align-items: stretch; flex-direction: column; }
  .promo-footer .button { align-self: flex-start; }
}

/* Real work: two editorial columns, natural photo ratios, quiet captions. */
.looks { background: linear-gradient(180deg, var(--paper), #f7ecea); }
.looks-editorial { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem 8%; align-items: start; }
.look-card { margin: 0; min-width: 0; }
.look-card:nth-child(even) { padding-top: 6rem; }
.look-media { overflow: hidden; border-radius: 4px; background: var(--pink); }
.look-media img { display: block; width: 100%; height: auto; }
.look-card figcaption { display: flex; align-items: baseline; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.look-number { color: var(--rose); font-size: 0.75rem; }
.look-card h3 { font: clamp(1.6rem, 2.5vw, 2.3rem)/1.25 var(--serif); margin: 0; }
.films-heading { margin: 5rem 0 2rem; text-align: center; }
.films-heading p { font: italic 1.8rem/1.4 Georgia, serif; margin: 0.8rem 0; }
.films { max-width: 850px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7%; align-items: start; }
.film-card { margin: 0; min-width: 0; }
.film-card:nth-child(2) { margin-top: 4rem; }
.film-media { position: relative; border-radius: 60px 4px 4px 4px; overflow: hidden; background: var(--ink); }
.film-media video { display: block; width: 100%; height: auto; aspect-ratio: 9/16; object-fit: contain; }
.film-toggle { position: absolute; right: 0.75rem; bottom: 0.75rem; min-height: 44px; border: 1px solid #fff8; border-radius: 99px; color: white; background: #35282df0; padding: 0.6rem 1rem; font-size: 0.875rem; }
.film-toggle:focus-visible { outline-color: white; outline-offset: -5px; }
.film-card figcaption { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); }
.looks-book { margin-top: 3rem; text-align: center; }
.portrait-wrap img { aspect-ratio: 3/4; object-position: center; }
.menu-toggle { display: none; }
@media (prefers-reduced-motion: no-preference) and (hover: hover) and (pointer: fine) {
  .look-media img { transition: transform 850ms var(--motion-ease); }
  .look-card:not(.look-1):hover img { transform: scale(1.025); }
  .review-card { transition: transform 400ms var(--motion-ease), border-color 400ms ease; }
  .review-card:hover { transform: translateY(-3px); border-color: var(--pink); }
}
@media (min-width: 701px) { header nav { gap: 0.25rem 1.2rem; } }
@media (max-width: 700px) {
  header { padding-bottom: 1rem; gap: 0.75rem; }
  header .brand { margin-right: auto; }
  header .button.small { padding: 0.7rem 1rem; }
  .nav-ready .menu-toggle { display: inline-flex; align-items: center; gap: 0.4rem; background: none; border: 0; padding: 0.5rem 0; min-height: 44px; color: var(--ink); font-size: 0.875rem; }
  .nav-ready header nav { display: none; }
  .nav-ready header.nav-open nav { display: grid; grid-template-columns: 1fr 1fr; }
  header nav a { min-height: 44px; }
  .looks-editorial { grid-template-columns: 1fr; gap: 2.5rem; }
  .look-card:nth-child(even) { padding-top: 0; width: 91%; margin-left: auto; }
  .look-card figcaption { gap: 0.75rem; padding-block: 1rem; }
  .look-card h3 { font-size: 1.8rem; }
  .films { gap: 2.5rem; grid-template-columns: 1fr; max-width: 370px; }
  .film-card:nth-child(2) { margin-top: 0; }
  .films-heading { margin-top: 3.5rem; }
  .film-media { border-top-left-radius: 45px; }
}
@media (max-width: 360px) { header .brand { font-size: 2.2rem; } header .button.small { padding-inline: 0.8rem; gap: 0.5rem; } }
@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .nav-open nav { animation: editorial-arrive 250ms var(--motion-ease); }
  .menu-toggle span { transition: transform 250ms var(--motion-ease); }
  .nav-open .menu-toggle span { transform: rotate(45deg); }
}
