/* ==========================================================================
   RONA. Bridal and occasion makeup.

   Warm porcelain paper, skin tones, and one deep rouge. Bodoni Moda for
   anything that speaks, Instrument Sans for anything that explains. Ovals
   for portraits, hairlines for structure, and as little chrome as possible.
   ========================================================================== */

@font-face { font-family: "Bodoni Moda"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/bodoni-moda-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Bodoni Moda"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/bodoni-moda-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Bodoni Moda"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/bodoni-moda-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Bodoni Moda"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/bodoni-moda-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/instrument-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/instrument-sans-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/instrument-sans-latin-600-normal.woff2") format("woff2"); }

:root {
  --paper: #f7f1eb;
  --paper-2: #f1e7de;
  --sand: #e6d6c8;
  --skin: #d6b39a;
  --rouge: #9e3f38;
  --rouge-deep: #7d2f2a;
  --ink: #1b1516;
  --ink-soft: #3d3335;
  --smoke: #756865;
  --line: rgba(27, 21, 22, 0.14);
  --line-strong: rgba(27, 21, 22, 0.32);

  --serif: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Type scale: a tall display, generous italics, quiet body. */
  --fs-mast: clamp(5.5rem, 2rem + 20vw, 17rem);
  --fs-display: clamp(2.4rem, 1.4rem + 4.2vw, 5.6rem);
  --fs-h2: clamp(2.1rem, 1.4rem + 3vw, 4.4rem);
  --fs-h3: clamp(1.4rem, 1.2rem + 1vw, 2.1rem);
  --fs-tag: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  --fs-body: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  --fs-small: 0.875rem;
  --fs-tiny: 0.78rem;

  /* Rhythm: a 4 / 8 / 14 / 24 / 40 step, wider than a marketing grid. */
  --s1: 0.5rem;
  --s2: 0.9rem;
  --s3: 1.6rem;
  --s4: 2.6rem;
  --s5: 4.2rem;
  --s6: 6.5rem;
  --edge: clamp(1.25rem, 0.5rem + 3.5vw, 5rem);
  --spine-w: 7.25rem;
  --block: clamp(5rem, 3rem + 9vw, 12rem);

  --oval: 50% / 42%;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --dur: 480ms;
}

/* Base --------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }
html:not(.js) { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
button, input, textarea { font: inherit; color: inherit; }
ol, ul, dl, dd { list-style: none; padding: 0; margin: 0; }
a { color: inherit; }
fieldset { border: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em, .tag em { font-style: italic; font-weight: 400; }
h2 em { color: var(--rouge); }

p { text-wrap: pretty; }

:focus-visible { outline: 2px solid var(--rouge); outline-offset: 4px; }
main:focus { outline: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: fixed; left: 1rem; top: 1rem; z-index: 600;
  padding: 0.75rem 1rem; background: var(--ink); color: var(--paper);
  text-decoration: none; font-size: var(--fs-small);
  transform: translateY(-150%); transition: transform var(--dur) var(--ease);
}
.skip:focus-visible { transform: translateY(0); }

/* Labels are italic serif, lowercase. No tracked capitals anywhere. */
.tag {
  font-family: var(--serif);
  font-size: var(--fs-tag);
  color: var(--rouge);
}

/* The rule link: words, then a line that grows toward them. */
.rule-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  min-height: 2.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
}
.rule-link i {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.rule-link:hover i { transform: scaleX(1.6); background: var(--rouge); }
.rule-link:hover span { color: var(--rouge); }

/* Masthead ----------------------------------------------------------------- */

.masthead {
  padding: var(--s3) var(--edge) 0;
}

.masthead__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s3);
}

.masthead__brand { text-decoration: none; }
.masthead__word {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-mast);
  line-height: 0.82;
  letter-spacing: -0.03em;
  margin-left: -0.04em;
}

.masthead__index {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.6rem;
}
@media (min-width: 48rem) { .masthead__index { display: flex; } }

.masthead__index a {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s2);
  min-height: 1.9rem;
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--ink-soft);
  transition: color var(--dur) var(--ease);
}
.masthead__index a i { font-family: var(--serif); font-style: italic; color: var(--rouge); font-size: 0.9em; }
.masthead__index a:hover { color: var(--rouge); }

.masthead__desc {
  margin-top: var(--s2);
  font-family: var(--serif);
  font-size: var(--fs-tag);
  color: var(--ink-soft);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--ink);
}

/* Spine: the side index -------------------------------------------------- */

.spine {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 90;
  width: var(--spine-w);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform var(--dur) var(--ease);
}
.spine.is-in { transform: none; }
@media (min-width: 64rem) { .js .spine { display: flex; } }

.spine__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.spine__list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-self: stretch;
  padding-left: 1rem;
}
/* Small, horizontal, stacked down the spine. A short rule marks the section
   that is on screen. */
.spine__list a {
  position: relative;
  display: block;
  padding: 0.3rem 0 0.3rem 0.9rem;
  font-size: var(--fs-tiny);
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
  text-decoration: none;
  color: var(--smoke);
  transition: color var(--dur) var(--ease);
}
.spine__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.45rem;
  height: 1px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.spine__list a:hover, .spine__list a.is-on { color: var(--ink); }
.spine__list a:hover::before, .spine__list a.is-on::before { transform: none; }

.spine__book {
  align-self: stretch;
  margin-left: 1rem;
  padding-left: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--rouge);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 64rem) {
  .js body.has-spine main, .js body.has-spine .foot { padding-left: var(--spine-w); }
}

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: var(--s4) var(--edge) var(--block);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s3);
  font-size: var(--fs-small);
  color: var(--smoke);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--s2); }
.hero__meta span::before { content: ""; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--rouge); }

.hero__portrait {
  position: relative;
  width: min(88vw, 26rem);
  justify-self: end;
  margin-top: var(--s2);
}
.hero__portrait .pic-mask,
.hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--oval);
  background: var(--sand);
}
.hero__cap {
  margin-top: var(--s2);
  font-family: var(--serif);
  font-size: var(--fs-small);
  color: var(--smoke);
  text-align: right;
}

.hero__words { position: relative; }

.hero__title {
  font-size: var(--fs-display);
  line-height: 0.98;
  max-width: 12ch;
}
.hero__line { display: block; }
.hero__line em { color: var(--rouge); }

.hero__lead {
  margin-top: var(--s3);
  max-width: 34ch;
  color: var(--ink-soft);
}

.hero__cta { margin-top: var(--s4); }

/* Wide: the portrait and the words share one field. The words start under
   the masthead on the left, the oval sits high on the right and the headline
   crosses into it. */
@media (min-width: 64rem) {
  .hero {
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--s3);
    align-items: start;
    padding-top: var(--s5);
  }
  .hero__meta {
    grid-column: 1 / span 2;
    grid-row: 1;
    flex-direction: column;
    gap: var(--s2);
    padding-top: 0.4rem;
  }
  .hero__portrait {
    grid-column: 8 / span 5;
    grid-row: 1;
    width: 100%;
    margin-top: calc(var(--s5) * -1);
    justify-self: stretch;
  }
  .hero__words {
    grid-column: 3 / span 6;
    grid-row: 1;
    padding-top: 26vh;
    z-index: 1;
  }
  /* The second line reaches into the oval, over the white of the shirt, not
     over a face. */
  .hero__title { max-width: none; width: 118%; }
  .hero__line em { color: var(--rouge); text-shadow: 0 0 18px rgba(247, 241, 235, 0.9), 0 0 4px rgba(247, 241, 235, 0.9); }
}

@media (min-width: 90rem) {
  .hero__words { padding-top: 30vh; }
}

/* Phones: portrait first, full width, then the words over its lower edge. */
@media (max-width: 47.99rem) {
  .hero { padding-top: var(--s3); gap: var(--s3); }
  .hero__meta { order: 3; padding-top: var(--s3); border-top: 1px solid var(--line); flex-direction: column; gap: var(--s2); }
  .hero__portrait { order: 1; width: 100%; justify-self: stretch; }
  .hero__words { order: 2; margin-top: -12vw; }
  .hero__title { font-size: clamp(2.6rem, 1rem + 10vw, 4rem); }
  .hero__cap { text-align: left; }
}

/* Looks: the grid --------------------------------------------------------- */

.looks { padding: 0 var(--edge) var(--s6); }

.looks__head {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s3);
  border-top: 1px solid var(--ink);
  margin-bottom: var(--s5);
}
.looks__title { font-size: var(--fs-h2); }

.grid { display: grid; gap: var(--s5) var(--s3); }

.tile { position: relative; }
.tile__media {
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
}
.tile__media img { width: 100%; height: 100%; object-fit: cover; }
.tile--c .tile__media { aspect-ratio: 16 / 9; }
.tile--oval .tile__media { border-radius: var(--oval); }

.tile__cap {
  display: flex;
  gap: var(--s2);
  align-items: baseline;
  margin-top: var(--s2);
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.tile__cap i { font-family: var(--serif); font-style: italic; color: var(--rouge); }

/* Phones: one column, but the tiles lean left and right in turn. */
@media (max-width: 63.99rem) {
  .tile--a { width: 84%; }
  .tile--b { width: 70%; margin-left: auto; }
  .tile--c { width: 100%; }
  .tile--d { width: 60%; }
  .tile--e { width: 62%; margin-left: auto; margin-top: calc(var(--s4) * -1); }
}

@media (min-width: 64rem) {
  .grid { grid-template-columns: repeat(12, 1fr); row-gap: var(--s6); }
  .tile--a { grid-column: 1 / span 5; }
  .tile--b { grid-column: 8 / span 4; align-self: end; margin-bottom: -10vh; }
  .tile--c { grid-column: 3 / span 10; }
  .tile--d { grid-column: 1 / span 3; margin-top: -8vh; }
  .tile--e { grid-column: 6 / span 3; margin-top: 6vh; }
  .tile--e + .tile { margin-top: 0; }
}

.looks__note {
  margin-top: var(--s5);
  max-width: 40ch;
  font-size: var(--fs-small);
  color: var(--smoke);
}

/* The menu ----------------------------------------------------------------- */

.menu {
  padding: var(--block) var(--edge);
  background: var(--paper-2);
  display: grid;
  gap: var(--s4);
}
@media (min-width: 64rem) {
  .menu { grid-template-columns: 4fr 8fr; column-gap: var(--s5); align-items: start; }
  .menu__aside { position: sticky; top: var(--s5); }
}

.menu__title { font-size: var(--fs-h2); margin-top: var(--s2); }
.menu__note { margin-top: var(--s3); max-width: 30ch; color: var(--ink-soft); }

.menu__list { border-top: 1px solid var(--ink); }

.dish {
  padding-block: var(--s3);
  border-bottom: 1px solid var(--line);
}

.dish__name {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  line-height: 1.1;
}
.dish__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-0.35em);
  min-width: 2rem;
}
.dish__for {
  font-style: italic;
  font-size: 0.6em;
  color: var(--rouge);
  white-space: nowrap;
}

.dish__body {
  display: grid;
  gap: var(--s2);
  margin-top: var(--s2);
  max-width: 44rem;
}
.dish__body p { color: var(--ink-soft); }

.dish__inc { display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3); }
.dish__inc li { font-size: var(--fs-small); color: var(--smoke); display: inline-flex; align-items: center; gap: 0.5rem; }
.dish__inc li::before { content: ""; width: 0.9rem; height: 1px; background: var(--rouge); }

@media (min-width: 48rem) {
  .dish__body { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); column-gap: var(--s4); }
  .dish__inc { flex-direction: column; gap: 0.35rem; }
}

@media (max-width: 30rem) {
  .dish__name { flex-wrap: wrap; }
  .dish__dots { display: none; }
  .dish__for { flex-basis: 100%; }
}

/* The morning: a path ---------------------------------------------------- */

.morning { padding: var(--block) var(--edge); }

.morning__head {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  max-width: 24ch;
  margin-bottom: var(--s5);
}
.morning__title { font-size: var(--fs-h2); }

.path {
  position: relative;
  display: grid;
  gap: var(--s4);
  padding-left: var(--s4);
}

.path__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.path__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rouge);
  transform: scaleY(0);
  transform-origin: top;
}
.no-motion .path__line span { transform: none; }

.step { position: relative; max-width: 30rem; }
.step__n {
  position: absolute;
  left: calc(var(--s4) * -1 - 0.5rem);
  top: -0.2rem;
  width: 1rem;
  text-align: right;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--rouge);
  background: var(--paper);
  padding: 0.15rem 0;
}
.step__n em { font-style: italic; }
.step__title { font-size: var(--fs-h3); }
.step__text { margin-top: var(--s2); color: var(--ink-soft); }

@media (min-width: 64rem) {
  .path { padding-left: 0; grid-template-columns: 1fr 1fr; column-gap: var(--s6); row-gap: var(--s5); }
  .path__line { left: 50%; }
  .step--left { grid-column: 1; justify-self: end; text-align: right; padding-right: var(--s5); }
  .step--right { grid-column: 2; padding-left: var(--s5); }
  .step--left .step__n { left: auto; right: -0.55rem; text-align: center; width: 1.2rem; }
  .step--right .step__n { left: -0.65rem; text-align: center; width: 1.2rem; }
  .step:nth-child(n+3) { margin-top: calc(var(--s5) * -1); }
}

/* Booking ---------------------------------------------------------------- */

.booking {
  padding: var(--block) var(--edge);
  background: var(--sand);
}

.booking__head { display: grid; gap: var(--s2); max-width: 36rem; margin-bottom: var(--s5); }
.booking__title { font-size: var(--fs-h2); }
.booking__text { color: var(--ink-soft); }

.book { display: grid; gap: var(--s5); }
@media (min-width: 64rem) {
  .book { grid-template-columns: 7fr 5fr; column-gap: var(--s6); align-items: start; }
  .book__side { position: sticky; top: var(--s5); }
}

.book__fields { display: grid; gap: var(--s4); }
.book__row { display: grid; gap: var(--s4); }
@media (min-width: 40rem) { .book__row { grid-template-columns: 1fr 1fr; } }

.book__label {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.chips { display: flex; flex-wrap: wrap; gap: var(--s2); }

.chip {
  position: relative;
  min-height: 2.9rem;
  padding: 0.65rem 1.15rem 0.65rem 2.2rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px 4px 999px 4px;
  color: var(--ink);
  font-size: var(--fs-small);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip[aria-pressed="true"]::before { background: var(--rouge); border-color: var(--rouge); }
.chip:focus-visible { outline-offset: 2px; }

.field { display: block; }
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  font-size: 1.05rem;
  resize: vertical;
  transition: border-color var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--smoke); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--rouge); border-bottom-width: 2px; }
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.field input[type="date"] { min-height: 3rem; }

/* The note: what will actually be sent, as a card. */
.note {
  position: relative;
  padding: var(--s3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px 4px 4px 22px;
  box-shadow: 0 30px 50px -35px rgba(27, 21, 22, 0.45);
}
.note__head { font-family: var(--serif); color: var(--rouge); margin-bottom: var(--s2); font-size: var(--fs-tag); }
.note__line { padding: 0.3rem 0; line-height: 1.5; }
.note__line[hidden] { display: none; }
.note__line--service { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.note__line.is-fresh { background: linear-gradient(90deg, rgba(158, 63, 56, 0.14), transparent 70%); }

/* A chip on its way into the note. */
.fly {
  position: fixed;
  z-index: 400;
  pointer-events: none;
  padding: 0.4rem 0.9rem;
  border-radius: 999px 4px 999px 4px;
  background: var(--ink);
  color: var(--paper);
  font-size: var(--fs-small);
  white-space: nowrap;
}

.send {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  width: 100%;
  min-height: 3.4rem;
  margin-top: var(--s3);
  padding: 0.9rem 1.4rem;
  background: var(--rouge);
  color: var(--paper);
  border: 0;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.send:hover { background: var(--rouge-deep); }
.send:active { transform: scale(0.99); }

.book__after { margin-top: var(--s2); font-size: var(--fs-small); color: var(--ink-soft); }
.book__after a { color: var(--rouge); }
.book__direct { margin-top: var(--s3); font-size: var(--fs-small); color: var(--smoke); }
.book__direct a { color: var(--ink); }

/* Footer ----------------------------------------------------------------- */

.foot {
  padding: var(--s5) var(--edge) calc(var(--s5) + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2) var(--s4);
  font-size: var(--fs-small);
  color: var(--smoke);
  border-top: 1px solid var(--ink);
}
.foot__brand { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.02em; }
@media (max-width: 63.99rem) { .foot { padding-bottom: calc(var(--s5) + 4.5rem + env(safe-area-inset-bottom)); } }

/* Dock: the phone control ------------------------------------------------ */

.dock {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 95;
  display: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 40px -18px rgba(27, 21, 22, 0.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.dock.is-in { transform: none; opacity: 1; }
@media (max-width: 63.99rem) { .js .dock { display: inline-flex; } }

.dock__btn {
  display: inline-flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
}
.dock__btn + .dock__btn { border-left: 1px solid rgba(247, 241, 235, 0.25); }
.dock__btn--book { color: var(--skin); font-style: italic; }

/* The sheet: full menu on phones. */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--s4) var(--edge) calc(var(--s4) + env(safe-area-inset-bottom));
  background: var(--paper);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.sheet[hidden] { display: none; }
.sheet.open { opacity: 1; }

.sheet__close {
  position: absolute;
  top: var(--s3);
  right: var(--edge);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.sheet__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 20vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: auto;
}
.sheet nav { display: grid; }
.sheet__link {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.8rem);
  text-decoration: none;
}
.sheet__link i { font-style: italic; font-size: 0.5em; color: var(--rouge); }
.sheet__foot { margin-top: var(--s4); font-family: var(--serif); color: var(--smoke); }

/* Motion hooks ------------------------------------------------------------ */

.js .hero__portrait img { clip-path: inset(0 round var(--oval)); }

/* Reduced motion --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
