@layer reset, base, components, sections, utilities, responsive;

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

  html {
    scroll-behavior: smooth;
  }

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

  img,
  svg {
    display: block;
  }

  img {
    max-width: 100%;
  }

  button,
  a {
    font: inherit;
  }
}

@layer base {
  :root {
    --ink: #251913;
    --ink-soft: #4b3a31;
    --cream: #f1e9dc;
    --cream-deep: #e8ddcc;
    --paper: #f8f3e9;
    --olive: #758148;
    --olive-dark: #4f5a2d;
    --ember: #b44b2c;
    --white: #fffaf0;
    --line: rgba(37, 25, 19, 0.2);
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --pad: clamp(1.25rem, 4vw, 4.5rem);
    --max: 1600px;
  }

  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  ::selection {
    color: var(--white);
    background: var(--olive-dark);
  }

  :focus-visible {
    outline: 2px solid var(--ember);
    outline-offset: 4px;
  }

  .skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.65rem 1rem;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
  }

  .skip-link:focus {
    transform: translateY(0);
  }
}

@layer components {
  .section-pad {
    padding-inline: max(var(--pad), calc((100vw - var(--max)) / 2));
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .eyebrow span {
    width: 2.5rem;
    height: 1px;
    background: currentColor;
  }

  .section-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 2rem;
    border-bottom: 1px solid var(--line);
  }

  .section-count {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
  }

  .button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button-light {
    color: var(--ink);
    background: var(--white);
  }

  .button-light:hover {
    color: var(--white);
    background: var(--olive-dark);
  }

  .button-dark {
    color: var(--white);
    background: var(--ink);
  }

  .text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .text-link svg,
  .header-action svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 180ms ease;
  }

  .text-link:hover svg,
  .header-action:hover svg {
    transform: translateX(4px);
  }

  .text-link-light {
    color: var(--white);
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .brand img {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 50%;
    object-fit: cover;
  }

  .brand span {
    display: grid;
    line-height: 1;
  }

  .brand strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .brand small {
    margin-top: 0.38rem;
    font-size: 0.55rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@layer sections {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.25rem var(--pad);
    color: var(--white);
    transition: color 220ms ease, background-color 220ms ease, padding 220ms ease, box-shadow 220ms ease;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding-block: 0.65rem;
    color: var(--ink);
    background: rgba(241, 233, 220, 0.94);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(16px);
  }

  .primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
  }

  .primary-navigation a,
  .header-action {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .primary-navigation a {
    position: relative;
    padding-block: 0.6rem;
  }

  .primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
  }

  .primary-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-action {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    position: relative;
    display: flex;
    min-height: max(760px, 100svh);
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
  }

  .hero-media,
  .hero-wash,
  .hero-grain {
    position: absolute;
    inset: 0;
  }

  .hero-media {
    z-index: -4;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    scale: 1.025;
    animation: hero-in 1.4s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  .hero-wash {
    z-index: -3;
    background:
      linear-gradient(90deg, rgba(22, 13, 9, 0.82) 0%, rgba(22, 13, 9, 0.48) 46%, rgba(22, 13, 9, 0.15) 74%),
      linear-gradient(0deg, rgba(22, 13, 9, 0.72) 0%, transparent 54%);
  }

  .hero-grain {
    z-index: -2;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
  }

  .hero-content {
    width: min(100%, var(--max));
    margin-inline: auto;
    padding: 9rem var(--pad) 5.25rem;
  }

  .hero-eyebrow {
    margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
  }

  .hero h1 {
    max-width: 13ch;
    font-family: var(--serif);
    font-size: clamp(4rem, 10.8vw, 10.75rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.78;
  }

  .hero h1 em,
  .story h2 em,
  .flavours h2 em,
  .visit h2 em {
    color: #d7d99c;
    font-weight: 400;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: minmax(18rem, 28rem) 1fr;
    align-items: end;
    gap: 3rem;
    margin-top: clamp(2.5rem, 7vh, 5rem);
    padding-left: clamp(0rem, 15vw, 15rem);
  }

  .hero-bottom > p {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    line-height: 1.45;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.25rem, 3vw, 2.75rem);
  }

  .hero-year {
    position: absolute;
    top: 50%;
    right: var(--pad);
    font-family: var(--serif);
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 0.18em;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
  }

  .scroll-cue {
    position: absolute;
    bottom: 1.6rem;
    left: var(--pad);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .scroll-cue span {
    width: 1px;
    height: 1.8rem;
    background: currentColor;
    transform-origin: top;
    animation: scroll-line 1.7s ease-in-out infinite;
  }

  .heritage-strip {
    display: grid;
    max-width: var(--max);
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    margin-inline: auto;
    padding: 2.4rem var(--pad);
    background: var(--cream);
  }

  .heritage-strip article {
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    text-align: center;
  }

  .heritage-strip strong {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .heritage-strip span {
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .heritage-strip i {
    width: 1px;
    height: 2.8rem;
    background: var(--line);
  }

  .story {
    padding-bottom: clamp(6rem, 12vw, 11rem);
    background: var(--paper);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1.15fr minmax(20rem, 0.8fr) 0.35fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: start;
    padding-top: clamp(4rem, 8vw, 8rem);
  }

  .story h2,
  .flavours h2,
  .visit h2 {
    font-family: var(--serif);
    font-size: clamp(3.25rem, 6.7vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 0.88;
  }

  .story h2 em {
    color: var(--olive-dark);
  }

  .story-body {
    display: grid;
    max-width: 39rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: clamp(3rem, 5vw, 5rem) 0 2.5rem;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .story-photo {
    margin-top: clamp(3rem, 8vw, 9rem);
  }

  .story-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.02);
  }

  .story-photo figcaption {
    display: grid;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.4;
  }

  .story-mark {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    color: var(--olive-dark);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
  }

  .story-mark img {
    width: clamp(5rem, 8vw, 7.5rem);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: sepia(0.15);
  }

  .flavours {
    padding-bottom: clamp(6rem, 10vw, 10rem);
    color: var(--white);
    background: var(--ink);
  }

  .section-intro-light {
    border-color: rgba(255, 250, 240, 0.22);
  }

  .flavours-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 4rem;
    padding-block: clamp(4rem, 8vw, 8rem);
  }

  .flavours-heading > p {
    max-width: 31rem;
    padding-bottom: 0.75rem;
    color: rgba(255, 250, 240, 0.7);
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .dish-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .dish-card {
    position: relative;
    min-height: clamp(22rem, 40vw, 36rem);
    isolation: isolate;
    overflow: hidden;
    background: #3c2a21;
  }

  .dish-card-wide {
    grid-row: span 2;
    min-height: clamp(48rem, 70vw, 66rem);
  }

  .dish-card-tall {
    min-height: clamp(28rem, 41vw, 39rem);
  }

  .dish-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(0deg, rgba(19, 11, 8, 0.72), transparent 52%);
    content: "";
  }

  .dish-card img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
  }

  .dish-card-wide img {
    object-position: 57% center;
  }

  .dish-card:hover img {
    scale: 1.045;
    filter: saturate(1.08);
  }

  .dish-number,
  .dish-arrow {
    position: absolute;
    top: 1.4rem;
    font-family: var(--serif);
    font-size: 0.8rem;
    font-style: italic;
  }

  .dish-number {
    left: 1.4rem;
  }

  .dish-arrow {
    right: 1.4rem;
    display: grid;
    width: 2.5rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 1rem;
    font-style: normal;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .dish-card:hover .dish-arrow {
    color: var(--ink);
    background: var(--white);
    transform: rotate(45deg);
  }

  .dish-name {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    display: grid;
  }

  .dish-name strong {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .dish-name small {
    margin-top: 0.55rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .dish-note {
    display: grid;
    min-height: 18rem;
    align-content: space-between;
    padding: clamp(1.8rem, 4vw, 3.5rem);
    color: var(--ink);
    background: var(--olive);
  }

  .dish-note p {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.6vw, 2.75rem);
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.18;
  }

  .dish-note span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: clamp(3rem, 6vw, 6rem);
    padding-block: 1.4rem;
    border-block: 1px solid rgba(255, 250, 240, 0.22);
    font-family: var(--serif);
    font-size: clamp(1rem, 1.45vw, 1.3rem);
    font-style: italic;
  }

  .menu-line i {
    width: 0.25rem;
    height: 0.25rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--olive);
  }

  .instagram {
    padding-bottom: clamp(6rem, 11vw, 11rem);
    background: var(--cream-deep);
  }

  .instagram-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
  }

  .instagram-heading p {
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .instagram-heading h2 {
    font-family: var(--serif);
    font-size: clamp(2.7rem, 6.5vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    border: 1px solid var(--ink);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
  }

  .instagram-follow:hover {
    color: var(--white);
    background: var(--ink);
  }

  .instagram-follow svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
  }

  .instagram-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-rows: repeat(2, clamp(15rem, 24vw, 26rem));
    gap: 0.75rem;
  }

  .insta-tile {
    position: relative;
    overflow: hidden;
    background: #cabda9;
  }

  .insta-tile-large {
    grid-row: span 2;
  }

  .insta-tile-wide {
    grid-column: span 2;
  }

  .insta-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 650ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 250ms ease;
  }

  .insta-tile-wide img {
    object-position: center 57%;
  }

  .insta-tile:hover img {
    scale: 1.045;
    filter: brightness(0.82);
  }

  .insta-tile > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 2.4rem;
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .insta-tile:hover > span {
    opacity: 1;
    transform: translateY(0);
  }

  .visit {
    position: relative;
    min-height: 800px;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
  }

  .visit-media,
  .visit-overlay {
    position: absolute;
    inset: 0;
  }

  .visit-media {
    z-index: -2;
  }

  .visit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .visit-overlay {
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(24, 15, 11, 0.9), rgba(24, 15, 11, 0.58) 58%, rgba(24, 15, 11, 0.28)),
      linear-gradient(0deg, rgba(24, 15, 11, 0.85), transparent 60%);
  }

  .visit-content {
    display: flex;
    min-height: 800px;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(6rem, 10vw, 10rem);
  }

  .visit h2 {
    max-width: 11ch;
    margin: 2.5rem 0 clamp(4rem, 8vw, 7rem);
  }

  .visit-details {
    display: grid;
    max-width: 68rem;
    grid-template-columns: 1.2fr 0.75fr 1fr;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 250, 240, 0.32);
  }

  .visit-details article {
    display: grid;
    align-content: start;
    gap: 1.1rem;
  }

  .visit-details article > span {
    color: rgba(255, 250, 240, 0.62);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .visit-details p,
  .visit-phone {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    line-height: 1.45;
  }

  .visit-phone {
    width: fit-content;
  }

  .site-footer {
    padding: clamp(4rem, 8vw, 7rem) var(--pad) 2rem;
    color: var(--cream);
    background: #17100d;
  }

  .footer-top,
  .footer-bottom {
    max-width: var(--max);
    margin-inline: auto;
  }

  .footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: clamp(4rem, 8vw, 8rem);
  }

  .brand-footer img {
    width: 4rem;
    height: 4rem;
  }

  .brand-footer strong {
    font-size: clamp(2rem, 4vw, 3.7rem);
  }

  .brand-footer small {
    font-size: 0.6rem;
  }

  .footer-top > p {
    color: rgba(241, 233, 220, 0.65);
    font-family: var(--serif);
    font-size: clamp(1rem, 1.7vw, 1.45rem);
    font-style: italic;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(241, 233, 220, 0.2);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .footer-bottom div {
    display: flex;
    gap: 2rem;
  }

  .footer-bottom a:hover {
    color: #d7d99c;
  }

  .not-found {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 2rem;
    background: var(--paper);
  }

  .not-found main {
    display: grid;
    justify-items: center;
    gap: 1.4rem;
    text-align: center;
  }

  .not-found img {
    border-radius: 50%;
  }

  .not-found p {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
  }

  .not-found h1 {
    font-family: var(--serif);
    font-size: clamp(2.7rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.05em;
  }
}

@layer utilities {
  @keyframes hero-in {
    from {
      opacity: 0;
      scale: 1.1;
    }
    to {
      opacity: 1;
      scale: 1.025;
    }
  }

  @keyframes scroll-line {
    0%,
    100% {
      transform: scaleY(0.2);
    }
    50% {
      transform: scaleY(1);
    }
  }
}

@layer responsive {
  @media (max-width: 1100px) {
    .site-header {
      grid-template-columns: 1fr auto;
    }

    .primary-navigation {
      display: none;
    }

    .header-action {
      grid-column: 2;
      grid-row: 1;
    }

    .story-grid {
      grid-template-columns: 1.1fr 0.75fr;
    }

    .story-mark {
      display: none;
    }

    .instagram-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(2, clamp(18rem, 40vw, 30rem));
    }

    .insta-tile-large {
      grid-row: auto;
    }

    .insta-tile-wide {
      grid-column: auto;
    }
  }

  @media (max-width: 780px) {
    :root {
      --pad: 1.15rem;
    }

    .site-header {
      grid-template-columns: 1fr auto;
      padding-block: 0.75rem;
    }

    .site-header .brand small {
      display: none;
    }

    .site-header .brand img {
      width: 2.65rem;
      height: 2.65rem;
    }

    .site-header .brand strong {
      font-size: 1.2rem;
    }

    .header-action {
      display: none;
    }

    .menu-toggle {
      position: relative;
      z-index: 102;
      display: grid;
      width: 2.75rem;
      height: 2.75rem;
      place-content: center;
      gap: 0.42rem;
      justify-self: end;
      border: 1px solid currentColor;
      border-radius: 50%;
      color: inherit;
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 1rem;
      height: 1px;
      background: currentColor;
      transition: transform 180ms ease;
    }

    .site-header.is-open .menu-toggle span:first-child {
      transform: translateY(4px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:last-child {
      transform: translateY(-4px) rotate(-45deg);
    }

    .site-header.is-open {
      color: var(--ink);
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .site-header.is-open .primary-navigation {
      position: fixed;
      inset: 0;
      z-index: 101;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      flex-direction: column;
      gap: 1rem;
      padding: 6.5rem var(--pad) 3rem;
      overflow-y: auto;
      color: var(--ink);
      background: var(--cream);
    }

    .site-header.is-open .primary-navigation a {
      width: 100%;
      padding-block: 0.7rem;
      border-bottom: 1px solid var(--line);
      font-family: var(--serif);
      font-size: clamp(2.5rem, 13vw, 4.5rem);
      font-weight: 400;
      letter-spacing: -0.05em;
      text-transform: none;
    }

    .hero {
      min-height: max(680px, 100svh);
    }

    .hero-content {
      padding-top: 7rem;
      padding-bottom: 4.5rem;
    }

    .hero-media img {
      object-position: 62% center;
    }

    .hero-wash {
      background:
        linear-gradient(90deg, rgba(22, 13, 9, 0.7), rgba(22, 13, 9, 0.2)),
        linear-gradient(0deg, rgba(22, 13, 9, 0.9), transparent 68%);
    }

    .hero h1 {
      font-size: clamp(3.9rem, 20vw, 7rem);
      line-height: 0.82;
    }

    .hero-bottom {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
      padding-left: 0;
    }

    .hero-bottom > p {
      max-width: 30rem;
    }

    .hero-actions {
      justify-content: flex-start;
    }

    .hero-year,
    .scroll-cue {
      display: none;
    }

    .heritage-strip {
      grid-template-columns: 1fr;
      gap: 1.3rem;
      padding-block: 2.5rem;
    }

    .heritage-strip i {
      width: 3rem;
      height: 1px;
      justify-self: center;
    }

    .section-intro {
      padding-block: 1.4rem;
    }

    .story-grid {
      grid-template-columns: 1fr;
      padding-top: 4rem;
    }

    .story h2,
    .flavours h2,
    .visit h2 {
      font-size: clamp(3.1rem, 15vw, 5.4rem);
    }

    .story-body {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .story-photo {
      max-width: 32rem;
      margin-top: 2rem;
      margin-left: auto;
    }

    .flavours-heading {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-block: 4rem;
    }

    .dish-grid {
      grid-template-columns: 1fr;
    }

    .dish-card,
    .dish-card-wide,
    .dish-card-tall {
      grid-row: auto;
      min-height: 29rem;
    }

    .dish-card-wide img {
      object-position: 59% center;
    }

    .dish-name strong {
      font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .menu-line {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.75rem;
    }

    .menu-line i {
      display: none;
    }

    .instagram-heading {
      align-items: flex-start;
      flex-direction: column;
      padding-block: 3.5rem;
    }

    .instagram-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(2, 56vw);
    }

    .insta-tile > span {
      opacity: 1;
      transform: none;
    }

    .visit,
    .visit-content {
      min-height: auto;
    }

    .visit-content {
      padding-block: 6rem;
    }

    .visit-details {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .footer-top,
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }

    .brand-footer strong {
      font-size: 2rem;
    }

    .footer-bottom div {
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
    }
  }

  @media (max-width: 500px) {
    .hero-actions {
      align-items: flex-start;
      flex-direction: column;
      gap: 1.4rem;
    }

    .instagram-grid {
      grid-template-columns: 1fr;
      grid-template-rows: none;
    }

    .insta-tile {
      aspect-ratio: 1 / 1;
    }

    .insta-tile-large {
      aspect-ratio: 4 / 5;
    }

    .site-footer {
      padding-inline: var(--pad);
    }
  }

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

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