/* ============================================================
   NEW SUN RISE — STYLESHEET
   Black & gold theme matching newsunriseseaford.co.uk exactly
   ============================================================ */

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

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === Design Tokens === */
:root {
  --black:       #0a0a0a;
  --dark:        #1a1814;
  --dark-mid:    #222018;
  --dark-card:   #141414;
  --gold:        #c8a84b;
  --gold-light:  #d9bc72;
  --gold-dim:    rgba(200,168,75,0.25);
  --white:       #ffffff;
  --grey:        #aaaaaa;
  --grey-light:  #cccccc;
  --border:      rgba(200,168,75,0.35);
  --font-script: 'Parisienne', cursive;
  --font-body:   'Raleway', sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-display:'Cinzel', 'Cormorant Garamond', serif;
}

::selection { background: var(--gold); color: var(--black); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  background-color: var(--dark);
  background-image: url('images/dishes/Background Half.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 28px 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

/* Logo box — liquid glass */
.logo-box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.10);
  padding: 18px 44px 16px;
  margin-bottom: 20px;
  transition: padding 0.3s ease, margin 0.3s ease;
}
header.scrolled { padding-top: 12px; }
header.scrolled .logo-box { padding: 8px 28px 6px; margin-bottom: 8px; }
header.scrolled .logo-img { height: clamp(40px, 6vw, 56px); }
.logo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}

.logo-img {
  height: clamp(70px, 12vw, 120px);
  width: auto;
  display: block;
  margin: 0 auto;
  transition: height 0.3s ease;
}

/* Nav */
nav {
  padding: 0;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
nav ul li a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 22px;
  transition: color 0.2s;
  position: relative;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
}
nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ============================================================
   PAGE TITLE BANNER
   ============================================================ */
.page-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  text-align: center;
  padding: 78px 20px 72px;
  border-bottom: 1px solid var(--border);
}
.page-banner .banner-img {
  position: absolute;
  inset: 0;
  background: url('images/hero-poster.jpg') center 40% / cover no-repeat;
  z-index: 0;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,10,0.82), rgba(10,10,10,0.88));
  z-index: 1;
}
.page-banner h1 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 8px;
  text-transform: uppercase;
}
.page-banner h1::before,
.page-banner h1::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: middle;
  opacity: 0.85;
}
.page-banner h1::before { margin-right: 22px; }
.page-banner h1::after  { margin-left: 22px; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 60px 20px; }
.container { max-width: 1080px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title::before {
  content: '✦';
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0;
  margin-bottom: 12px;
  opacity: 0.85;
}
.section-title h2 {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-title p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--grey);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ============================================================
   HOME HERO (dark body area below header)
   ============================================================ */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  text-align: center;
  min-height: clamp(520px, 78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  border-bottom: 1px solid var(--border);
}
.home-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.52) 100%),
    linear-gradient(rgba(10,10,10,0.36), rgba(10,10,10,0.22) 45%, rgba(10,10,10,0.72));
  z-index: 1;
}
.home-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-video { display: none; }
  .home-hero .hero-content { animation: none; }
}
.home-hero .notice {
  display: inline-block;
  border: 1px solid rgba(200,168,75,0.55);
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(3px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 9px 28px;
  margin-bottom: 34px;
}
.home-hero h2 {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.85);
  line-height: 1.15;
}
.home-hero p {
  color: #e8e4da;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.9);
}
.hero-ornament {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 8px;
  margin: 18px 0 6px;
  opacity: 0.9;
}
.hero-ornament::before { content: '─────  '; opacity: 0.45; letter-spacing: 0; }
.hero-ornament::after  { content: '  ─────'; opacity: 0.45; letter-spacing: 0; }
.btn-gold {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 13px 42px;
  margin-top: 28px;
  z-index: 0;
  transition: color 0.35s ease;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn-gold:hover { color: var(--black); }
.btn-gold:hover::before { transform: scaleX(1); }

/* ============================================================
   CUISINE PHOTO CARDS (home)
   ============================================================ */
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.cuisine-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(200,168,75,0.25);
  transition: border-color 0.3s;
}
.cuisine-card .cuisine-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.95);
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.3, 1), filter 0.5s;
}
.cuisine-card:hover { border-color: var(--gold); }
.cuisine-card:hover .cuisine-img {
  transform: scale(1.07);
  filter: brightness(0.78) saturate(1.05);
}
.cuisine-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.25) 55%, transparent 100%);
}
.cuisine-card .cuisine-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 22px 26px;
  text-align: center;
}
.cuisine-card .cuisine-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.cuisine-card .cuisine-desc {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.55;
}

/* ============================================================
   SCROLL REVEAL (progressive enhancement — JS adds classes)
   ============================================================ */
.reveal-init {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-init.reveal-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-init { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   BLOG / NEWS CARDS
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.post-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.post-card:hover {
  border-color: rgba(200,168,75,0.45);
  transform: translateY(-3px);
}
.post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.4s;
}
.post-card:hover .post-card-img {
  opacity: 0.8;
  transform: scale(1.04);
}
.post-card-body {
  padding: 22px 20px;
  border-top: 1px solid var(--border);
}
.post-date {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.post-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}
.post-card p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid rgba(200,168,75,0.12);
}
.hours-table td {
  padding: 13px 10px;
  font-size: 0.88rem;
  letter-spacing: 1px;
}
.hours-table td:first-child {
  color: var(--grey);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--white);
}
.closed-day td:last-child {
  color: var(--gold) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hours-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 1px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { background: var(--black); }

.menu-category-select {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 48px;
  padding: 14px 18px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 1px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a84b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.menu-category-select option {
  background: var(--dark);
}

.menu-section-title {
  text-align: center;
  margin-bottom: 10px;
}
.menu-section-title h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.menu-section-title p {
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-top: 6px;
}
.menu-gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 20px 0 36px;
}

.menu-cat { display: none; }
.menu-cat.visible { display: block; }

.menu-sub-heading {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin: 36px 0 20px;
}
.menu-sub-desc {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
}
.menu-item-card {
  background: var(--dark-card);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-left: 2px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.menu-item-card:hover {
  background: #1c1a14;
  border-left-color: var(--gold);
}
.item-body { flex: 1; }
.item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.item-num {
  color: var(--gold);
  font-weight: 400;
  margin-right: 3px;
}
.item-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 6px;
}
.item-badges { display: flex; gap: 5px; flex-wrap: wrap; }
.badge {
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--border);
  color: var(--gold);
}
.badge-v  { border-color: rgba(100,200,100,0.4); color: #6dc86d; }
.badge-m  { border-color: rgba(200,100,50,0.4);  color: #e07050; }
.badge-n  { border-color: rgba(200,168,75,0.4);  color: var(--gold); }
.item-price {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.size-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.size-price  { font-size: 0.75rem; color: var(--grey); }
.size-price strong { color: var(--gold); }

.allergen-bar {
  background: #111008;
  border: 1px solid rgba(200,168,75,0.2);
  padding: 16px 24px;
  margin-bottom: 36px;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-align: center;
}
.allergen-bar strong { color: var(--gold-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
}
.about-content {
  background: var(--dark);
  padding: 60px 20px;
  text-align: center;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.about-script {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold);
  margin: 24px 0 16px;
  display: block;
}
.about-content p {
  color: var(--grey-light);
  max-width: 680px;
  margin: 0 auto 16px;
  font-size: 0.92rem;
  line-height: 1.8;
}
/* ============================================================
   LIQUID GLASS INFO PANELS
   ============================================================ */
.glass-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 48px auto 0;
  text-align: left;
}
/* soft gold glow behind the panels so the blur catches light */
.glass-wrap::before {
  content: '';
  position: absolute;
  inset: -70px -90px;
  background:
    radial-gradient(30% 34% at 32% 26%, rgba(200,168,75,0.18), transparent),
    radial-gradient(28% 32% at 70% 76%, rgba(217,188,114,0.12), transparent);
  pointer-events: none;
}
.glass-panel {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 28px 30px 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}
.glass-panel h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.glass-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.glass-row:last-child { border-bottom: none; }
.glass-row .g-label {
  color: var(--grey);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.glass-row .g-value {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  text-align: right;
}
.glass-row .g-value a { color: var(--gold); }

/* Animated gold light — slow sheen travelling across all glass surfaces */
.logo-box::after,
.glass-panel::after {
  content: '';
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 45%;
  background: linear-gradient(105deg,
    transparent,
    rgba(217,188,114,0.10) 40%,
    rgba(255,240,200,0.20) 50%,
    rgba(217,188,114,0.10) 60%,
    transparent);
  transform: translateX(-140%) rotate(8deg);
  animation: goldSweep 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes goldSweep {
  0%   { transform: translateX(-140%) rotate(8deg); }
  60%  { transform: translateX(360%)  rotate(8deg); }
  100% { transform: translateX(360%)  rotate(8deg); }
}
/* gentle drift of the gold glow behind panels */
.glass-wrap::before {
  animation: glowDrift 12s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate3d(-14px, -10px, 0); opacity: 0.85; }
  to   { transform: translate3d(16px, 12px, 0);  opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-box::after,
  .glass-panel::after { animation: none; opacity: 0; }
  .glass-wrap::before { animation: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
  font-size: 0.88rem;
}
.contact-row .cr-label {
  min-width: 90px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 2px;
}
.contact-row .cr-value { color: var(--grey-light); line-height: 1.6; }
.contact-row a { color: var(--white); }
.contact-row a:hover { color: var(--gold); }

.contact-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .btn-gold { margin-top: 20px; width: 100%; text-align: center; cursor: pointer; }

.map-box {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  margin-top: 28px;
}
.map-box iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.25);
}
.map-box .map-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  padding: 14px 12px;
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-align: center;
}
.map-box a { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 56px 20px 24px;
  position: relative;
}
footer::before {
  content: '✦';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #050505;
  color: var(--gold);
  font-size: 0.8rem;
  padding: 0 18px;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col p,
.footer-col address {
  font-size: 0.82rem;
  color: var(--grey);
  font-style: normal;
  line-height: 1.9;
}
.footer-col a { color: var(--grey); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--grey);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid rgba(200,168,75,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 1px;
}

/* ============================================================
   NOTICE BANNER
   ============================================================ */
.notice-banner {
  background: #0f0e09;
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 1.5px;
}
.notice-banner a { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark, #111);
  border: 1px solid rgba(200,168,75,.5);
  color: #c8a84b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s, transform .22s;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover {
  background: #c8a84b;
  color: #0a0a0a;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav { display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 10px 0 16px; border-top: 1px solid var(--border); }
  nav ul li a { padding: 11px 20px; font-size: 0.78rem; }
  nav ul li a.active::after { display: none; }
  header { text-align: center; position: relative; }
  .logo-box { padding: 14px 28px 12px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .logo-name { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
