:root {
  --navy: #071521;
  --navy-deep: #03090e;
  --midnight: #0e2433;
  --gold: #c6a15b;
  --gold-soft: #d8bd7a;
  --gold-bright: #f1d88e;
  --cream: #f4efe4;
  --cream-soft: #fbf7ee;
  --stone: #b9b2a3;
  --warm-white: #fff8ea;
  --ink: #172027;
  --muted: #687177;
  --soft-blue: #dce7ea;

  --section-pad: clamp(5.5rem, 10vw, 9rem);
  --side-pad: clamp(1.25rem, 5vw, 4rem);
  --max-width: 1180px;

  --slow: 1800ms;
  --medium: 520ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --hero-position-desktop: center 78%;
  --hero-position-tablet: center center;
  --hero-position-mobile: center center;
}

/* --------------------------------------------------
   Base
-------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.7;
}

body.drawer-open {
  overflow: hidden;
}

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

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

p {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  margin: 0 0 1.6rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(3.8rem, 6.1vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  width: auto;
  max-width: calc(100% - 2rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.85rem 1.15rem;
  color: var(--warm-white);
  background:
    linear-gradient(
      135deg,
      rgba(7, 21, 33, 0.82),
      rgba(14, 36, 51, 0.64)
    );
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 248, 234, 0.08);
}

.home-link,
.brand-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
  transition:
    opacity var(--medium) var(--ease),
    color var(--medium) var(--ease);
}

.site-nav a:hover {
  color: var(--gold-soft);
  opacity: 1;
}

.nav-toggle {
  display: none;
}

/* --------------------------------------------------
   Hero
-------------------------------------------------- */

.hero {
  min-height: 100svh;
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: grid;
  place-items: start center;
  padding: 10.8rem var(--side-pad) 6rem;
  color: var(--warm-white);
  text-align: center;
  background-color: var(--navy);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--hero-position-desktop);

  transition:
    opacity 900ms var(--ease);
  will-change: opacity;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-picture picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-position-desktop);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 9, 14, 0.08) 0%,
      rgba(3, 9, 14, 0.02) 34%,
      rgba(3, 9, 14, 0.06) 68%,
      rgba(3, 9, 14, 0.16) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 28%;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(7, 21, 33, 0.18)
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  min-height: calc(100svh - 10.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  animation: softFade 1500ms ease both;
}

.hero .eyebrow {
  position: relative;
  z-index: 4;
  color: var(--gold-bright);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.7);
  filter: none;
}

.hero h1 {
  position: relative;
  z-index: 3;
  isolation: isolate;
  margin-bottom: 0;
  color: #d9bd78;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-stroke: 1.1px rgba(255, 248, 234, 0.72);
  text-shadow:
    0 1px 0 rgba(255, 248, 234, 0.28),
    0 2px 0 rgba(87, 55, 16, 0.72),
    0 5px 10px rgba(0, 0, 0, 0.62),
    0 10px 24px rgba(0, 0, 0, 0.46),
    0 0 18px rgba(7, 21, 33, 0.48);
  filter:
    drop-shadow(0 6px 8px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 10px rgba(7, 21, 33, 0.42));
}

.hero-text {
  display: none;
}

.hero-actions {
  margin-top: auto;
  margin-bottom: 8.5rem;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */

.hero-actions,
.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button-row {
  margin-top: 2.1rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    transform var(--medium) var(--ease),
    background var(--medium) var(--ease),
    color var(--medium) var(--ease),
    border-color var(--medium) var(--ease),
    box-shadow var(--medium) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d9bd78, #b98d3f);
  color: var(--navy);
  border-color: rgba(255, 248, 234, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
}

.btn-secondary {
  background: rgba(255, 248, 234, 0.06);
  color: var(--warm-white);
  border-color: rgba(216, 189, 122, 0.76);
}

.btn-secondary:hover {
  background: rgba(216, 189, 122, 0.13);
}

.btn-dark {
  background: var(--navy);
  color: var(--warm-white);
}

/* --------------------------------------------------
   Sections
-------------------------------------------------- */

main {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) var(--side-pad);
  opacity: 1;
  transform: none;
  overflow: hidden;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1500ms ease,
    transform 1500ms var(--ease);
}

.section.is-visible .section-inner {
  opacity: 1;
  transform: translateY(0);
}

.narrow {
  max-width: 840px;
  text-align: center;
  padding: clamp(1rem, 3vw, 2.6rem);
  border-radius: 1.7rem;
}

.narrow::before,
.split::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.75rem, 7vw, 6rem);
  align-items: center;
}

.split::before {
  grid-column: 1 / -1;
  margin-left: 0;
}

.split > div:nth-child(2) {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: 1.6rem;
}

.section h2 {
  max-width: 920px;
}

.section p {
  max-width: 720px;
}

.narrow p {
  margin-left: auto;
  margin-right: auto;
}

.section-light {
  background:
    radial-gradient(circle at top right, rgba(198, 161, 91, 0.1), transparent 30%),
    var(--cream-soft);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.section-light p {
  color: rgba(23, 32, 39, 0.76);
}

.section-soft {
  background:
    linear-gradient(145deg, rgba(220, 231, 234, 0.96), rgba(244, 239, 228, 0.82));
  color: var(--ink);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(198, 161, 91, 0.11), transparent 28%),
    linear-gradient(145deg, #071521, #03090e);
  color: var(--warm-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.05),
    inset 0 -1px 0 rgba(255, 248, 234, 0.04);
}

.section-dark p {
  color: rgba(255, 248, 234, 0.78);
}

.section-light .narrow,
.section-soft .narrow,
.section-light .split > div:nth-child(2),
.section-soft .split > div:nth-child(2) {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(198, 161, 91, 0.14);
  box-shadow: 0 24px 80px rgba(7, 21, 33, 0.07);
}

.section-dark .narrow,
.section-dark .split > div:nth-child(2) {
  background: rgba(255, 248, 234, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

/* --------------------------------------------------
   Welcome section image background
-------------------------------------------------- */

#about {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(
      120deg,
      rgba(7, 21, 33, 0.18) 0%,
      rgba(251, 247, 238, 0.76) 34%,
      rgba(244, 239, 228, 0.66) 100%
    ),
    url("../images/ps.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 -56px 120px rgba(3, 9, 14, 0.42);
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/ps.jpg") center / cover no-repeat;
  opacity: 0.34;
  filter: saturate(1.04) contrast(1.02);
}

#about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 9, 14, 0.24) 0%,
      rgba(251, 247, 238, 0.46) 26%,
      rgba(244, 239, 228, 0.74) 100%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 248, 234, 0.42),
      rgba(251, 247, 238, 0.62) 46%,
      rgba(244, 239, 228, 0.78) 100%
    );
}

#about .narrow {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(198, 161, 91, 0.2);
  backdrop-filter: blur(7px);
  box-shadow:
    0 28px 90px rgba(7, 21, 33, 0.11),
    inset 0 1px 0 rgba(255, 248, 234, 0.5);
}

/* --------------------------------------------------
   Hours section image background
-------------------------------------------------- */

#hours {
  position: relative;
  isolation: isolate;
  color: var(--warm-white);
  background:
    linear-gradient(
      145deg,
      rgba(3, 9, 14, 0.82),
      rgba(7, 21, 33, 0.72)
    ),
    url("../images/ps1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hours::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/ps1.jpg") center / cover no-repeat;
  opacity: 0.44;
  filter: saturate(1.04) contrast(1.04);
}

#hours::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      120deg,
      rgba(3, 9, 14, 0.58),
      rgba(7, 21, 33, 0.38)
    ),
    radial-gradient(
      circle at top right,
      rgba(198, 161, 91, 0.16),
      transparent 34%
    );
}

#hours p {
  color: rgba(255, 248, 234, 0.8);
}

#hours .narrow,
#hours .hours-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(7, 21, 33, 0.74),
      rgba(3, 9, 14, 0.58)
    );
  border: 1px solid rgba(198, 161, 91, 0.28);
  backdrop-filter: blur(8px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 248, 234, 0.08);
}

#hours .narrow::after,
#hours .hours-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/ps3.jpg") center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: screen;
}

#hours .narrow > *,
#hours .hours-card > * {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------
   Gallery image cards
-------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: 3rem;
}

.gallery-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(7, 21, 33, 0.94), rgba(14, 36, 51, 0.9));
  color: rgba(255, 248, 234, 0.72);
  box-shadow: 0 24px 70px rgba(7, 21, 33, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(216, 189, 122, 0.18);
  border-radius: 1.1rem;
  pointer-events: none;
}

.gallery-card.image-card {
  min-height: 430px;
  position: relative;
  padding: 0;
  display: block;
  border: 4px solid rgba(198, 161, 91, 0.82);
  border-radius: 1.8rem;
  background: var(--navy);
  box-shadow:
    0 28px 80px rgba(7, 21, 33, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(216, 189, 122, 0.28),
    0 0 26px rgba(198, 161, 91, 0.18);
}

.gallery-card.image-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 232, 180, 0.48);
  border-radius: 1.15rem;
  pointer-events: none;
  z-index: 3;
}

.gallery-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(
      to top,
      rgba(3, 9, 14, 0.88) 0%,
      rgba(3, 9, 14, 0.58) 38%,
      rgba(3, 9, 14, 0.08) 74%
    );
  pointer-events: none;
  z-index: 1;
}

.gallery-card.image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 1400ms var(--ease),
    filter 1400ms var(--ease);
}

.gallery-card.image-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.gallery-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1300ms ease,
    transform 1300ms var(--ease),
    box-shadow var(--medium) var(--ease);
}

.section.is-visible .gallery-card {
  opacity: 1;
  transform: translateY(0);
}

.section.is-visible .gallery-card:nth-child(2) {
  transition-delay: 120ms;
}

.section.is-visible .gallery-card:nth-child(3) {
  transition-delay: 240ms;
}

.image-card-content {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  color: var(--warm-white);
}

.image-card-content .eyebrow {
  margin-bottom: 0.55rem;
  color: var(--gold-soft);
}

.image-card-content h3 {
  margin-bottom: 0.55rem;
  color: var(--warm-white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.image-card-content p {
  margin: 0;
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* --------------------------------------------------
   Map card
-------------------------------------------------- */

.map-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.92), rgba(244, 239, 228, 0.7));
  border: 4px solid rgba(198, 161, 91, 0.82);
  border-radius: 1.8rem;
  box-shadow:
    0 28px 80px rgba(7, 21, 33, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(216, 189, 122, 0.28),
    0 0 26px rgba(198, 161, 91, 0.18);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 232, 180, 0.48);
  border-radius: 1.15rem;
  pointer-events: none;
  z-index: 2;
}

.map-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.map-card a {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.map-image-card {
  padding: 0;
  overflow: hidden;
  justify-content: stretch;
  background: var(--cream);
}

.map-image-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.map-link-card {
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--medium) var(--ease),
    box-shadow var(--medium) var(--ease);
}

.map-link-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 95px rgba(7, 21, 33, 0.28),
    0 12px 34px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(216, 189, 122, 0.34),
    0 0 34px rgba(198, 161, 91, 0.24);
}

.map-get-here {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.1rem;
  border: 1px solid rgba(255, 248, 234, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, #e1c886, #b98d3f);
  color: var(--navy);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(198, 161, 91, 0.16);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform var(--medium) var(--ease),
    box-shadow var(--medium) var(--ease);
}

.map-link-card:hover .map-get-here {
  transform: translateY(-1px);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(198, 161, 91, 0.22);
}

/* --------------------------------------------------
   Feature image sections
-------------------------------------------------- */

.feature-bg,
.dining-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-bg img,
.dining-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1800ms ease,
    transform 2200ms var(--ease);
}

.dining-feature,
.takeaway-feature,
.events-feature,
.stores-feature {
  position: relative;
  overflow: hidden;
}

.dining-feature {
  background: var(--navy);
}

.dining-feature .dining-bg img {
  filter: saturate(1) contrast(1);
}

.dining-feature.is-visible .dining-bg img {
  opacity: 0.62;
  transform: scale(1);
}

.dining-feature::after,
.takeaway-feature::after,
.events-feature::after,
.stores-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dining-feature::after {
  background:
    linear-gradient(
      120deg,
      rgba(3, 9, 14, 0.56),
      rgba(7, 21, 33, 0.5)
    );
}

.takeaway-feature .feature-bg img {
  filter: saturate(1) contrast(1);
}

.takeaway-feature.is-visible .feature-bg img {
  opacity: 0.52;
  transform: scale(1);
}

.takeaway-feature::after {
  background:
    linear-gradient(
      120deg,
      rgba(251, 247, 238, 0.58),
      rgba(244, 239, 228, 0.48)
    );
}

.events-feature .feature-bg img {
  filter: saturate(1) contrast(1);
}

.events-feature.is-visible .feature-bg img {
  opacity: 0.58;
  transform: scale(1);
}

.events-feature::after {
  background:
    linear-gradient(
      120deg,
      rgba(3, 9, 14, 0.66),
      rgba(7, 21, 33, 0.56)
    );
}

/* --------------------------------------------------
   Stores Bar section
-------------------------------------------------- */

.stores-feature {
  background:
    linear-gradient(
      120deg,
      rgba(251, 247, 238, 0.68),
      rgba(244, 239, 228, 0.56)
    ),
    url("../images/ps3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stores-feature .feature-bg {
  display: none;
}

.stores-feature::after {
  background:
    linear-gradient(
      120deg,
      rgba(251, 247, 238, 0.66),
      rgba(244, 239, 228, 0.54)
    ),
    radial-gradient(
      circle at top right,
      rgba(198, 161, 91, 0.12),
      transparent 34%
    );
}

.dining-feature .section-inner,
.takeaway-feature .section-inner,
.events-feature .section-inner,
.stores-feature .section-inner {
  position: relative;
  z-index: 2;
}

.dining-feature .split > div:nth-child(2) {
  background: rgba(7, 21, 33, 0.54);
  border: 1px solid rgba(198, 161, 91, 0.26);
  backdrop-filter: blur(8px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 248, 234, 0.06);
}

.takeaway-feature .split > div:nth-child(2),
.stores-feature .stores-section > div:nth-child(2) {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(198, 161, 91, 0.22);
  backdrop-filter: blur(7px);
}

.events-feature .narrow {
  background: rgba(7, 21, 33, 0.62);
  border: 1px solid rgba(198, 161, 91, 0.26);
  backdrop-filter: blur(8px);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 248, 234, 0.06);
}

/* --------------------------------------------------
   Stores image card
-------------------------------------------------- */

.stores-section {
  align-items: center;
}

.stores-image-card {
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(198, 161, 91, 0.82);
  border-radius: 1.8rem;
  background: var(--navy);
  box-shadow:
    0 28px 80px rgba(7, 21, 33, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(216, 189, 122, 0.28),
    0 0 26px rgba(198, 161, 91, 0.18);
}

.stores-image-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 232, 180, 0.48);
  border-radius: 1.15rem;
  pointer-events: none;
  z-index: 2;
}

.stores-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* --------------------------------------------------
   Contact
-------------------------------------------------- */

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
}

.contact-list p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 248, 234, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.14);
}

.contact-list a {
  color: var(--gold-soft);
}

.contact-list strong {
  color: var(--warm-white);
}

/* --------------------------------------------------
   Opening hours
-------------------------------------------------- */

.hours-card {
  max-width: 860px;
}

.hours-actions {
  margin-top: 2rem;
}

.hours-list,
.opening-hours,
.hours-grid {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.hours-list p,
.opening-hours p,
.hours-grid p {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 248, 234, 0.07);
  border: 1px solid rgba(198, 161, 91, 0.18);
  color: rgba(255, 248, 234, 0.84);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */

.site-footer {
  padding: 2.4rem var(--side-pad);
  background: #03090e;
  color: rgba(255, 248, 234, 0.68);
  text-align: center;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.82rem;
}

/* --------------------------------------------------
   Drawer menu
-------------------------------------------------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(3, 9, 14, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 560ms var(--ease);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  z-index: 200;
  inset: 0 0 0 auto;
  width: min(540px, 100%);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(251, 247, 238, 0.98), rgba(244, 239, 228, 0.96));
  color: var(--ink);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.26);
  transform: translateX(100%);
  transition: transform 620ms var(--ease);
  border-left: 1px solid rgba(198, 161, 91, 0.22);
}

.menu-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(23, 32, 39, 0.1);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 234, 0.96),
      rgba(244, 239, 228, 0.82)
    );
}

.drawer-header h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

.drawer-close {
  border: 0;
  background: var(--navy);
  color: var(--warm-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.drawer-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.menu-group {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}

.menu-group h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.menu-group p {
  color: rgba(23, 32, 39, 0.68);
}

.drawer-footer {
  padding: 1.25rem 2rem 2rem;
  border-top: 1px solid rgba(23, 32, 39, 0.1);
}

.drawer-footer .btn {
  width: 100%;
}

/* --------------------------------------------------
   Animations
-------------------------------------------------- */

@keyframes softFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --------------------------------------------------
   Tablet hero tuning
-------------------------------------------------- */

@media (max-width: 1024px) {
  .hero {
    background-size: cover;
    background-position: var(--hero-position-tablet);
    background-repeat: no-repeat;
    background-color: var(--navy);
  }

  .hero-picture img {
    object-position: var(--hero-position-tablet);
  }
}

/* --------------------------------------------------
   Mobile hero tuning - portrait mobile images
-------------------------------------------------- */

@media (max-width: 820px) {
  :root {
    --section-pad: clamp(4.5rem, 14vw, 6rem);
  }

  .site-header {
    top: 0.75rem;
    width: min(calc(100% - 1rem), 1180px);
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 4.2rem;
    right: 0;
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    min-width: 210px;
    border: 1px solid rgba(198, 161, 91, 0.35);
    border-radius: 1rem;
    background: rgba(7, 21, 33, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  }

  .nav-toggle {
    display: inline-flex;
    border: 1px solid rgba(198, 161, 91, 0.7);
    color: var(--warm-white);
    background: rgba(7, 21, 33, 0.35);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem var(--side-pad) 4rem;
    place-items: start center;

    /*
      Mobile hero uses the purpose-made portrait -mobile.webp images.
      Keep it simple: cover + centre.
    */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--navy);
  }

  .hero-picture img {
    /*
      Mobile hero tuning:
      Keep cover so the screen stays filled, but use the full portrait image
      more gently and keep the pier centred.
    */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-content {
    min-height: calc(100svh - 7.5rem);
    text-align: center;
  }

  .hero h1 {
    -webkit-text-stroke: 0.9px rgba(255, 248, 234, 0.7);
    text-shadow:
      0 1px 0 rgba(255, 248, 234, 0.26),
      0 2px 0 rgba(87, 55, 16, 0.72),
      0 5px 12px rgba(0, 0, 0, 0.66),
      0 10px 26px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(7, 21, 33, 0.52);

    filter:
      drop-shadow(0 7px 9px rgba(0, 0, 0, 0.58))
      drop-shadow(0 0 12px rgba(7, 21, 33, 0.48));
  }

  .hero-actions {
    margin-top: auto;
    margin-bottom: 5.5rem;
    align-items: stretch;
    flex-direction: column;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .narrow {
    text-align: left;
  }

  .narrow::before {
    margin-left: 0;
  }

  .split > div:nth-child(2),
  .narrow {
    padding: 1.35rem;
  }

  #about {
    background-position: center;
  }

  #about::before {
    opacity: 0.28;
  }

  #about::after {
    background:
      linear-gradient(
        to bottom,
        rgba(3, 9, 14, 0.24) 0%,
        rgba(251, 247, 238, 0.68) 30%,
        rgba(244, 239, 228, 0.78) 100%
      );
  }

  #hours {
    background-position: center;
  }

  #hours::before {
    opacity: 0.34;
  }

  #hours .narrow,
  #hours .hours-card {
    backdrop-filter: blur(6px);
  }

  .stores-feature {
    background-position: center;
  }

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

  .gallery-card {
    min-height: 250px;
  }

  .gallery-card.image-card,
  .gallery-card.image-card img,
  .stores-image-card img {
    min-height: 340px;
  }

  .image-card-content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .map-image-card img {
    min-height: 280px;
  }

  .map-get-here {
    right: 1rem;
    bottom: 1rem;
    padding: 0.72rem 0.9rem;
  }

  .contact-list p {
    padding: 0.95rem;
  }

  .dining-feature .dining-bg img,
  .takeaway-feature .feature-bg img,
  .events-feature .feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .dining-feature,
  .takeaway-feature,
  .events-feature,
  .stores-feature {
    min-height: auto;
  }

  .dining-feature .split > div:nth-child(2),
  .takeaway-feature .split > div:nth-child(2),
  .events-feature .narrow,
  .stores-feature .stores-section > div:nth-child(2) {
    backdrop-filter: blur(6px);
  }

  .menu-drawer {
    inset: auto 0 0 0;
    width: 100%;
    height: min(88svh, 760px);
    border-radius: 1.5rem 1.5rem 0 0;
    transform: translateY(100%);
  }

  .menu-drawer.is-open {
    transform: translateY(0);
  }

  #about {
    box-shadow: 0 -42px 90px rgba(3, 9, 14, 0.38);
  }
}

/* --------------------------------------------------
   Small mobile hero tuning - portrait mobile images
-------------------------------------------------- */

@media (max-width: 480px) {

  .hero {
    /*
      Small mobile also uses the portrait -mobile.webp hero images.
    */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--navy);
  }

  .hero-picture img {
    /*
      Small mobile: keep the portrait hero centred.
      Change 52% to 48% or 56% later only if needed.
    */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
  }

  .hero-actions {
    margin-bottom: 7.5rem;
  }

}

/* --------------------------------------------------
   Accessibility
-------------------------------------------------- */

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .section,
  .section-inner {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------
   Launch polish: concise contact
-------------------------------------------------- */

.contact-buttons {
  margin-top: 2rem;
}

.contact-card .contact-list {
  margin-top: 1.4rem;
}

.contact-card .contact-list p {
  text-align: center;
}

/* --------------------------------------------------
   Mobile overflow fix
   Stops header/menu/hero from running wider than screen
-------------------------------------------------- */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 820px) {
  .site-header {
    left: 50%;
    right: auto;
    width: auto;
    max-width: calc(100% - 1rem);
    transform: translateX(-50%);
    justify-content: center;
    padding: 0.75rem 0.9rem;
  }

  .nav-toggle {
    flex-shrink: 0;
  }

  .hero,
  main,
  .section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

