@import url("https://fonts.bunny.net/css?family=cormorant-garamond:500,600,700,500i|karla:400,500,600,700|dancing-script:500,700");

:root {
  --hth-green-deep: #16302a;
  --hth-green: #21453a;
  --hth-green-hero-end: #1a3a30;
  --hth-cream: #f5efe1;
  --hth-cream-soft: #faf6ec;
  --hth-brass: #c2a15c;
  --hth-brass-hover: #d4b774;
  --hth-neon: #d6f4ff;
  --hth-text-on-dark: #dce6df;
  --hth-muted-on-dark: #a9c0b3;
  --hth-fine-on-dark: #8faa9c;
  --hth-body: #3a5348;
  --hth-body-secondary: #4a6156;
  --hth-body-tertiary: #6a7f74;
  --hth-photo-placeholder: #e9dfc8;
  --hth-border: rgba(33, 69, 58, 0.12);
  --hth-border-field: rgba(33, 69, 58, 0.25);
  --max-wide: 1200px;
  --max-content: 1160px;
  --max-menu: 1080px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 16px 40px -28px rgba(22, 48, 42, 0.6);
  --shadow-card-hover: 0 24px 54px -24px rgba(22, 48, 42, 0.7);
  --shadow-photo: 0 24px 60px -30px rgba(22, 48, 42, 0.5);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
  --font-script: "Dancing Script", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hth-green);
  background: var(--hth-cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--hth-green); text-decoration: none; transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--hth-brass); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hth-green-deep);
  color: var(--hth-cream);
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.container {
  width: min(100% - 48px, var(--max-wide));
  margin-inline: auto;
}
.container-narrow { width: min(100% - 48px, var(--max-menu)); margin-inline: auto; }
.container-content { width: min(100% - 48px, var(--max-content)); margin-inline: auto; }

/* Top bar */
.top-bar {
  background: var(--hth-green-deep);
  color: var(--hth-cream);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.top-bar-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: center;
}
.top-bar a { color: var(--hth-cream); }
.top-bar a:hover { color: var(--hth-brass); }
.top-bar-sep { opacity: 0.4; }

/* Header */
.site-header {
  background: var(--hth-cream);
  border-bottom: 1px solid var(--hth-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 78px; width: auto; }

.nav-toggle {
  display: none;
  margin: 0;
  background: transparent;
  border: 1.5px solid rgba(33, 69, 58, 0.25);
  border-radius: var(--radius-sm);
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--hth-green);
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; }
.nav a[aria-current="page"] { color: var(--hth-brass); }
.nav .btn-nav-book {
  background: var(--hth-green);
  color: var(--hth-cream);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.nav .btn-nav-book:hover {
  background: var(--hth-green-deep);
  color: var(--hth-cream);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; margin-left: auto; flex-shrink: 0; }
  .header-inner { flex-wrap: wrap; position: relative; }
  .brand img { height: 64px; }
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0 0.75rem;
    border-top: 1px solid var(--hth-border);
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--hth-border);
    min-height: 44px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav .btn-nav-book { text-align: center; margin-top: 0.25rem; }
}

@media (max-width: 390px) {
  .header-inner { padding: 12px 16px; }
  .top-bar-inner { padding: 10px 16px; font-size: 12px; }
  .brand img { height: 56px; }
}

/* Typography */
.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--hth-brass);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow-sm {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--hth-brass);
  font-weight: 700;
}
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--hth-green);
  line-height: 1.05;
}
h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 22px; }
.lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.4;
}
.page-hero-script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--hth-neon);
  font-size: clamp(40px, 7.7vw, 84px);
  line-height: 1.05;
  text-shadow: 0 0 8px rgba(150, 215, 255, 0.9), 0 0 22px rgba(60, 170, 255, 0.7);
  margin: 0 0 20px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
}
.btn-brass {
  background: var(--hth-brass);
  color: var(--hth-green-deep);
}
.btn-brass:hover {
  background: var(--hth-brass-hover);
  color: var(--hth-green-deep);
}
.btn-dark {
  background: var(--hth-green);
  color: var(--hth-cream);
}
.btn-dark:hover {
  background: var(--hth-green-deep);
  color: var(--hth-cream);
}
.btn-primary {
  background: var(--hth-green);
  color: var(--hth-cream);
  border: none;
}
.btn-primary:hover {
  background: var(--hth-green-deep);
  color: var(--hth-cream);
}
.btn-outline-light {
  background: transparent;
  color: var(--hth-cream);
  border: 1.5px solid rgba(245, 239, 225, 0.6);
}
.btn-outline-light:hover {
  background: rgba(245, 239, 225, 0.12);
  color: var(--hth-cream);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Hero home */
.hero-home {
  position: relative;
  background: linear-gradient(180deg, var(--hth-green) 0%, var(--hth-green-hero-end) 100%);
  overflow: hidden;
  padding: 52px 24px 56px;
  text-align: center;
}
.hero-clouds {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}
.hero-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  background: radial-gradient(ellipse at center, rgba(245, 239, 225, 0.28), rgba(245, 239, 225, 0) 70%);
  animation: floatCloud 11s ease-in-out infinite;
}
.hero-cloud:nth-child(1) { width: 340px; height: 200px; left: 6%; top: 18%; animation-duration: 11s; }
.hero-cloud:nth-child(2) { width: 420px; height: 240px; right: 4%; top: 12%; filter: blur(8px); animation-duration: 14s; background: radial-gradient(ellipse at center, rgba(245, 239, 225, 0.22), rgba(245, 239, 225, 0) 70%); }
.hero-cloud:nth-child(3) { width: 520px; height: 280px; left: 30%; bottom: -6%; filter: blur(10px); animation-duration: 16s; background: radial-gradient(ellipse at center, rgba(245, 239, 225, 0.2), rgba(245, 239, 225, 0) 70%); }
.hero-cloud:nth-child(4) { width: 260px; height: 160px; left: 44%; top: 30%; animation-duration: 12s; background: radial-gradient(ellipse at center, rgba(245, 239, 225, 0.16), rgba(245, 239, 225, 0) 70%); }

.hero-home-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.neon-hero {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  color: var(--hth-neon);
  line-height: 0.86;
  transform: skewX(-12deg);
  animation: neonPulse 5.5s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(150, 215, 255, 0.95), 0 0 24px rgba(60, 170, 255, 0.75);
}
.neon-hero .line1,
.neon-hero .line2 { display: block; }
.neon-hero .line1 { font-size: clamp(56px, 10vw, 128px); }
.neon-hero .line2 { font-size: clamp(60px, 11vw, 140px); }
.hero-home .lead {
  color: var(--hth-cream);
  max-width: 640px;
  margin: 40px auto 0;
}
.hero-home .btn-row { margin-top: 28px; }

@keyframes neonPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px rgba(150, 215, 255, 0.95)) drop-shadow(0 0 22px rgba(60, 170, 255, 0.75)) drop-shadow(0 0 44px rgba(40, 150, 255, 0.5)); }
  48% { opacity: 0.96; }
  50% { opacity: 0.82; filter: drop-shadow(0 0 3px rgba(150, 215, 255, 0.7)) drop-shadow(0 0 10px rgba(60, 170, 255, 0.45)); }
  52% { opacity: 0.95; }
}
@keyframes floatCloud {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .neon-hero { animation: none; }
  .hero-cloud { animation: none; }
  html { scroll-behavior: auto; }
}

/* Page hero (non-home) */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--hth-green), var(--hth-green-hero-end));
  color: var(--hth-cream);
  overflow: hidden;
  padding: 56px 24px 60px;
  text-align: center;
}
.page-hero p:not(.page-hero-script) { color: var(--hth-text-on-dark); font-size: 17px; line-height: 1.6; max-width: 640px; margin: 18px auto 0; }
.page-hero h1 {
  color: var(--hth-cream);
  margin-top: 0;
}

/* Sections */
.section { padding: 74px 24px; }
.section-soft { background: var(--hth-cream-soft); }
.section-cream { background: var(--hth-cream); }
.section-dark { background: var(--hth-green); color: var(--hth-cream); }
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--hth-cream);
}
.section-tight-top { padding-top: 20px; }

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-2-start { align-items: start; }
.photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  background: var(--hth-photo-placeholder);
}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.quote-block {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.quote-block img.symbol {
  height: 56px;
  width: auto;
  margin: 0 auto 26px;
  opacity: 0.85;
}
.quote-block .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.4;
}
.quote-block .attribution { margin-top: 20px; }

.body-lg { font-size: 17px; line-height: 1.7; color: var(--hth-body); }
.body-lg + .body-lg { margin-top: 16px; }
.text-on-dark { color: var(--hth-text-on-dark); }
.text-muted-dark { color: var(--hth-muted-on-dark); font-size: 14px; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--hth-green);
  border-bottom: 2px solid var(--hth-brass);
  padding-bottom: 4px;
}
.link-underline:hover { color: var(--hth-brass); }

/* Offering cards */
.section-head { text-align: center; margin-bottom: 52px; }
.grid-offerings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}
.offering-card:hover { box-shadow: var(--shadow-card-hover); color: inherit; }
.offering-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hth-photo-placeholder);
}
.offering-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.offering-card .body { padding: 24px 22px 26px; }
.offering-card h3 { font-size: 25px; margin: 0 0 10px; }
.offering-card p { font-size: 14.5px; line-height: 1.6; color: var(--hth-body-secondary); margin: 0; }

/* Afternoon tea band */
.tea-band {
  position: relative;
  background: var(--hth-green);
  color: var(--hth-cream);
  overflow: hidden;
}
.tea-band-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.tea-band .price-big {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--hth-cream);
}
.tea-band .price-note {
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--hth-brass);
  font-weight: 600;
}
.tea-prices { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: baseline; margin-bottom: 32px; }

/* Gallery */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--hth-cream-soft);
}
.gallery-strip .tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hth-photo-placeholder);
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Visit / map */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit-card {
  background: var(--hth-green);
  color: var(--hth-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.visit-card img.symbol { height: 70px; width: auto; margin-bottom: 26px; }
.visit-card h2 { color: var(--hth-cream); font-size: 34px; margin-bottom: 24px; }
.visit-detail { margin-bottom: 22px; }
.visit-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--hth-brass);
  font-weight: 700;
  margin-bottom: 6px;
}
.visit-card a { color: var(--hth-cream); }
.visit-card a:hover { color: var(--hth-brass); }
.map-notes {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-top: 20px;
}
.map-notes h3 { font-size: 22px; margin-bottom: 12px; }
.map-notes p { font-size: 15px; line-height: 1.65; color: var(--hth-body-secondary); margin: 0 0 12px; }
.map-notes p:last-child { margin-bottom: 0; }

/* Values grid */
.grid-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-md);
  padding: 34px 30px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--hth-brass);
  line-height: 1;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 24px; margin-bottom: 10px; }
.value-card p { font-size: 15.5px; line-height: 1.65; color: var(--hth-body-secondary); margin: 0; }

/* CTA panel */
.cta-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--hth-green), var(--hth-green-hero-end));
  color: var(--hth-cream);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}
.cta-panel h2 { color: var(--hth-cream); margin-bottom: 18px; font-size: clamp(26px, 3.6vw, 38px); }
.cta-panel.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  color: var(--hth-neon);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-shadow: 0 0 8px rgba(150, 215, 255, 0.9), 0 0 22px rgba(60, 170, 255, 0.7);
  margin-bottom: 10px;
}

/* Menu */
.menu-section { margin-bottom: 56px; }
.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(33, 69, 58, 0.16);
  padding-bottom: 14px;
  margin-bottom: 28px;
}
.menu-section-note {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--hth-brass);
  font-weight: 700;
  text-transform: uppercase;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 44px;
}
.menu-item h3 {
  font-size: 22px;
  white-space: nowrap;
  margin: 0;
}
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.menu-leader {
  flex: 1;
  border-bottom: 1.5px dotted rgba(33, 69, 58, 0.3);
  transform: translateY(-4px);
}
.menu-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--hth-brass);
  white-space: nowrap;
}
.menu-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hth-body-secondary);
  margin-top: 6px;
}
.allergy-box {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hth-body-secondary);
}

/* Drinks */
.tea-group {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 22px;
}
.tea-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1.5px solid rgba(33, 69, 58, 0.14);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.tea-group h3 { font-size: 26px; margin: 0; }
.tea-group .group-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--hth-brass);
}
.tea-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  font-size: 15px;
}
.tea-key { font-size: 13.5px; color: var(--hth-body-tertiary); margin-top: 16px; letter-spacing: 0.03em; }

.drinks-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 56px 0;
}
.panel-dark {
  background: var(--hth-green);
  color: var(--hth-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.panel-light {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.panel-dark h2, .panel-light h2 { margin-bottom: 6px; font-size: 30px; }
.panel-dark .item-row,
.panel-light .item-row {
  border-top: 1px solid rgba(245, 239, 225, 0.16);
  padding-top: 12px;
  margin-top: 12px;
}
.panel-light .item-row { border-color: rgba(33, 69, 58, 0.12); }

.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.other-drinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Bubble tea */
.bubble-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.bubble-card {
  background: var(--hth-cream-soft);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}
.bubble-card.dark {
  background: var(--hth-green);
  color: var(--hth-cream);
}
.bubble-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.bubble-card-head h2 { font-size: 30px; margin: 0; }
.bubble-card.dark .bubble-card-head h2 { color: var(--hth-cream); }
.bubble-card-head .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--hth-brass);
}
.chip-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--hth-body-secondary);
  margin-bottom: 10px;
}
.bubble-card.dark .chip-label { color: var(--hth-muted-on-dark); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.chip-dark { background: var(--hth-green); color: var(--hth-cream); }
.chip-outline {
  background: #fff;
  border: 1.5px solid rgba(33, 69, 58, 0.2);
  color: var(--hth-green);
}
.bubble-card.dark .item-row {
  border-top: 1px solid rgba(245, 239, 225, 0.16);
  padding-top: 13px;
  margin-top: 13px;
}

/* Footer */
.site-footer {
  background: var(--hth-green-deep);
  color: var(--hth-text-on-dark);
  padding: 56px 24px 34px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}
.footer-inner img.symbol { height: 64px; width: auto; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-nav a { color: var(--hth-text-on-dark); }
.footer-nav a:hover { color: var(--hth-brass); }
.footer-social {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-social a { color: var(--hth-text-on-dark); }
.footer-social a:hover { color: var(--hth-brass); }
.footer-copy {
  max-width: 1120px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 225, 0.14);
  font-size: 12.5px;
  color: var(--hth-fine-on-dark);
  text-align: center;
  letter-spacing: 0.04em;
}
.footer-studio {
  max-width: 1120px;
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: center;
}
.studio-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--hth-fine-on-dark);
  font-size: 0.85rem;
}
.studio-credit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.studio-credit-line { letter-spacing: 0.02em; }
.studio-credit-brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.studio-credit-brand { font-weight: 700; color: var(--hth-text-on-dark); }
.site-build-stamp {
  text-align: center;
  font-size: 0.75rem;
  color: var(--hth-fine-on-dark);
  margin-top: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-links a { color: var(--hth-text-on-dark); font-size: 13px; }
.cookie-prefs-link { cursor: pointer; border: none; background: none; font: inherit; color: var(--hth-text-on-dark); padding: 0; }
.cookie-prefs-link:hover { color: var(--hth-brass); }

/* Inner pages / forms */
.page-title { margin-bottom: 1rem; }
.section.centered { text-align: center; }
.prose { max-width: 42rem; }
.prose h2 { margin-top: 1.75rem; margin-bottom: 0.5rem; font-size: 1.35rem; }
.prose p { margin: 0 0 1rem; color: var(--hth-body-secondary); }
.prose a { color: var(--hth-green); font-weight: 600; }

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hth-body-secondary);
  margin-bottom: 0.35rem;
}
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--hth-border-field);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--hth-cream-soft);
  color: var(--hth-green);
}
textarea { resize: vertical; min-height: 120px; }
.form-error {
  color: #a33c3c;
  font-size: 14px;
  padding: 0.75rem;
  background: #f5ecd8;
  border-radius: var(--radius-sm);
}
.honeypot { position: absolute; left: -9999px; }

/* Responsive grids */
@media (max-width: 768px) {
  .split-2,
  .tea-band-inner,
  .visit-grid,
  .grid-values,
  .menu-grid,
  .tea-list,
  .drinks-split,
  .wine-grid,
  .bubble-grid,
  .grid-offerings {
    grid-template-columns: 1fr;
  }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .other-drinks { grid-template-columns: 1fr; }
  .section { padding: 52px 20px; }
}

@media (max-width: 390px) {
  .container, .container-narrow, .container-content {
    width: min(100% - 32px, 100%);
  }
  .neon-hero .line1 { font-size: clamp(48px, 14vw, 72px); }
  .neon-hero .line2 { font-size: clamp(52px, 15vw, 80px); }
  .cta-panel, .visit-card { padding: 32px 24px; }
}
