/* ============================================
   THE EMBASSY BY DEVLIN'S — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-mid:   #1a1a1a;
  --gold:        #C9A96E;
  --gold-light:  #E0C98A;
  --gold-dark:   #8B6914;
  --cream:       #F5EDD6;
  --cream-soft:  #EDE5CC;
  --white:       #FFFFFF;
  --grey:        #888888;
  --grey-light:  #CCCCCC;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', sans-serif;
  --nav-height:  80px;
  --section-pad: 100px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-soft);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-light {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--black);
}

/* ── Layout Helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--black);
}

.section-mid {
  background: var(--black-mid);
}

.section-soft {
  background: var(--black-soft);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-rule-center {
  margin: 24px auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-grey { color: var(--grey); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

/* Hamburger (left) */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Logo (center) */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  height: 94px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)) brightness(1.05);
  opacity: 0.95;
}

/* Reserve button (right) */
.nav-reserve {
  margin-left: auto;
}

/* Full-screen menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-menu {
  text-align: center;
}

.nav-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  padding: 12px 0;
  transition: color 0.2s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 60%;
}

.nav-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.5;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.70);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.15) 45%,
    rgba(10,10,10,0.65) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
}

.hero-logo img {
  height: 180px;
  width: auto;
  max-width: 90vw;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7)) brightness(1.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-logo img { height: 110px; }
}

.hero-content h1 {
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

.hero-content p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 48px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: var(--gold);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.8) 100%);
}

.page-hero-content {
  position: relative;
  text-align: center;
}

/* ── Intro Section ── */
.intro {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.intro::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 15rem;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
}

.intro blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

.intro cite {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Pillars / Features Grid ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
}

.pillar {
  background: var(--black-soft);
  padding: 60px 40px;
  text-align: center;
  transition: background var(--transition);
}

.pillar:hover {
  background: var(--black-mid);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}

.pillar h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ── Image Panels ── */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.image-split-img {
  overflow: hidden;
  position: relative;
  min-height: 500px;
}

.image-split-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.image-split-img:hover img {
  transform: scale(1.03);
}

.image-split-content {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  background: var(--black-soft);
}

.image-split-content-inner {
  max-width: 460px;
}

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(201, 169, 110, 0.1);
}

.card {
  background: var(--black-soft);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  background: var(--black-mid);
}

.card-img {
  height: 260px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 32px;
}

.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.7;
}

.card-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

/* ── Hours / Info Bar ── */
.info-bar {
  background: var(--black-mid);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 48px 0;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.info-bar-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-bar-item p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.6;
}

.info-bar-item a {
  color: var(--cream);
  transition: color var(--transition);
}

.info-bar-item a:hover {
  color: var(--gold);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
}

.cta-banner-content {
  position: relative;
}

.cta-banner h2 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--grey-light);
  margin-bottom: 40px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  margin-bottom: 40px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col p, .footer-col a {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 2;
  display: block;
  transition: color var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 130px;
  width: auto;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Forms ── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(245, 237, 214, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-select option {
  background: var(--black-mid);
  color: var(--cream);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Map embed ── */
.map-container {
  height: 420px;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.1) brightness(0.6);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Menu Pages ── */
.menu-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-image {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 60px;
}

.menu-tab {
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.menu-tab:hover, .menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Functions Pages ── */
.functions-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}

.enquiry-form {
  background: var(--black-mid);
  padding: 60px;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ── */
.spacer-sm { height: 40px; }
.spacer-md { height: 80px; }
.spacer-lg { height: 120px; }

.hidden { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 30px; }
  .pillars { grid-template-columns: 1fr; }
  .image-split { grid-template-columns: 1fr; }
  .image-split-img { min-height: 400px; }
  .image-split-content { padding: 60px 40px; }
  .functions-intro { grid-template-columns: 1fr; gap: 40px; }
  .enquiry-form { padding: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; --nav-height: 70px; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-logo img { height: 73px; }
  .info-bar-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { order: -1; }
  .footer-social { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .enquiry-form { padding: 30px 20px; }
}

/* ── Awards Strip ── */
.awards-strip {
  background: var(--brown-dark, #503629);
  border-top: 1px solid rgba(182,152,93,0.3);
  border-bottom: 1px solid rgba(182,152,93,0.3);
  padding: 28px 20px;
}

.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.award-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.award-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.award-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.award-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold, #b6985d);
  letter-spacing: 0.02em;
}

.award-body {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.award-divider {
  width: 1px;
  height: 48px;
  background: rgba(182,152,93,0.35);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .awards-inner { gap: 28px; }
  .award-divider { display: none; }
  .award-item { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 8px; }
}

/* ── Pillar Image Panels ── */
.pillars-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-img {
  position: relative;
  height: 440px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: default;
}

.pillar-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, rgba(10,10,10,0.1) 100%);
  transition: background 0.4s ease;
}

.pillar-img:hover .pillar-img-overlay {
  background: linear-gradient(to top, rgba(80,54,41,0.92) 0%, rgba(80,54,41,0.4) 60%, rgba(80,54,41,0.1) 100%);
}

.pillar-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  color: var(--white);
}

.pillar-img-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold, #b6985d);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.pillar-img-content p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .pillars-section { grid-template-columns: 1fr; }
  .pillar-img { height: 300px; }
}

/* ── AHA Awards Logo ── */
.awards-aha-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@media (max-width: 600px) {
  .awards-aha-logo { display: none; }
  .award-divider:first-of-type { display: none; }
}

/* ── Nav logo: hide on hero, show on scroll ── */
.nav-logo {
  transition: opacity 0.3s ease;
}
.nav-logo.hero-visible {
  opacity: 0;
  pointer-events: none;
}

/* ── Magazine Cover Award ── */
.award-magazine {
  align-items: center;
  gap: 14px;
}

.award-mag-cover {
  height: 60px;
  width: auto;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
  object-fit: cover;
}

@media (max-width: 600px) {
  .award-magazine { flex-direction: row; }
  .award-mag-cover { height: 48px; }
}

/* ── Press Acclaim Strip ── */
.press-strip {
  padding: 48px 20px;
  border-top: 1px solid rgba(182,152,93,0.2);
  border-bottom: 1px solid rgba(182,152,93,0.2);
}

.press-inner {
  display: flex;
  justify-content: center;
}

.press-item {
  display: flex;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.press-item:hover { opacity: 0.8; }

.press-score {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold, #b6985d);
  line-height: 1;
  letter-spacing: -0.02em;
}

.press-score-denom {
  font-size: 2rem;
  opacity: 0.6;
}

.press-divider-v {
  width: 1px;
  height: 64px;
  background: rgba(182,152,93,0.4);
  flex-shrink: 0;
}

.press-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.press-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white, #fff);
  letter-spacing: 0.01em;
}

.press-pub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
}

@media (max-width: 480px) {
  .press-score { font-size: 3rem; }
  .press-quote { font-size: 1.2rem; }
  .press-item { gap: 18px; }
}

/* ── Press strip expanded ── */
.press-score-link {
  text-decoration: none;
}

.press-verdict {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 4px;
  display: block;
  max-width: 520px;
}

/* ── Press & Awards Section ── */
.press-section {
  padding: 100px 20px;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Hero review card */
.press-card-hero {
  background: rgba(182,152,93,0.06);
  border: 1px solid rgba(182,152,93,0.25);
  border-radius: 2px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-card-score {
  line-height: 1;
}

.score-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold, #b6985d);
  letter-spacing: -0.03em;
}

.score-denom {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold, #b6985d);
  opacity: 0.5;
}

.press-card-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white, #fff);
  line-height: 1.75;
  border: none;
  margin: 0;
  padding: 0;
}

.press-card-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid rgba(182,152,93,0.2);
}

.press-card-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold, #b6985d);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-card-pub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

.press-card-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  text-decoration: none;
  transition: opacity 0.2s;
}
.press-card-link:hover { opacity: 0.7; }

.press-card-cover-header {
  height: 5rem;
  display: flex;
  align-items: flex-start;
}

.press-card-mag-cover {
  max-width: 60px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  display: block;
  margin: 0;
}

/* Awards column */
.press-awards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.press-award-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(182,152,93,0.15);
  border-radius: 2px;
  padding: 24px 28px;
}

.press-aha-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  flex-shrink: 0;
}

.press-award-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold, #b6985d);
  margin: 0 0 4px;
}

.press-award-event {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.press-mag-thumb {
  height: 72px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  flex-shrink: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .press-grid { grid-template-columns: 1fr; }
  .score-num { font-size: 3.5rem; }
  .press-card-hero { padding: 32px 24px; }
  .press-card-quote { font-size: 0.95rem; }
}

/* ── Press Page ── */
.press-review-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.press-review-score { flex-shrink: 0; }

.press-review-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.press-review-byline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
}

.press-verdict-block { text-align: center; }

.press-verdict-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  margin-bottom: 20px;
}

.press-verdict-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.press-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  padding: 40px;
  border: 1px solid rgba(182,152,93,0.15);
  border-radius: 2px;
}

.press-highlight-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  padding-left: 20px;
  border-left: 2px solid var(--gold, #b6985d);
  display: block;
}

.press-awards-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.press-award-full-card {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid rgba(182,152,93,0.25);
  border-radius: 2px;
}

.press-aha-logo-lg {
  height: 64px;
  width: auto;
  filter: none;
  opacity: 1;
  margin-bottom: 20px;
}

.press-award-full-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--gold, #b6985d);
  margin-bottom: 8px;
}

.press-award-full-card p {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.press-mag-feature {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}

.press-mag-full {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .press-review-header { flex-direction: column; gap: 16px; }
  .press-awards-full { grid-template-columns: 1fr; }
  .press-mag-feature { grid-template-columns: 1fr; }
  .press-mag-full { max-width: 200px; margin: 0 auto; display: block; }
  .press-highlights { padding: 24px; }
}

/* ── Homepage press quote strip ── */
.press-quote-strip {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(182,152,93,0.15);
  border-bottom: 1px solid rgba(182,152,93,0.15);
  margin-top: 48px;
}

.press-quote-strip-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 16px;
  border: none;
  padding: 0;
}

.press-quote-strip-cite {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  font-style: normal;
}

/* ── Press page pub header ── */
.press-pub-header {
  margin-bottom: 40px;
}
.press-pub-header h2 {
  margin-top: 12px;
}

/* ── Press go-to dishes ── */
.press-goto {
  margin-top: 32px;
  padding: 24px 32px;
  border: 1px solid rgba(182,152,93,0.15);
  border-radius: 2px;
  text-align: center;
}

.press-goto-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  margin: 0 0 8px;
}

.press-goto-items {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ── Top 5 list feature badge ── */
.press-card-accolade {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(182,152,93,0.2);
}

.press-list-feature {
  margin-top: 32px;
}

.press-list-feature-inner {
  background: rgba(182,152,93,0.08);
  border: 1px solid rgba(182,152,93,0.35);
  border-radius: 2px;
  padding: 28px 36px;
  text-align: center;
}

.press-list-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  border: 1px solid rgba(182,152,93,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.press-list-feature-inner p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 16px;
}

/* ── Press card context line ── */
.press-card-context {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b6985d);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(182,152,93,0.2);
}

/* ── Sticky Reserve Button ── */
.sticky-reserve {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.sticky-reserve.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-reserve a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold, #b6985d);
  color: var(--black, #111);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: background 0.2s, box-shadow 0.2s;
}
.sticky-reserve a:hover {
  background: #c9ab70;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
}
@media (max-width: 480px) {
  .sticky-reserve { bottom: 16px; right: 16px; }
  .sticky-reserve a { padding: 13px 18px; font-size: 0.65rem; }
}

/* ── The Foreign Office ── */
.foreign-office {
  background: var(--brown-dark, #503629);
}
.foreign-office-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.foreign-office-img { overflow: hidden; min-height: 500px; }
.foreign-office-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s;
}
.foreign-office-img:hover img { filter: brightness(0.95); }
.foreign-office-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.foreign-office-content h2 {
  color: var(--gold, #b6985d);
  font-size: 3rem;
}
@media (max-width: 900px) {
  .foreign-office-inner { grid-template-columns: 1fr; }
  .foreign-office-img { min-height: 320px; }
  .foreign-office-content { padding: 48px 24px; }
}

/* ── Chef Vargas ── */
.chef-section { padding: 100px 20px; }
.chef-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.chef-awards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(182,152,93,0.25);
  border-radius: 2px;
  overflow: hidden;
}
.chef-award-item {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chef-award-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold, #b6985d);
  line-height: 1;
}
.chef-award-num small {
  font-size: 1.4rem;
  opacity: 0.6;
}
.chef-award-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.chef-award-divider {
  height: 1px;
  background: rgba(182,152,93,0.2);
}

.chef-photo-placeholder {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(182,152,93,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
}

.chef-photo-placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.chef-photo-panel {
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.chef-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .chef-inner { grid-template-columns: 1fr; }
  .chef-awards { flex-direction: row; }
  .chef-award-item { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .chef-awards { flex-direction: column; }
}

/* ── Desktop-only overrides (min-width: 769px) ── */
@media (min-width: 769px) {
  /* 1. Address "87 Rokeby Road, Subiaco" — +25% */
  .eyebrow {
    font-size: 0.875rem;
  }

  /* 2. Hero tagline "Heritage Dining · Premium Steaks..." — +25% */
  .hero-content p {
    font-size: 0.9375rem;
  }

  /* 3. "Discover" scroll label — +20% + bold */
  .hero-scroll {
    font-size: 0.78rem;
    font-weight: 700;
  }

  /* 4. Awards strip — headlines +30% then +20% = ×1.56 total, body text +25% */
  .award-title {
    font-size: 1.482rem;
  }

  .award-body {
    font-size: 0.8125rem;
  }

  /* 5. Awards layout — stacked, centre-aligned on desktop, dividers hidden */
  .awards-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 24px !important;
  }

  .award-item {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .award-text {
    text-align: center !important;
    align-items: center !important;
  }

  .award-divider {
    display: none;
  }
}

/* ============================================
   MOBILE OPTIMISATION — COMPREHENSIVE PASS
   ============================================ */

/* ── 1. Navigation: hamburger overlay uses full-screen nav-overlay (verified working).
        Nav-reserve button touch target on mobile. ── */
@media (max-width: 768px) {
  .nav-reserve {
    padding: 10px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
  }
}

/* ── 2. Page Hero (sub-pages): reduce height/padding on mobile ── */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    padding-bottom: 40px;
    padding-top: 80px;
  }
  .page-hero-content {
    padding: 0 20px;
  }
  .page-hero-content h1 {
    font-size: 2.5rem;
    max-width: 90vw;
  }
}

/* ── 3. Chef section: awards row should wrap on mobile ── */
@media (max-width: 900px) {
  .chef-awards {
    flex-wrap: wrap;
  }
}

/* ── 4. Image split: tighter content padding & shorter image on small screens ── */
@media (max-width: 600px) {
  .image-split-content {
    padding: 40px 24px;
  }
  .image-split-img {
    min-height: 280px;
  }
}

/* ── 5. Info bar: centre-align text when stacked ── */
@media (max-width: 768px) {
  .info-bar-grid {
    text-align: center;
  }
}

/* ── 7 & 12. Forms: iOS zoom prevention (≥16px), touch targets (≥44px) ── */
@media (max-width: 900px) {
  .form-input,
  .form-select {
    min-height: 44px;
    font-size: 16px;
  }
  .form-textarea {
    font-size: 16px;
  }
}

/* ── 8. Menus: tab touch targets ── */
@media (max-width: 768px) {
  .menu-tab {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Prevent menu content from overflowing viewport */
  .menu-panel-content {
    overflow-x: hidden;
  }
  .menu-item {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ── 9. Contact: map iframe always fills container ── */
.map-container iframe {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

/* ── 11. Press page: small-screen polish ── */
@media (max-width: 480px) {
  .press-highlights {
    padding: 20px 16px;
  }
  .press-review-header {
    gap: 12px;
  }
}

/* ── 12. General: all buttons get minimum 44px touch target ── */
@media (max-width: 900px) {
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── 12. Small-screen container & footer padding ── */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }
  .footer {
    padding: 60px 0 30px;
  }
  .card-body {
    padding: 24px 20px;
  }
}

/* ── Pillar cards: reduce padding on very small screens ── */
@media (max-width: 480px) {
  .pillar {
    padding: 40px 24px;
  }
}

/* ── Section padding: reduce on very small screens ── */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }
  .chef-section {
    padding: 64px 16px;
  }
}
