@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --font-display: "Cormorant Garamond";
  --font-sans: "Manrope";
  --night: #151311;
  --night-soft: #211d1a;
  --wine: #40241f;
  --copper: #c88758;
  --copper-light: #e4b990;
  --cream: #f1e8db;
  --paper: #f8f4ed;
  --ink: #211c18;
  --muted: #776d64;
  --line: rgba(35, 28, 23, 0.17);
  --white: #fffdfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.shell {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 22px;
  color: #985f3c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--copper-light);
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1050px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(14, 12, 11, 0.96) 0%,
      rgba(18, 15, 13, 0.83) 35%,
      rgba(18, 15, 13, 0.25) 69%,
      rgba(18, 15, 13, 0.38) 100%
    ),
    linear-gradient(0deg, rgba(14, 12, 11, 0.86) 0%, transparent 30%);
}

.site-header {
  position: relative;
  z-index: 5;
  height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  justify-self: start;
  font-family: var(--font-display), serif;
  font-size: clamp(2.25rem, 3vw, 3.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand span,
.footer-brand > a span {
  color: var(--copper-light);
  font-style: italic;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 54px);
}

.desktop-nav a {
  position: relative;
  padding-block: 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-book {
  justify-self: end;
  min-height: 47px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.header-book:hover {
  border-color: var(--copper-light);
  background: rgba(200, 135, 88, 0.12);
}

.mobile-menu {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 112px - 120px);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(700px, 55%);
  padding: 50px 0 24px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(5.6rem, 9vw, 10rem);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--copper-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 500px;
  margin: 42px 0 0;
  color: rgba(255, 253, 250, 0.78);
  font-size: clamp(0.96rem, 1.15vw, 1.12rem);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-button,
.outline-button {
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.primary-button {
  color: #1c1511;
  background: var(--copper-light);
}

.primary-button:hover {
  background: #f1caa5;
  transform: translateY(-2px);
}

.text-button {
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-button:hover {
  color: var(--copper-light);
  border-color: var(--copper-light);
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.hero-meta > div,
.hero-meta > a {
  padding-inline: clamp(22px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-meta > :first-child {
  padding-left: 0;
}

.hero-meta > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-family: var(--font-display), serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.hero-meta a {
  transition: background 180ms ease;
}

.hero-meta a:hover {
  background: rgba(200, 135, 88, 0.12);
}

.intro-section {
  padding-block: 150px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.2fr 1.18fr 0.62fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.section-number {
  align-self: start;
  color: #aa7350;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
}

.intro-title h2,
.menu-heading h2 {
  max-width: 770px;
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(3.5rem, 5.8vw, 6.6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.intro-copy {
  padding-bottom: 10px;
}

.intro-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.intro-copy a,
.menu-heading > a {
  padding-bottom: 7px;
  border-bottom: 1px solid #9b6947;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #774727;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-section {
  padding-block: 145px;
  color: var(--white);
  background: var(--night-soft);
}

.signature-section > .shell {
  display: grid;
  grid-template-columns: 1.17fr 0.83fr;
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}

.signature-image {
  position: relative;
}

.signature-image img {
  width: 100%;
  min-height: 670px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(0.88) contrast(1.05);
}

.image-label {
  position: absolute;
  right: -44px;
  bottom: 46px;
  min-width: 220px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  background: rgba(21, 19, 17, 0.86);
  backdrop-filter: blur(12px);
}

.image-label span {
  margin-bottom: 7px;
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-label strong {
  font-family: var(--font-display), serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.signature-copy h2 {
  margin: 0 0 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(3.7rem, 5.5vw, 6.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.signature-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 253, 250, 0.62);
  font-size: 0.89rem;
  line-height: 1.9;
}

.feature-list {
  margin-block: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list > div {
  padding-block: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
}

.feature-list span {
  color: var(--copper-light);
  font-family: var(--font-display), serif;
  font-size: 1.05rem;
}

.feature-list strong {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: transparent;
}

.outline-button:hover {
  border-color: var(--copper-light);
  color: var(--night);
  background: var(--copper-light);
  transform: translateY(-2px);
}

.outline-button.dark {
  border-color: rgba(34, 27, 22, 0.4);
  color: var(--ink);
}

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

.menu-section {
  padding-block: 150px;
}

.menu-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}

.menu-heading h2 {
  max-width: 920px;
}

.menu-heading > a {
  margin-bottom: 10px;
  white-space: nowrap;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-row {
  min-height: 154px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.13fr 0.94fr 1fr auto;
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  transition:
    padding 190ms ease,
    background 190ms ease;
}

.menu-row:hover {
  padding-inline: 18px;
  background: rgba(209, 174, 140, 0.12);
}

.menu-index {
  color: #9b6947;
  font-family: var(--font-display), serif;
  font-size: 1.2rem;
}

.menu-row > div > p {
  margin: 0 0 7px;
  color: #a26c47;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-row h3 {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.menu-description {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
}

.menu-row > strong {
  min-width: 95px;
  text-align: right;
  color: #744829;
  font-family: var(--font-display), serif;
  font-size: 2.15rem;
  font-weight: 500;
}

.menu-row > strong small {
  font-family: var(--font-sans), sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
}

.coffee-story {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--cream);
}

.coffee-image {
  min-height: 820px;
  overflow: hidden;
}

.coffee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-copy {
  padding: 110px clamp(52px, 8vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coffee-copy h2 {
  max-width: 610px;
  margin: 0 0 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(4rem, 6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.coffee-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.95;
}

.coffee-prices {
  margin-top: 40px;
  border-top: 1px solid rgba(35, 28, 23, 0.2);
}

.coffee-prices > div {
  padding-block: 17px;
  border-bottom: 1px solid rgba(35, 28, 23, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.78rem;
}

.coffee-prices i {
  height: 1px;
  flex: 1;
  background-image: linear-gradient(
    90deg,
    rgba(35, 28, 23, 0.3) 45%,
    transparent 45%
  );
  background-size: 7px 1px;
}

.coffee-prices strong {
  color: #75492d;
}

.booking-section {
  padding-block: 150px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(200, 135, 88, 0.13), transparent 25rem),
    var(--wine);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 60px;
}

.booking-copy h2 {
  max-width: 570px;
  margin: 0 0 30px;
  font-family: var(--font-display), serif;
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.84rem;
  line-height: 1.9;
}

.booking-phone {
  margin-block: 38px;
  min-height: 108px;
  padding: 22px 27px;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  transition: background 180ms ease;
}

.booking-phone:hover {
  background: rgba(255, 255, 255, 0.06);
}

.booking-phone span,
.booking-phone strong {
  grid-column: 1;
}

.booking-phone span {
  margin-bottom: 4px;
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-phone strong {
  font-family: var(--font-display), serif;
  font-size: 2.1rem;
  font-weight: 500;
}

.booking-phone i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--copper-light);
  font-size: 1.45rem;
  font-style: normal;
}

.hours > p {
  margin: 0 0 12px;
  color: var(--copper-light);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hours > div {
  padding-block: 11px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
}

.hours i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
}

.hours strong {
  color: var(--white);
}

.booking-form {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
  background: rgba(20, 13, 11, 0.25);
}

.booking-website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date-selects {
  display: grid;
  grid-template-columns: minmax(74px, 0.72fr) minmax(0, 1.45fr);
  gap: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.8rem;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field select {
  background-color: #35211c;
}

.field select option {
  color: #ffffff;
  background-color: #2a1814;
  font-size: 0.95rem;
}

.field select option:checked {
  color: #ffffff;
  background-color: #9b5939;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-light);
  background: rgba(255, 255, 255, 0.055);
}

.guest-stepper {
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.025);
}

.guest-stepper button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--copper-light);
  background: rgba(255, 255, 255, 0.035);
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.guest-stepper button:hover:not(:disabled),
.guest-stepper button:focus-visible {
  color: var(--white);
  background: rgba(200, 135, 88, 0.18);
}

.guest-stepper button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-stepper output {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.field-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  line-height: 1.55;
}

.form-button {
  width: 100%;
  margin-top: 5px;
}

.form-button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.form-note {
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  line-height: 1.6;
  text-align: center;
}

.contact-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  background: var(--paper);
}

.contact-copy {
  padding: 110px clamp(48px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 {
  max-width: 510px;
  margin: 0 0 34px;
  font-family: var(--font-display), serif;
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.contact-copy address {
  margin-bottom: 25px;
  font-family: var(--font-display), serif;
  font-size: 1.45rem;
  font-style: normal;
  line-height: 1.45;
}

.contact-links {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #73472b;
  font-size: 0.78rem;
  font-weight: 700;
}

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 680px;
  border: 0;
}

.map-frame {
  filter: grayscale(0.45) sepia(0.12);
}

.takeaway-strip {
  padding-block: 52px;
  color: var(--white);
  background: var(--copper);
}

.takeaway-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.takeaway-strip p {
  margin: 0;
  font-family: var(--font-display), serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.takeaway-strip p span {
  margin-bottom: 7px;
  display: block;
  color: rgba(31, 23, 18, 0.66);
  font-family: var(--font-sans), sans-serif;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.takeaway-strip a {
  min-height: 53px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.takeaway-strip a:hover {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  padding-block: 95px 30px;
  color: var(--white);
  background: var(--night);
}

.footer-grid {
  padding-bottom: 74px;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand > a {
  font-family: var(--font-display), serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 7px 0 24px;
  color: var(--copper-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid p,
.footer-grid > div:not(.footer-brand) a {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.61rem;
  letter-spacing: 0.06em;
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 56px, 1000px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 50px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 20px;
    height: 1px;
    background: var(--white);
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 20;
    top: 56px;
    right: 0;
    width: 220px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    color: var(--white);
    background: rgba(21, 19, 17, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu nav a {
    padding: 12px 11px;
    font-size: 0.78rem;
  }

  .intro-section {
    grid-template-columns: 0.12fr 1fr;
  }

  .intro-copy {
    grid-column: 2;
    max-width: 600px;
  }

  .signature-section > .shell {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .signature-image img {
    min-height: 610px;
  }

  .image-label {
    right: -20px;
  }

  .menu-row {
    grid-template-columns: 0.12fr 0.85fr 1fr auto;
    gap: 25px;
  }

  .coffee-story {
    min-height: 700px;
    grid-template-columns: 1fr 1fr;
  }

  .coffee-image {
    min-height: 700px;
  }

  .coffee-copy {
    padding-inline: 50px;
  }

  .booking-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }

  .booking-form {
    padding: 38px;
  }

  .contact-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .contact-copy {
    padding-inline: 45px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 36px, 640px);
  }

  .hero {
    min-height: 780px;
    height: 100svh;
    max-height: 880px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 12, 11, 0.94), rgba(14, 12, 11, 0.42)),
      linear-gradient(0deg, rgba(14, 12, 11, 0.94), transparent 45%);
  }

  .site-header {
    height: 86px;
  }

  .brand {
    font-size: 2.35rem;
  }

  .hero-content {
    height: calc(100% - 86px - 152px);
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(4.9rem, 22vw, 7.2rem);
  }

  .hero-lead {
    max-width: 400px;
    margin-top: 33px;
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 20px;
  }

  .primary-button,
  .outline-button {
    min-height: 54px;
    padding-inline: 20px;
    gap: 20px;
  }

  .text-button {
    gap: 14px;
  }

  .hero-meta {
    height: 152px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta > div,
  .hero-meta > a {
    padding-inline: 18px;
  }

  .hero-meta > :first-child {
    padding-left: 0;
  }

  .hero-meta > :last-child {
    display: none;
  }

  .hero-meta strong {
    font-size: 0.98rem;
  }

  .intro-section {
    padding-block: 92px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-number {
    display: none;
  }

  .intro-title h2,
  .menu-heading h2 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .intro-copy {
    grid-column: 1;
  }

  .signature-section {
    padding-block: 88px;
  }

  .signature-section > .shell {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .signature-image {
    width: calc(100% - 12px);
  }

  .signature-image img {
    min-height: 490px;
  }

  .image-label {
    right: -12px;
    bottom: -32px;
    min-width: 205px;
  }

  .signature-copy h2,
  .booking-copy h2,
  .contact-copy h2 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .menu-section {
    padding-block: 95px;
  }

  .menu-heading {
    margin-bottom: 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-heading > a {
    justify-self: start;
  }

  .menu-row {
    min-height: auto;
    padding-block: 28px;
    grid-template-columns: 38px 1fr auto;
    gap: 14px;
  }

  .menu-row:hover {
    padding-inline: 8px;
  }

  .menu-description {
    grid-column: 2 / -1;
    max-width: 450px;
  }

  .menu-row > strong {
    min-width: 68px;
    font-size: 1.8rem;
  }

  .coffee-story {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .coffee-image {
    min-height: 500px;
  }

  .coffee-copy {
    padding: 90px 22px;
  }

  .coffee-copy h2 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .booking-section {
    padding-block: 95px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .booking-copy {
    position: static;
  }

  .booking-form {
    padding: 27px 20px;
    grid-template-columns: 1fr;
  }

  .booking-form .field {
    grid-column: 1;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 90px 22px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 470px;
  }

  .takeaway-strip {
    padding-block: 45px;
  }

  .takeaway-strip .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .takeaway-strip a {
    width: 100%;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
}

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

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