/* =========================================================
   PARAGRAPH COFFEE & EATERY
   Main Design System
   Direction: Luxury Editorial / Warm Hospitality / Cinematic
   ========================================================= */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

/* =========================================================
   1. ROOT
   ========================================================= */
:root {
  --forest: #0d4a3e;
  --forest-dark: #082f29;
  --forest-soft: #176b58;
  --cream: #f6f3ec;
  --paper: #fbf9f4;
  --white: #ffffff;
  --gold: #c8b07b;
  --gold-soft: #dfcfaa;
  --ink: #181818;
  --muted: #6e6e6e;
  --border: #e8e2d8;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(13, 74, 62, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-accent: "Space Grotesk", Arial, sans-serif;

  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --section-space: clamp(112px, 12vw, 180px);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px rgba(8, 47, 41, 0.08);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.24);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 420ms var(--ease);
}

/* =========================================================
   2. RESET
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  display: none;
}

.site-logo {
  display: inline-flex;
  width: 80px;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  width: 55%;
  height: auto;
  object-fit: contain;
}

.site-header.is-scrolled .site-logo {
  width: 100px;
}

.site-logo {
  transition: width 420ms var(--ease);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

::selection {
  background: var(--forest);
  color: var(--white);
}

/* =========================================================
   3. GLOBAL UTILITIES
   ========================================================= */
.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container-wide));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--forest-dark);
  color: var(--white);
}

.section--forest {
  background: var(--forest);
  color: var(--white);
}

.section--paper {
  background: var(--paper);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.section--forest .eyebrow {
  color: var(--gold-soft);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 126px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.section-title {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-title em,
.display-title em {
  color: var(--gold);
  font-weight: 400;
}

.section-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
}

.section--dark .section-copy,
.section--forest .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link::after {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width var(--transition);
}

.text-link:hover::after {
  width: 64px;
}

/* =========================================================
   4. BUTTONS
   ========================================================= */
.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 24px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--forest);
  color: var(--white);
}

.button--primary:hover {
  background: var(--forest-dark);
}

.button--light {
  background: var(--white);
  color: var(--forest-dark);
}

.button--light:hover {
  background: var(--cream);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--gold {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold-soft);
}

.button--gold:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* =========================================================
   5. PARAGRAPH LINE MOTIF
   ========================================================= */
.paragraph-mark {
  display: grid;
  width: 72px;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 6px;
}

.paragraph-mark__vertical,
.paragraph-mark__horizontal,
.paragraph-mark__bottom {
  display: flex;
  gap: 4px;
}

.paragraph-mark__vertical {
  align-items: flex-end;
}

.paragraph-mark__vertical i {
  width: 2px;
  height: 26px;
  background: currentColor;
}

.paragraph-mark__horizontal {
  flex-direction: column;
  justify-content: center;
}

.paragraph-mark__horizontal i,
.paragraph-mark__bottom i {
  height: 2px;
  background: currentColor;
}

.paragraph-mark__bottom {
  grid-column: 1 / -1;
  flex-direction: column;
}

.paragraph-divider {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--forest);
}

.paragraph-divider::after {
  height: 1px;
  background: var(--line-dark);
  content: "";
}

.section--dark .paragraph-divider,
.section--forest .paragraph-divider {
  color: var(--white);
}

.section--dark .paragraph-divider::after,
.section--forest .paragraph-divider::after {
  background: var(--line-light);
}

/* =========================================================
   6. LOADER
   ========================================================= */
.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--forest-dark);
  color: var(--white);
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.loader-mark {
  width: 110px;
}

.loader-line {
  transform-origin: left center;
}

.loader-word {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.loader-tagline {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

/* =========================================================
   7. HEADER
   ========================================================= */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px var(--gutter);
  color: var(--white);
  transition:
    padding var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(8, 47, 41, 0.9);
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 42px;
}

.site-logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 150px;
  align-items: center;
}

.site-logo img {
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

/* =========================================================
   8. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 27, 24, 0.9) 0%, rgba(5, 27, 24, 0.52) 48%, rgba(5, 27, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero-content {
  grid-column: 1 / span 8;
  max-width: 940px;
  transform: translateY(40px);
}

.hero-content {
  grid-column: 1 / span 8;
  max-width: 940px;
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: var(--gold-soft);
}

.hero-title {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(62px, 8.8vw, 136px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  max-width: 540px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 56px;
  display: grid;
  gap: 8px;
  text-align: right;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.46);
  content: "";
}

/* =========================================================
   9. ABOUT
   ========================================================= */
.about-layout {
  align-items: center;
}

.about-index {
  grid-column: 1 / span 2;
  align-self: start;
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.about-media {
  grid-column: 3 / span 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  height: 100%;
  transition: transform 1.2s var(--ease);
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-content {
  grid-column: 9 / -1;
}

.about-content .section-title {
  margin-top: 22px;
}

.about-content .section-copy {
  margin-top: 28px;
}

.about-content .text-link {
  margin-top: 34px;
}

/* =========================================================
   10. SIGNATURE MENU
   ========================================================= */
.signature-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.signature-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.signature-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  padding: 26px 0;
  transition: padding var(--transition);
}

.signature-item:hover {
  padding-inline: 18px;
}

.signature-number {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-accent);
  font-size: 11px;
}

.signature-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.signature-category {
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-preview {
  position: fixed;
  z-index: 80;
  width: 280px;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
  box-shadow: var(--shadow-dark);
}

.signature-preview img {
  height: 100%;
}

/* =========================================================
   11. VENUE
   ========================================================= */
.venue-showcase {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--forest-dark);
  color: var(--white);
}

.venue-bg {
  position: absolute;
  inset: 0;
}

.venue-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 47, 41, 0.86), rgba(8, 47, 41, 0.18)),
    linear-gradient(180deg, transparent 52%, rgba(8, 47, 41, 0.72));
  content: "";
}

.venue-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: end;
  padding-block: 100px;
}

.venue-content {
  max-width: 650px;
}

.venue-content .section-copy {
  margin-top: 28px;
}

.venue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.venue-tab {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.venue-tab:hover,
.venue-tab.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-dark);
}

/* =========================================================
   12. COFFEE STALL
   ========================================================= */
.stall-layout {
  align-items: center;
}

.stall-content {
  grid-column: 1 / span 5;
}

.stall-content .section-title {
  margin-top: 22px;
}

.stall-content .section-copy {
  margin-top: 28px;
}

.stall-features {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.stall-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.stall-feature::before {
  width: 18px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.stall-media {
  position: relative;
  grid-column: 7 / -1;
}

.stall-media-main {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
}

.stall-media-main img {
  height: 100%;
}

.stall-card {
  position: absolute;
  right: -20px;
  bottom: -30px;
  max-width: 260px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(8, 47, 41, 0.88);
  backdrop-filter: blur(16px);
}

.stall-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
}

/* =========================================================
   13. GALLERY
   ========================================================= */
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 5;
}

.gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-item img {
  height: 100%;
  transition: transform 900ms var(--ease);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.54));
  content: "";
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   14. CONTACT CTA
   ========================================================= */
.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.contact-cta .section-title {
  max-width: 900px;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.contact-detail span {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   15. FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px var(--gutter) 28px;
  background: var(--forest-dark);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding-bottom: 76px;
}

.footer-brand {
  max-width: 620px;
}

.footer-logo {
  width: 180px;
}

.footer-tagline {
  max-width: 520px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   16. FLOATING CTA
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(8, 47, 41, 0.24);
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.floating-whatsapp:hover {
  background: var(--forest-dark);
  transform: translateY(-4px);
}

/* =========================================================
   17. REVEAL HELPERS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

[data-reveal-image] {
  overflow: hidden;
}

[data-reveal-image] img {
  transform: scale(1.08);
}

.char {
  display: inline-block;
  will-change: transform, opacity;
}

/* =========================================================
   18. ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--forest-dark);
  transform: translateY(-140%);
  transition: transform 220ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   MENU PAGE
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--forest-dark);
  color: var(--white);
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.page-hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 27, 24, 0.92) 0%,
      rgba(5, 27, 24, 0.56) 52%,
      rgba(5, 27, 24, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.64)
    );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 84px;
}

.page-hero__content {
  max-width: 880px;
}

.page-hero__title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(68px, 10vw, 148px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.page-hero__title em {
  color: var(--gold);
  font-weight: 400;
}

.page-hero__copy {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.4vw, 18px);
}

/* Category navigation */

.menu-category-nav {
  position: sticky;
  z-index: 90;
  top: 76px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.menu-category-nav::-webkit-scrollbar {
  display: none;
}

.menu-category-nav__inner {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
  padding-block: 16px;
}

.menu-filter {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.menu-filter:hover,
.menu-filter.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

/* Featured menu */

.featured-menu {
  position: relative;
}

.featured-menu__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.featured-menu__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.featured-card {
  position: relative;
  grid-column: span 4;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-dark);
  color: var(--white);
}

.featured-card:nth-child(2) {
  transform: translateY(48px);
}

.featured-card__media {
  position: absolute;
  inset: 0;
}

.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.featured-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(5, 27, 24, 0.92) 100%
    );
  content: "";
}

.featured-card:hover .featured-card__media img {
  transform: scale(1.06);
}

.featured-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.featured-card__category {
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-card__title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.95;
}

.featured-card__price {
  display: block;
  margin-top: 18px;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Menu catalogue */

.menu-catalogue {
  background: var(--paper);
}

.menu-group {
  border-top: 1px solid var(--border);
  padding-block: 72px;
}

.menu-group:last-child {
  border-bottom: 1px solid var(--border);
}

.menu-group__heading {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.menu-group__number {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.menu-group__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
  padding-left: 200px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-block: 24px;
}

.menu-item__main {
  min-width: 0;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.menu-item__description {
  max-width: 480px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.menu-item__price {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item[hidden] {
  display: none;
}

/* Download menu CTA */

.menu-download {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.menu-download__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.menu-download__copy {
  max-width: 760px;
}

.menu-download__copy .section-copy {
  margin-top: 24px;
}

/* =========================================================
   VENUE PAGE
   ========================================================= */

.venue-intro {
  background: var(--paper);
}

.venue-intro__layout {
  align-items: center;
}

.venue-intro__content {
  grid-column: 1 / span 5;
}

.venue-intro__content .section-title {
  margin-top: 22px;
}

.venue-intro__content .section-copy {
  margin-top: 28px;
}

.venue-intro__media {
  grid-column: 7 / -1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
}

.venue-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Venue types */

.venue-types {
  background: var(--forest-dark);
  color: var(--white);
}

.venue-types__head {
  max-width: 820px;
  margin-bottom: 64px;
}

.venue-types__head .section-title {
  margin-top: 22px;
}

.venue-types__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.venue-type-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.venue-type-card__media {
  position: absolute;
  inset: 0;
}

.venue-type-card__media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.venue-type-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 47, 41, 0.08) 20%,
      rgba(8, 47, 41, 0.92) 100%
    );
  content: "";
}

.venue-type-card:hover .venue-type-card__media img {
  transform: scale(1.05);
}

.venue-type-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.venue-type-card__index {
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.venue-type-card__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.92;
}

.venue-type-card__copy {
  max-width: 480px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

/* Facilities */

.venue-facilities {
  background: var(--cream);
}

.venue-facilities__layout {
  align-items: start;
}

.venue-facilities__heading {
  position: sticky;
  top: 130px;
  grid-column: 1 / span 5;
}

.venue-facilities__heading .section-title {
  margin-top: 22px;
}

.venue-facilities__list {
  grid-column: 7 / -1;
  display: grid;
}

.venue-facility {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding-block: 28px;
}

.venue-facility:last-child {
  border-bottom: 1px solid var(--border);
}

.venue-facility__number {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 11px;
}

.venue-facility__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}

.venue-facility__copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* Packages */

.venue-packages {
  background: var(--paper);
}

.venue-packages__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.venue-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.venue-package-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px;
  background: var(--white);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.venue-package-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.venue-package-card--featured {
  background: var(--forest);
  color: var(--white);
}

.venue-package-card__label {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.venue-package-card--featured .venue-package-card__label {
  color: var(--gold-soft);
}

.venue-package-card__title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}

.venue-package-card__price {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
}

.venue-package-card--featured .venue-package-card__price {
  color: var(--gold-soft);
}

.venue-package-card__list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.venue-package-card__list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.venue-package-card__list li::before {
  width: 16px;
  height: 1px;
  margin-top: 11px;
  background: var(--gold);
  content: "";
  flex-shrink: 0;
}

.venue-package-card--featured .venue-package-card__list li {
  color: rgba(255, 255, 255, 0.72);
}

/* Venue CTA */

.venue-rsvp {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
}

.venue-rsvp__media,
.venue-rsvp__overlay {
  position: absolute;
  inset: 0;
}

.venue-rsvp__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.venue-rsvp__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 27, 24, 0.92),
      rgba(5, 27, 24, 0.42)
    );
}

.venue-rsvp__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* =========================================================
   COFFEE STALL PAGE
   ========================================================= */

.stall-page-intro {
  background: var(--paper);
}

.stall-page-intro__layout {
  align-items: center;
}

.stall-page-intro__content {
  grid-column: 1 / span 5;
}

.stall-page-intro__content .section-title {
  margin-top: 22px;
}

.stall-page-intro__content .section-copy {
  margin-top: 28px;
}

.stall-page-intro__media {
  grid-column: 7 / -1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
}

.stall-page-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Advantages */

.stall-advantages {
  background: var(--forest-dark);
  color: var(--white);
}

.stall-advantages__head {
  max-width: 860px;
  margin-bottom: 60px;
}

.stall-advantages__head .section-title {
  margin-top: 22px;
}

.stall-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.stall-advantage {
  min-height: 280px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 30px;
}

.stall-advantage__number {
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.stall-advantage__title {
  margin-top: 80px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.stall-advantage__copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* Menu selection */

.stall-menu {
  background: var(--cream);
}

.stall-menu__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.stall-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.stall-menu-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-dark);
  color: var(--white);
}

.stall-menu-card__media {
  position: absolute;
  inset: 0;
}

.stall-menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.stall-menu-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(5, 27, 24, 0.94)
  );
  content: "";
}

.stall-menu-card:hover .stall-menu-card__media img {
  transform: scale(1.06);
}

.stall-menu-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.stall-menu-card__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 0.96;
}

.stall-menu-card__type {
  display: block;
  margin-top: 12px;
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Package pricing */

.stall-pricing {
  background: var(--paper);
}

.stall-pricing__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.stall-pricing-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.stall-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  padding: 24px 30px;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.stall-pricing-row:last-child {
  border-bottom: 0;
}

.stall-pricing-row:hover {
  background: var(--forest);
  color: var(--white);
}

.stall-pricing-row__pax {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
}

.stall-pricing-row__description {
  color: var(--muted);
  font-size: 13px;
}

.stall-pricing-row:hover .stall-pricing-row__description {
  color: rgba(255, 255, 255, 0.66);
}

.stall-pricing-row__price {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.stall-pricing-row:hover .stall-pricing-row__price {
  color: var(--gold-soft);
}

/* Event gallery */

.stall-gallery {
  background: var(--forest);
  color: var(--white);
}

.stall-gallery__head {
  max-width: 760px;
  margin-bottom: 54px;
}

.stall-gallery__head .section-title {
  margin-top: 22px;
}

.stall-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 18px;
}

.stall-gallery__item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.stall-gallery__item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 5;
}

.stall-gallery__item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 3;
}

.stall-gallery__item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 3;
}

.stall-gallery__item:nth-child(4) {
  grid-column: span 7;
  grid-row: span 4;
}

.stall-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process */

.stall-process {
  background: var(--cream);
}

.stall-process__layout {
  align-items: start;
}

.stall-process__heading {
  position: sticky;
  top: 130px;
  grid-column: 1 / span 5;
}

.stall-process__heading .section-title {
  margin-top: 22px;
}

.stall-process__list {
  grid-column: 7 / -1;
  display: grid;
}

.stall-process__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-block: 30px;
}

.stall-process__item:last-child {
  border-bottom: 1px solid var(--border);
}

.stall-process__number {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 11px;
}

.stall-process__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
}

.stall-process__copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* Final CTA */

.stall-final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
}

.stall-final-cta__media,
.stall-final-cta__overlay {
  position: absolute;
  inset: 0;
}

.stall-final-cta__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.stall-final-cta__overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 27, 24, 0.94),
    rgba(5, 27, 24, 0.38)
  );
}

.stall-final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-page-intro {
  background: var(--paper);
}

.gallery-page-intro__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 72px;
}

.gallery-page-intro__copy {
  max-width: 560px;
  color: var(--muted);
}

.gallery-page-intro__copy .section-copy {
  margin-top: 24px;
}

/* Filter */

.gallery-filter-bar {
  position: sticky;
  z-index: 90;
  top: 76px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.gallery-filter-bar::-webkit-scrollbar {
  display: none;
}

.gallery-filter-bar__inner {
  display: flex;
  min-width: max-content;
  gap: 10px;
  padding-block: 16px;
}

.gallery-filter {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

/* Masonry */

.gallery-archive {
  background: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

/* =========================================================
   HARD FIX — GALLERY CARD FIT IMAGE
   ========================================================= */

.gallery-card {
  appearance: none;
  -webkit-appearance: none;

  position: relative;
  display: block;
  width: 100%;

  margin: 0 0 20px;
  padding: 0;

  overflow: hidden;
  break-inside: avoid;

  border: 0;
  border-radius: var(--radius-md);

  background: transparent;
  color: inherit;

  font: inherit;
  line-height: 0;
  text-align: left;

  box-shadow: none;
  cursor: pointer;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: inherit;

  object-fit: cover;

  transition: transform 1s var(--ease);
}

.gallery-card::after {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(5, 27, 24, 0.86) 100%
  );
  content: "";
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card__meta {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.gallery-card:hover .gallery-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card__category {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card:focus {
  outline: none;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.gallery-card__title {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

/* Quote break */

.gallery-quote {
  margin-block: 80px;
  padding: 70px clamp(28px, 6vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: var(--white);
}

.gallery-quote blockquote {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.gallery-quote blockquote em {
  color: var(--gold);
  font-weight: 400;
}

/* Lightbox */

.gallery-lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 20, 18, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__inner {
  position: relative;
  width: min(100%, 1180px);
  max-height: 88vh;
}

.gallery-lightbox__image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.gallery-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--forest-dark);
  color: var(--white);
  font-size: 24px;
}

.gallery-lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

/* Gallery CTA */

.gallery-final-cta {
  background: var(--paper);
}

.gallery-final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-intro {
  background: var(--paper);
}

.contact-intro__layout {
  align-items: start;
}

.contact-intro__heading {
  grid-column: 1 / span 5;
  position: sticky;
  top: 130px;
}

.contact-intro__heading .section-title {
  margin-top: 22px;
}

.contact-intro__heading .section-copy {
  margin-top: 28px;
}

.contact-channels {
  grid-column: 7 / -1;
  display: grid;
  border-top: 1px solid var(--border);
}

.contact-channel {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.contact-channel__number {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.contact-channel__label {
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-channel__value {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.contact-channel__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--forest);
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.contact-channel:hover .contact-channel__arrow {
  background: var(--forest);
  color: var(--white);
  transform: translate(4px, -4px);
}

/* Map */

.contact-map-section {
  background: var(--forest-dark);
  color: var(--white);
}

.contact-map-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.contact-map-section__head .section-copy {
  color: rgba(255, 255, 255, 0.64);
}

.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-lg);
  background: var(--forest);
}

.contact-map iframe {
  width: 100%;
  height: 620px;
  border: 0;
  filter:
    grayscale(0.18)
    contrast(0.96)
    saturate(0.82);
}

.contact-map__card {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  width: min(390px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 26px;
  background: rgba(8, 47, 41, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.contact-map__card-label {
  color: var(--gold-soft);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-map__card h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.contact-map__card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.contact-map__card .button {
  margin-top: 22px;
}

/* Reservation Form */

.contact-reservation {
  background: var(--cream);
}

.contact-reservation__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-reservation__content {
  position: sticky;
  top: 130px;
}

.contact-reservation__content .section-title {
  margin-top: 22px;
}

.contact-reservation__content .section-copy {
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--forest);
}

.form-control::placeholder {
  color: #aaa49b;
}

.contact-form__note {
  color: var(--muted);
  font-size: 12px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

/* Visit Information */

.visit-info {
  background: var(--paper);
}

.visit-info__head {
  max-width: 820px;
  margin-bottom: 56px;
}

.visit-info__head .section-title {
  margin-top: 22px;
}

.visit-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.visit-card {
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--white);
}

.visit-card__index {
  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.visit-card h3 {
  margin-top: 66px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.visit-card p,
.visit-card a {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Contact closing */

.contact-closing {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
}

.contact-closing__media,
.contact-closing__overlay {
  position: absolute;
  inset: 0;
}

.contact-closing__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.contact-closing__overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 27, 24, 0.94),
    rgba(5, 27, 24, 0.38)
  );
}

.contact-closing__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

/* =========================================================
   HARD FIX — HOME CONTACT CTA
   ========================================================= */

.contact-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(520px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.contact-details {
  display: grid;
  gap: 0;
  width: 100%;
}

.contact-detail {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  gap: 28px;

  min-height: 100px;
  padding: 28px 0;

  border-top: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: 1px solid var(--border);
}

.contact-detail span {
  display: block;
  padding-top: 4px;

  color: var(--forest);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-detail p,
.contact-detail a {
  display: block;
  min-width: 0;
  margin: 0;

  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-detail a {
  transition:
    color var(--transition),
    transform var(--transition);
}

.contact-detail a:hover {
  color: var(--forest);
  transform: translateX(5px);
}