:root {
  --teal: #40837c;
  --teal-deep: #27635f;
  --ink: #1f2927;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --parchment: #f6ecd2;
  --parchment-deep: #ead8af;
  --rose: #b7776b;
  --gold: #b89254;
  --line: rgba(31, 41, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--parchment);
  font-family: "Cormorant Garamond", Georgia, serif;
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, auto;
}

a {
  color: inherit;
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
  text-decoration: none;
}

.script-name {
  display: inline-block;
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-weight: 400;
  line-height: 0.8;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(31, 41, 39, 0.62), rgba(31, 41, 39, 0));
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  gap: 0;
  line-height: 0.86;
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
}

.header-brand-group {
  display: grid;
  justify-items: start;
  gap: 5px;
  flex: 0 1 auto;
}

.brand-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.62rem, 1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
}

.brand-contact a {
  color: inherit;
  border-bottom: 1px dotted currentColor;
  opacity: 0.86;
}

.brand-contact a:hover,
.brand-contact a:focus-visible {
  opacity: 1;
  outline: none;
}

.brand-lockup {
  display: grid;
  justify-items: start;
  gap: 0;
  line-height: 0.86;
}

.brand-lockup .script-name {
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-weight: 400;
}

.brand-lockup small {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand .script-name {
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
}

.brand small {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
}

.primary-nav {
  gap: clamp(10px, 1.5vw, 22px);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0.025em;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 253, 248, 0.08);
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
}

.menu-toggle-line {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 360ms cubic-bezier(0.7, 0, 0.2, 1),
    opacity 220ms ease,
    top 360ms cubic-bezier(0.7, 0, 0.2, 1),
    width 360ms cubic-bezier(0.7, 0, 0.2, 1);
}

.menu-toggle-line:nth-child(1) {
  top: 16px;
}

.menu-toggle-line:nth-child(2) {
  top: 23px;
}

.menu-toggle-line:nth-child(3) {
  top: 30px;
}

.site-header.menu-open .menu-toggle-line:nth-child(1) {
  top: 23px;
  width: 24px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-header.menu-open .menu-toggle-line:nth-child(3) {
  top: 23px;
  width: 24px;
  transform: rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-weight: 800;
}

.scroll-opening {
  height: 320vh;
  background: var(--ink);
}

.opening-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(31, 41, 39, 0.28), rgba(31, 41, 39, 0.38)),
    url("images/home-background-maid-tea.png") center / cover no-repeat;
}

.opening-frame {
  position: relative;
  z-index: 1;
  width: min(90vw, 116vh);
  max-width: 90vw;
  transform: translateY(-2vh);
  border: 3px solid #fffdf8;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 2px transparent,
    0 0 0 3px #fffdf8;
}

.opening-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: inherit;
  opacity: 1;
  mix-blend-mode: normal;
}

.opening-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(132px, 16vh, 178px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  width: min(92vw, 980px);
  padding: 0;
  color: #fffdf8;
  text-align: center;
  opacity: 1;
  mix-blend-mode: normal;
  text-shadow:
    0 2px 5px rgba(31, 41, 39, 0.36),
    0 10px 26px rgba(31, 41, 39, 0.28);
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
  pointer-events: auto;
}

.opening-title:hover,
.opening-title:focus-visible {
  color: #ffffff;
  outline: none;
}

.opening-title .script-name {
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(3.5rem, 10vw, 8.2rem);
  line-height: 0.72;
  font-weight: 400;
}

.opening-title small {
  margin-top: clamp(10px, 1.5vw, 18px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 3.5vw, 3.1rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  color: #fffdf8;
  text-shadow: 0 2px 10px rgba(31, 41, 39, 0.7);
}

.opening-hint-label {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opening-hint-arrow {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  line-height: 0.72;
  text-shadow: 0 2px 7px rgba(31, 41, 39, 0.72);
  animation: scrollArrowPulse 2.8s ease-in-out infinite;
}

@keyframes scrollArrowPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: rotate(90deg) translateX(-3px) scale(0.94);
  }
  50% {
    opacity: 1;
    transform: rotate(90deg) translateX(4px) scale(1.06);
  }
}

main {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 253, 248, 0.55), transparent 32%),
    linear-gradient(180deg, #f9f0d9, var(--parchment) 42%, #efe0bd);
}

.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  padding: 130px clamp(22px, 4vw, 64px) 88px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 253, 248, 0.72), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(226, 174, 159, 0.24), transparent 28%),
    linear-gradient(180deg, #fbf2d9 0%, var(--parchment) 48%, #ead8af 100%);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 0 clamp(34px, 6vw, 88px);
  width: min(100%, 1440px);
  margin-inline: auto;
  text-align: left;
}

.hero-copy > .eyebrow,
.hero-copy > .welcome-to,
.hero-copy > .hero-lockup {
  grid-column: 1 / -1;
}

.welcome-to {
  margin: 8px 0 14px;
  color: var(--teal-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.86;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 12vw, 9rem);
}

.home-hero h1 {
  color: var(--teal-deep);
  font-size: clamp(3rem, 7vw, 5.75rem);
  text-shadow: 0 2px 0 rgba(255, 253, 248, 0.68);
}

.hero-lockup .script-name {
  font-size: clamp(3rem, 7vw, 5.75rem);
}

.hero-lockup small {
  margin-top: 10px;
  font-size: clamp(1rem, 2.2vw, 1.75rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 .script-name {
  font-size: 1.08em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.hero-history {
  max-width: none;
  margin-top: 30px;
}

.history-art-stack {
  float: right;
  width: clamp(315px, 68%, 465px);
  margin: 2px 0 18px 26px;
}

.history-house-oval {
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 6px double rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
  background: #fffdf8;
  box-shadow:
    inset 0 0 0 2px rgba(184, 151, 102, 0.5),
    inset 0 0 0 6px rgba(255, 255, 255, 0.94),
    0 12px 22px rgba(72, 48, 31, 0.24);
}

.history-house-oval img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  object-position: center 48%;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
}

.hero-history p {
  margin: 0;
  color: rgba(31, 41, 39, 0.82);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.72;
  text-shadow: none;
}

.hero-history p + p {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  color: var(--paper);
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.button.secondary {
  color: var(--teal-deep);
  background: transparent;
}

.home-hero .button.secondary {
  color: var(--teal-deep);
  border-color: var(--teal-deep);
  background: rgba(255, 253, 248, 0.28);
}

.hero-note {
  border-left: 3px solid var(--rose);
  padding: 10px 0 10px 22px;
  color: rgba(31, 41, 39, 0.82);
  text-shadow: none;
}

.hero-note strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.hero-note span {
  display: block;
  margin-top: 8px;
  line-height: 1.65;
}

.operating-hours-signage {
  align-self: center;
  width: min(100%, 620px);
  margin-top: 10px;
  padding: clamp(24px, 4vw, 42px) clamp(24px, 4vw, 48px);
  color: #fff;
  background: rgba(31, 54, 52, 0.58);
  border-top: 5px double rgba(255, 255, 255, 0.94);
  border-bottom: 5px double rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 30px rgba(72, 48, 31, 0.18);
  text-align: center;
  text-shadow: 0 2px 4px rgba(31, 41, 39, 0.46);
}

.hours-item {
  padding: 4px 0;
}

.hours-item + .hours-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 4px dotted rgba(255, 255, 255, 0.82);
}

.hours-item h2 {
  color: #fff;
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.82;
  text-shadow: 0 2px 4px rgba(31, 41, 39, 0.5);
}

.hours-item p {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(31, 41, 39, 0.46);
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(22px, 7vw, 110px);
}

.menu-band {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 253, 248, 0.72), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(226, 174, 159, 0.24), transparent 28%),
    linear-gradient(180deg, #fbf2d9 0%, var(--parchment) 48%, #ead8af 100%);
}

.menu-band .eyebrow {
  color: var(--rose);
}

.menu-band .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(31, 41, 39, 0.76);
  text-shadow: none;
}

.menu-band .section-heading h2 {
  color: var(--teal-deep);
  text-shadow: 0 2px 0 rgba(255, 253, 248, 0.58);
}

.menu-band .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading {
  max-width: 760px;
}

.menu-category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 3vw, 42px);
  width: 100%;
  margin-top: 30px;
  padding: 0 0 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.menu-category-nav::before,
.menu-category-nav::after {
  flex: 0 0 auto;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1;
  pointer-events: none;
}

.menu-category-nav::before {
  content: "➳";
  animation: menu-arrow-right 2.8s ease-in-out infinite;
}

.menu-category-nav::after {
  content: "➳";
  animation: menu-arrow-left 2.8s ease-in-out infinite;
}

@keyframes menu-arrow-right {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-3px) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translateX(3px) scale(1.08);
  }
}

@keyframes menu-arrow-left {
  0%,
  100% {
    opacity: 0.38;
    transform: rotate(180deg) translateX(-3px) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: rotate(180deg) translateX(3px) scale(1.08);
  }
}

.menu-category-nav a {
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-category-nav a:hover,
.menu-category-nav a:focus-visible {
  color: var(--rose);
  border-bottom-color: currentColor;
  outline: none;
}

.menu-catalog {
  display: grid;
  gap: 22px;
  margin-top: 54px;
}

.menu-category {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(62px, 7vw, 96px) clamp(30px, 6vw, 78px);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.88), rgba(255, 248, 226, 0.76) 56%, rgba(239, 224, 189, 0.6)),
    #fff6df;
  border: 2px solid #8a5738;
  outline: 1px solid rgba(181, 132, 86, 0.62);
  outline-offset: -8px;
  box-shadow:
    0 18px 36px rgba(87, 63, 38, 0.12),
    inset 0 0 0 5px #f8e9c6,
    inset 0 0 0 7px rgba(138, 87, 56, 0.82),
    inset 0 0 0 11px rgba(234, 194, 137, 0.58);
}

.menu-category::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 3px double rgba(112, 67, 43, 0.84);
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(148, 95, 54, 0.7) 48% 52%, transparent 52%) top 5px center / 44px 1px no-repeat,
    linear-gradient(90deg, transparent 0 48%, rgba(148, 95, 54, 0.7) 48% 52%, transparent 52%) bottom 5px center / 44px 1px no-repeat;
  box-shadow:
    inset 0 0 0 4px rgba(255, 248, 226, 0.86),
    inset 0 0 0 5px rgba(181, 132, 86, 0.48);
  pointer-events: none;
}

.menu-category::after {
  content: "❦";
  position: absolute;
  inset: 21px;
  z-index: -1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1px;
  color: #9a643e;
  border: 1px solid rgba(181, 132, 86, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 1px 0 #fff8e2;
  box-shadow: inset 0 0 18px rgba(181, 132, 86, 0.12);
  pointer-events: none;
}

.menu-category > * {
  position: relative;
  z-index: 1;
}

#breads .bread-tea-girl-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 4vw, 48px);
  right: clamp(28px, 4vw, 58px);
  display: block;
  width: clamp(105px, 13vw, 178px);
  height: auto;
  transform: rotate(-12deg);
  transform-origin: center;
  filter: drop-shadow(-3px 8px 5px rgba(72, 48, 31, 0.28));
  pointer-events: none;
}

#sandwiches .sandwich-dried-flowers {
  position: absolute;
  z-index: 2;
  top: clamp(22px, 3.5vw, 44px);
  left: clamp(22px, 3.5vw, 52px);
  display: block;
  width: clamp(135px, 17vw, 235px);
  height: auto;
  transform: rotate(-6deg);
  transform-origin: center;
  filter: drop-shadow(3px 8px 6px rgba(72, 48, 31, 0.24));
  pointer-events: none;
}

#scones .scones-peacock-roses {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 3.5vw, 44px);
  right: clamp(22px, 3.5vw, 52px);
  display: block;
  width: clamp(104px, 12.75vw, 174px);
  height: auto;
  transform: none;
  transform-origin: center;
  filter: drop-shadow(3px 8px 6px rgba(72, 48, 31, 0.24));
  pointer-events: none;
}

#desserts .desserts-tea-couple-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 3.5vw, 44px);
  left: clamp(22px, 3.5vw, 52px);
  display: block;
  width: clamp(92px, 11vw, 150px);
  height: auto;
  transform: rotate(-5deg);
  transform-origin: center;
  filter: drop-shadow(3px 8px 6px rgba(72, 48, 31, 0.24));
  pointer-events: none;
}

#quiche .quiche-eiffel-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(22px, 3.5vw, 42px);
  right: clamp(24px, 4vw, 58px);
  display: block;
  width: clamp(100px, 12vw, 168px);
  height: auto;
  transform: rotate(3deg);
  transform-origin: center;
  filter: drop-shadow(3px 8px 5px rgba(72, 48, 31, 0.26));
  pointer-events: none;
}

#soups-stew .soups-server-sticker {
  position: absolute;
  z-index: 2;
  top: clamp(24px, 3.5vw, 44px);
  left: clamp(22px, 3.5vw, 52px);
  display: block;
  width: clamp(82px, 10vw, 132px);
  height: auto;
  transform: rotate(-3deg);
  transform-origin: center;
  filter: drop-shadow(3px 8px 5px rgba(72, 48, 31, 0.25));
  pointer-events: none;
}

.beverages-hummingbird {
  position: absolute;
  z-index: 2;
  top: clamp(30px, 4vw, 54px);
  right: clamp(28px, 4.5vw, 68px);
  width: clamp(110px, 15vw, 205px);
  height: auto;
  transform: rotate(7deg);
  filter: drop-shadow(3px 5px 4px rgba(72, 48, 31, 0.24));
  pointer-events: none;
}

.menu-category-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 41, 39, 0.14);
  text-align: center;
}

.menu-category-heading h3 {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(3.1rem, 6.5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.8;
}

.menu-category-heading h3::before {
  content: "MENU";
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-section-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 980px;
}

.menu-section-nav::before,
.menu-section-nav::after {
  flex: 0 0 auto;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1;
  pointer-events: none;
}

.menu-section-nav::before {
  content: "➳";
  animation: menu-arrow-right 2.8s ease-in-out infinite;
}

.menu-section-nav::after {
  content: "➳";
  animation: menu-arrow-left 2.8s ease-in-out infinite;
}

.menu-section-nav a {
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-section-nav a:hover,
.menu-section-nav a:focus-visible {
  color: var(--teal-deep);
  outline: none;
}

.menu-list {
  columns: 2 280px;
  column-gap: clamp(26px, 5vw, 70px);
  width: 100%;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.menu-list li {
  break-inside: avoid;
  padding: 11px 0;
  border-bottom: 1px solid rgba(31, 41, 39, 0.1);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
}

.menu-list .beverage-type {
  margin-top: 15px;
  padding: 8px 0 6px;
  border-top: 1px solid rgba(144, 59, 76, 0.24);
  border-bottom: 0;
  color: var(--rose);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  break-after: avoid;
}

.menu-list .beverage-type:first-child {
  margin-top: 0;
}

.menu-list.menu-detail-list {
  max-width: 1100px;
  column-gap: clamp(34px, 5vw, 76px);
}

.menu-detail-list .menu-subcategory:first-child {
  margin-top: 0;
}

.menu-item-detail .menu-item-name {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.menu-list .menu-item-detail .menu-item-description {
  margin: 7px 0 0;
  color: rgba(31, 41, 39, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.45;
}

#beverages .beverage-menu-list {
  max-width: 1100px;
  column-gap: clamp(34px, 5vw, 76px);
}

.beverage-item .beverage-name {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.menu-list .beverage-item .beverage-description {
  margin: 7px 0 0;
  color: rgba(31, 41, 39, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.45;
}

.menu-list .tea-feature-row {
  position: relative;
  min-height: 100%;
  padding: 0 clamp(118px, 13vw, 168px) 0 0;
  border-bottom: 0;
  break-inside: avoid;
}

.tea-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tea-feature-list li:last-child {
  border-bottom: 0;
}

.tea-woman-sticker {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: auto;
  max-width: 46%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(3px 7px 4px rgba(72, 48, 31, 0.23));
  pointer-events: none;
}

.salads-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 230px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
  margin-top: 24px;
}

.salad-column {
  columns: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.salad-women-sticker {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  margin: 0 auto;
  transform: none;
  filter: drop-shadow(3px 8px 5px rgba(72, 48, 31, 0.25));
}

.reservation-section {
  background: var(--ivory);
}

.reservation-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.reservation-copy {
  max-width: 760px;
}

.reservation-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
}

.reservation-welcome,
.reservation-script-heading,
.reservation-closing {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
}

.reservation-welcome {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.reservation-required {
  color: var(--rose);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-contact-sheet {
  position: relative;
  max-width: 760px;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 3px double rgba(154, 100, 62, 0.62);
  outline: 1px solid rgba(144, 59, 76, 0.28);
  outline-offset: -11px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    var(--paper);
  box-shadow: inset 0 0 28px rgba(181, 132, 86, 0.1), 0 16px 30px rgba(72, 48, 31, 0.1);
}

.reservation-contact-sheet::before,
.reservation-contact-sheet::after {
  content: "◆";
  position: absolute;
  color: rgba(144, 59, 76, 0.62);
  font-size: 0.72rem;
}

.reservation-contact-sheet::before {
  top: 17px;
  left: 18px;
}

.reservation-contact-sheet::after {
  right: 18px;
  bottom: 17px;
}

.contact-sheet-heading {
  margin-bottom: 24px;
  text-align: center;
}

.contact-sheet-heading > span {
  color: var(--rose);
  font-size: 1.4rem;
}

.contact-sheet-heading h3 {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-sheet-heading p {
  margin-top: 8px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.contact-field {
  display: grid;
  gap: 6px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(31, 86, 82, 0.56);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
  font: 700 1rem/1.3 "Cormorant Garamond", Georgia, serif;
  text-transform: none;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--rose);
  outline: 1px dotted var(--rose);
  outline-offset: 2px;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-sheet-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 24px;
}

.contact-sheet-actions span {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-sheet-actions a {
  color: var(--rose);
  border-bottom: 1px solid currentColor;
}

.contact-sheet-note {
  margin-top: 14px;
  color: rgba(31, 41, 39, 0.72);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 30px;
}

.reservation-phone {
  color: var(--teal-deep);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.reservation-copy .button {
  margin-top: 0;
}

.reservation-information {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.reservation-block {
  max-width: 820px;
  margin: 0 auto;
}

.reservation-block p + p {
  margin-top: 14px;
}

.reservation-script-heading {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.reservation-subheading {
  color: var(--rose);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
}

.seating-times {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  color: var(--teal-deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
}

.seating-times span:not(:last-child)::after {
  content: "•";
  margin-left: 24px;
  color: var(--rose);
}

.reservation-note {
  padding: 18px clamp(18px, 3vw, 34px);
  background: rgba(144, 59, 76, 0.06);
  border: 1px dotted rgba(144, 59, 76, 0.48);
}

.reservation-divider {
  position: relative;
  width: min(50vw, 720px);
  height: 20px;
  margin: clamp(38px, 6vw, 72px) auto;
  border-top: 3px double rgba(144, 59, 76, 0.58);
  border-bottom: 1px solid rgba(154, 100, 62, 0.38);
}

.reservation-divider.compact {
  margin-block: clamp(30px, 4vw, 48px);
}

.reservation-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 14px;
  color: var(--rose);
  background: var(--ivory);
  transform: translate(-50%, -58%);
}

.reservation-details {
  max-width: 920px;
  margin: 20px auto;
  border-top: 3px double rgba(144, 59, 76, 0.48);
  border-bottom: 3px double rgba(144, 59, 76, 0.48);
  background: rgba(255, 253, 248, 0.5);
  text-align: left;
}

.reservation-details summary {
  padding: 18px 22px 18px 66px;
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-align: center;
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
}

.reservation-details,
.reservation-details * {
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, auto;
}

.reservation-details summary,
.reservation-details summary * {
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
}

.reservation-details-body {
  padding: 4px clamp(22px, 5vw, 64px) 34px;
}

.reservation-details-body p + p,
.reservation-details-body p + ul,
.reservation-details-body ul + p {
  margin-top: 16px;
}

.reservation-details-body ul:not(.event-list) {
  padding-left: 1.25rem;
}

.reservation-details-body li + li {
  margin-top: 9px;
}

.event-list {
  columns: 2 220px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.event-list li {
  break-inside: avoid;
  padding: 5px;
}

.meal-options section + section {
  margin-top: 28px;
}

.reservation-closing {
  max-width: 760px;
  margin: clamp(36px, 5vw, 60px) auto 0;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  line-height: 1;
}

.reservation-postcard {
  width: min(100%, 290px);
  margin: 0;
  justify-self: center;
  transform: rotate(-4deg);
  transform-origin: center;
  filter:
    drop-shadow(-4px 8px 5px rgba(72, 48, 31, 0.2))
    drop-shadow(0 24px 26px rgba(72, 48, 31, 0.28));
}

.reservation-postcard img {
  display: block;
  width: 100%;
  height: auto;
}

.gifts-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.88)),
    var(--paper);
}

.gifts-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.gifts-heading h2,
.gifts-closing {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-weight: 400;
}

.gifts-heading h2 {
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.85;
}

.gifts-heading p:not(.eyebrow) {
  margin-top: 16px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.gifts-divider {
  position: relative;
  width: min(50vw, 680px);
  height: 18px;
  margin: clamp(30px, 5vw, 54px) auto;
  border-top: 3px double rgba(144, 59, 76, 0.56);
  border-bottom: 1px dotted rgba(154, 100, 62, 0.56);
}

.gifts-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 14px;
  color: var(--rose);
  background: #fffdf8;
  transform: translate(-50%, -58%);
}

.gifts-introduction {
  color: var(--rose);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1;
  text-align: center;
}

.gift-catalog {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  margin: clamp(30px, 5vw, 54px) auto 0;
}

.gift-feature,
.gift-collection {
  border: 3px double rgba(154, 100, 62, 0.52);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 28px rgba(72, 48, 31, 0.08);
}

.gift-feature {
  padding: clamp(28px, 5vw, 48px);
  outline: 1px solid rgba(144, 59, 76, 0.24);
  outline-offset: -10px;
  text-align: center;
}

.gift-feature h3,
.gift-collection summary,
.gift-item h3 {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-weight: 400;
  line-height: 1;
}

.gift-feature h3 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.gift-kicker,
.gift-list-heading {
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gift-kicker {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.gift-collection summary {
  padding: 22px 24px 22px 72px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
}

.reservation-details summary,
.gift-collection summary {
  position: relative;
  list-style: none;
}

.reservation-details summary::-webkit-details-marker,
.gift-collection summary::-webkit-details-marker {
  display: none;
}

.reservation-details summary::after,
.gift-collection summary::after {
  content: "➳";
  position: absolute;
  top: 50%;
  left: 22px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1;
  transform: translateY(-50%);
  transform-origin: center;
  animation: menu-arrow-right 2.8s ease-in-out infinite;
  pointer-events: none;
}

.reservation-details[open] summary::after,
.gift-collection[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
  animation: none;
}

.gift-collection,
.gift-collection * {
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, auto;
}

.gift-collection summary,
.gift-collection summary * {
  cursor: url("images/victorian-lady-pointing-cursor-tilted.png") 46 3, pointer;
}

.gift-collection-body {
  padding: 0 clamp(22px, 5vw, 64px) 38px;
}

.gift-item {
  padding: clamp(22px, 4vw, 34px) 0;
  border-top: 1px dotted rgba(144, 59, 76, 0.42);
}

.gift-item h3 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.gift-item p {
  margin-top: 12px;
  line-height: 1.6;
}

.gift-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.stock-status {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--rose);
  border: 1px dotted currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stock-status.hostess {
  color: var(--teal-deep);
}

.gift-list-heading {
  font-size: 0.78rem;
}

.gift-flavor-list {
  columns: 3 180px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.gift-flavor-list li {
  break-inside: avoid;
  padding: 5px 0;
}

.gift-flavor-list li::before {
  content: "❦";
  margin-right: 8px;
  color: var(--rose);
  font-size: 0.72rem;
}

.gifts-closing {
  margin-top: clamp(36px, 6vw, 70px);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  text-align: center;
}

.gallery-section {
  overflow: hidden;
  color: #f7ead2;
  background:
    radial-gradient(circle at 18% 20%, rgba(151, 98, 47, 0.2), transparent 26%),
    radial-gradient(circle at 82% 75%, rgba(29, 107, 101, 0.22), transparent 30%),
    #172523;
}

.gallery-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 6vw, 66px);
  text-align: center;
}

.gallery-heading .eyebrow {
  color: #cf9b69;
}

.gallery-heading h2 {
  color: #f4dfbd;
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.85;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.24);
}

.gallery-heading p:last-child {
  margin-top: 22px;
  color: rgba(247, 234, 210, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.steampunk-gallery {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  border: 2px solid #9f6c3c;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%),
    #243432;
  box-shadow:
    inset 0 0 0 7px #172321,
    inset 0 0 0 9px rgba(193, 137, 78, 0.62),
    inset 0 0 42px rgba(0, 0, 0, 0.56),
    0 30px 70px rgba(0, 0, 0, 0.36);
}

.steampunk-gallery::before,
.steampunk-gallery::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border: 2px solid #d2a365;
  border-radius: 50%;
  background: #704321;
  box-shadow: inset 1px 1px 2px #f0c688, 0 2px 3px rgba(0, 0, 0, 0.55);
}

.steampunk-gallery::before {
  top: 11px;
  left: 11px;
}

.steampunk-gallery::after {
  right: 11px;
  bottom: 11px;
}

.gallery-viewport {
  position: relative;
  min-height: clamp(390px, 61vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(230, 188, 125, 0.72);
  background: #0d1514;
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.7);
}

@media (min-width: 821px) {
  .gallery-viewport {
    min-height: clamp(400px, 42vw, 540px);
  }
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(3%) scale(1.02);
  transition: opacity 900ms ease, transform 1100ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.gallery-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111b19;
}

.gallery-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding: 20px clamp(18px, 4vw, 42px);
  color: #f9ecd3;
  background: linear-gradient(90deg, rgba(13, 21, 20, 0.96), rgba(25, 48, 44, 0.86));
  border-top: 1px solid rgba(213, 164, 101, 0.62);
}

.gallery-slide figcaption > span {
  color: #d7a261;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gallery-slide figcaption strong {
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.2;
}

.gallery-slide figcaption .script-name {
  font-size: 1.5em;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  margin-top: 24px;
}

.gallery-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #f5dfba;
  border: 2px solid #a87641;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #77532f, #2c2520 72%);
  box-shadow: inset 0 0 0 3px #33291f, 0 4px 9px rgba(0, 0, 0, 0.42);
  font-size: 1.4rem;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-previous {
  left: clamp(25px, 3vw, 42px);
}

.gallery-previous span {
  display: block;
  transform: rotate(180deg);
}

.gallery-next {
  right: clamp(25px, 3vw, 42px);
}

.gallery-next span {
  display: block;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: #fff7e7;
  border-color: #efc27f;
  outline: none;
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 680px) {
  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .gallery-previous {
    left: 22px;
  }

  .gallery-next {
    right: 22px;
  }
}

.gallery-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 118px;
  color: #e7c58f;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gallery-indicator i {
  flex: 1;
  height: 1px;
  background: #9f6c3c;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #c18b50;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.gallery-dot.is-active {
  background: #e2b16c;
  box-shadow: 0 0 9px rgba(226, 177, 108, 0.75);
}

.gallery-flower,
.gallery-gear {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.gallery-flower {
  color: #c8797e;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 1px 2px 0 #432d28;
}

.flower-one {
  top: -22px;
  left: -18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  transform: rotate(-18deg);
}

.flower-two {
  right: -14px;
  bottom: 64px;
  color: #d39c9f;
  font-size: clamp(2.6rem, 6vw, 5rem);
  transform: rotate(12deg);
}

.gallery-gear {
  color: #9b6939;
  text-shadow: 1px 2px 0 #0b1211;
}

.gear-one {
  top: -27px;
  right: 5%;
  font-size: clamp(3.4rem, 7vw, 6rem);
  transform: rotate(17deg);
}

.gear-two {
  bottom: -22px;
  left: 4%;
  font-size: clamp(2.8rem, 6vw, 5rem);
  transform: rotate(-21deg);
}

.location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.72), transparent 36%),
    var(--ivory);
}

.location-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) clamp(26px, 7vw, 88px);
  border: 3px double rgba(154, 100, 62, 0.58);
  outline: 1px solid rgba(144, 59, 76, 0.28);
  outline-offset: -14px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    inset 0 0 40px rgba(181, 132, 86, 0.1),
    0 22px 50px rgba(72, 48, 31, 0.12);
  text-align: center;
}

.location-card::before,
.location-card::after {
  content: "❦";
  position: absolute;
  color: rgba(144, 59, 76, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.location-card::before {
  top: 20px;
  left: 24px;
}

.location-card::after {
  right: 24px;
  bottom: 20px;
  transform: rotate(180deg);
}

.location-title {
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.location-ornament {
  position: relative;
  width: min(50vw, 560px);
  height: 18px;
  margin: clamp(24px, 4vw, 38px) auto;
  border-top: 3px double rgba(144, 59, 76, 0.54);
  border-bottom: 1px dotted rgba(154, 100, 62, 0.55);
}

.location-ornament span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 14px;
  color: var(--rose);
  background: #fffdf8;
  transform: translate(-50%, -57%);
}

.location-address {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--teal-deep);
  font-style: normal;
}

.location-address strong {
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.location-address span {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card > p:not(.eyebrow, .location-reservations, .location-closing) {
  max-width: 680px;
  margin: 10px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.location-text-link {
  color: var(--rose);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.location-call-button {
  color: var(--teal-deep);
  border: 1px solid var(--teal-deep);
  background: transparent;
}

.location-parking {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px dotted rgba(144, 59, 76, 0.65);
  background: rgba(144, 59, 76, 0.055);
}

.location-parking h3 {
  margin-bottom: 10px;
  color: var(--rose);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.location-parking p + p {
  margin-top: 8px;
}

.location-reservations {
  margin-top: 34px;
  color: var(--rose);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-closing {
  margin-top: 18px;
  color: var(--teal-deep);
  font-family: "Pinyon Script", "Brush Script MT", cursive;
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  line-height: 1;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dl div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

dt {
  color: var(--teal-deep);
  font-weight: 900;
}

dd {
  margin: 6px 0 0;
  line-height: 1.6;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 7vw, 110px);
  color: var(--paper);
  background: var(--ink);
}

.design-credit {
  margin: 0;
  color: rgba(255, 246, 223, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.design-credit a {
  color: #f0b06b;
  font-weight: 700;
  text-decoration: none;
}

.design-credit a:hover,
.design-credit a:focus-visible {
  color: #ffd29d;
  text-decoration: underline;
  outline: none;
}

.footer-lockup .script-name {
  font-size: 2rem;
}

.footer-lockup small {
  margin-top: 4px;
  font-size: 0.64rem;
}

@keyframes pointBounce {
  0%,
  100% {
    transform: translateY(-2px);
    opacity: 0.72;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .header-brand-group {
    max-width: calc(100% - 70px);
  }

  .brand-contact {
    display: grid;
    gap: 1px;
    font-size: 0.62rem;
  }

  .primary-nav {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    border: 0 solid var(--line);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      max-height 360ms cubic-bezier(0.7, 0, 0.2, 1),
      opacity 220ms ease,
      transform 360ms cubic-bezier(0.7, 0, 0.2, 1),
      border-width 120ms ease;
    backdrop-filter: blur(14px);
  }

  .site-header.menu-open {
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .site-header.menu-open .primary-nav {
    max-height: 300px;
    border-width: 1px;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    min-height: 48px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(31, 41, 39, 0.1);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .scroll-opening {
    height: 260vh;
  }

  .opening-frame {
    width: 94vw;
    max-width: 94vw;
    transform: translateY(-1vh);
  }

  .opening-title {
    bottom: 138px;
  }

  .beverages-hummingbird {
    top: 32px;
    right: 24px;
    width: clamp(82px, 24vw, 118px);
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

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

  .contact-message {
    grid-column: auto;
  }

  .hero-copy {
    grid-template-columns: 1fr;
  }

  .salads-layout {
    grid-template-columns: 1fr;
  }

  .salad-women-sticker {
    width: min(62vw, 220px);
    margin-block: 12px;
  }

  .menu-list .tea-feature-row {
    padding-right: 112px;
  }

  .tea-woman-sticker {
    max-width: 104px;
  }

  .hero-copy > .eyebrow,
  .hero-copy > .welcome-to,
  .hero-copy > .hero-lockup {
    grid-column: 1;
  }

  .hero-history {
    margin-top: 12px;
  }

  .operating-hours-signage {
    margin-top: 10px;
  }

  .history-art-stack {
    float: none;
    width: min(88vw, 420px);
    margin: 8px auto 26px;
  }

  #breads .bread-tea-girl-sticker {
    top: 26px;
    right: 22px;
    width: clamp(82px, 24vw, 112px);
  }

  #sandwiches .sandwich-dried-flowers {
    top: 24px;
    left: 18px;
    width: clamp(96px, 30vw, 138px);
  }

  #scones .scones-peacock-roses {
    top: 24px;
    right: 18px;
    width: clamp(72px, 21vw, 100px);
  }

  #desserts .desserts-tea-couple-sticker {
    top: 24px;
    left: 18px;
    width: clamp(68px, 20vw, 92px);
  }

  #quiche .quiche-eiffel-sticker {
    top: 22px;
    right: 18px;
    width: clamp(76px, 22vw, 106px);
  }

  #soups-stew .soups-server-sticker {
    top: 22px;
    left: 18px;
    width: clamp(62px, 18vw, 86px);
  }

  .reservation-hero {
    grid-template-columns: 1fr;
  }

  .reservation-postcard {
    width: min(76vw, 280px);
    margin-top: 18px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .opening-hint-arrow {
    animation: none;
    transform: rotate(90deg);
  }

  .menu-category-nav::before,
  .menu-category-nav::after,
  .menu-section-nav::before,
  .menu-section-nav::after {
    animation: none;
    opacity: 0.75;
  }

  .gallery-slide {
    transition: none;
  }
}

/* Elegant Victorian gallery treatment, coordinated with the menu paper */
.gallery-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 253, 248, 0.72), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(226, 174, 159, 0.24), transparent 28%),
    linear-gradient(180deg, #fbf2d9 0%, var(--parchment) 48%, #ead8af 100%);
}

.gallery-heading .eyebrow {
  color: var(--rose);
}

.gallery-heading h2 {
  color: var(--teal-deep);
  text-shadow: 0 2px 0 rgba(255, 253, 248, 0.58);
}

.gallery-heading p:last-child {
  color: rgba(31, 41, 39, 0.78);
}

.steampunk-gallery {
  padding: clamp(30px, 4vw, 48px);
  border: 2px solid #5f4128;
  outline: 1px solid rgba(95, 65, 40, 0.72);
  outline-offset: -10px;
  background:
    linear-gradient(#aec1ad, #aec1ad) padding-box,
    #fff6df;
  box-shadow:
    0 22px 42px rgba(87, 63, 38, 0.2),
    inset 0 0 0 7px #f8efd8,
    inset 0 0 0 9px #5f4128,
    inset 0 0 0 13px #edf0df,
    inset 0 0 0 15px rgba(95, 65, 40, 0.9),
    inset 0 0 24px rgba(73, 91, 68, 0.18);
}

.steampunk-gallery::before,
.steampunk-gallery::after {
  width: auto;
  height: auto;
  color: var(--rose);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.steampunk-gallery::before {
  content: "❧";
  top: 15px;
  left: 18px;
  transform: rotate(-18deg);
}

.steampunk-gallery::after {
  content: "❧";
  right: 18px;
  bottom: 15px;
  transform: rotate(162deg);
}

.gallery-viewport {
  border: 2px solid #5f4128;
  outline: 1px solid rgba(95, 65, 40, 0.74);
  outline-offset: 7px;
  background: #f7efd9;
  box-shadow:
    0 12px 24px rgba(87, 63, 38, 0.16),
    0 0 0 4px rgba(241, 232, 207, 0.92),
    inset 0 0 0 3px rgba(255, 250, 232, 0.86);
}

.gallery-slide img {
  background: #f4e8cb;
}

.gallery-slide figcaption {
  color: var(--ink);
  border-top: 1px solid rgba(138, 87, 56, 0.58);
  background: rgba(255, 246, 223, 0.94);
  box-shadow: 0 -8px 20px rgba(87, 63, 38, 0.1);
  backdrop-filter: blur(5px);
}

.gallery-slide figcaption > span,
.gallery-indicator {
  color: var(--rose);
}

.gallery-indicator i {
  background: rgba(138, 87, 56, 0.7);
}

.gallery-arrow {
  color: var(--rose);
  border-color: #8a5738;
  background: #fff6df;
  box-shadow:
    inset 0 0 0 3px #f2dfb7,
    0 5px 12px rgba(87, 63, 38, 0.24);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--teal-deep);
  border-color: var(--rose);
}

.gallery-dot {
  border-color: #8a5738;
}

.gallery-dot.is-active {
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(144, 59, 76, 0.16);
}

.gallery-gear {
  display: none;
}

.gallery-flower {
  z-index: 9;
  color: rgba(157, 74, 91, 0.74);
  text-shadow: 1px 2px 0 rgba(255, 250, 232, 0.94);
}

.flower-one {
  top: -12px;
  left: -8px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  transform: rotate(-20deg);
}

.flower-two {
  right: -7px;
  bottom: -11px;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  transform: rotate(12deg);
}

.steam-plume {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  display: block;
  width: 250px;
  height: 100vh;
  opacity: 0.72;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 680px) {
  .steam-plume {
    width: 160px;
    opacity: 0.56;
  }
}

@media (prefers-reduced-motion: reduce) {
  .steam-plume {
    display: none;
  }
}
