/*
Theme Name: Potzilla Child - Premium
Theme URI: https://potzilla.dk/
Description: Premium luxury child theme for Potzilla Copenhagen - inspired by dalongyi.fr
Author: Potzilla
Template: twentytwentyfive
Version: 3.4.3
Text Domain: potzilla-child
*/

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

/* =====================================================
   VARIABLES — dalongyi.fr color system
   ===================================================== */
:root {
  --crimson:     #8B1428;
  --crimson-dark:#6b0e1e;
  --white:       #ffffff;
  --off-white:   #faf6f2;
  --dark:        #1a0f0f;
  --gray:        #5a5050;
  --border:      #e8ddd5;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

p { line-height: 1.85; }
a { color: inherit; text-decoration: none; transition: opacity 0.25s ease; }
a:hover { opacity: 0.8; }

/* =====================================================
   FULL-WIDTH OVERRIDES (WordPress block constraints)
   ===================================================== */
.wp-block-group,
.wp-block-group__inner-container,
.wp-block-post-content,
.entry-content,
.wp-site-blocks,
.wp-block-template-part,
main.wp-block-group {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.is-layout-constrained > *,
.is-layout-constrained > .alignwide,
.is-layout-constrained > .alignfull {
  max-width: 100% !important;
}
.wp-block-post-content > *,
.entry-content > * { max-width: 100% !important; }
.wp-site-blocks { padding-top: 0 !important; padding-bottom: 0 !important; }
.potzilla-page,
.potzilla-hero,
.potzilla-section,
.potzilla-band {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =====================================================
   PAGE WRAPPER
   ===================================================== */
.potzilla-page {
  background: var(--white);
  overflow: hidden;
}

/* =====================================================
   HERO
   ===================================================== */
.potzilla-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(20, 5, 5, 0.45) 0%, rgba(20, 5, 5, 0.75) 80%),
    var(--potzilla-hero-image, url('/wp-content/uploads/2026/07/potzilla-992.webp')) center / cover no-repeat !important;
  background-attachment: fixed !important;
  text-align: center;
  overflow: hidden;
}

.potzilla-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

.potzilla-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 0.6rem;
}

.potzilla-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.potzilla-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.potzilla-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.potzilla-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* Solid crimson button */
.potzilla-btn--solid {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.potzilla-btn--solid:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  opacity: 1;
}

/* Outline white button (on hero) */
.potzilla-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.potzilla-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  opacity: 1;
}

/* White button (on crimson sections) */
.potzilla-btn--white {
  background: var(--white);
  color: var(--crimson);
  border-color: var(--white);
}
.potzilla-btn--white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  opacity: 1;
}

/* Crimson outline (on white sections) */
.potzilla-btn--crimson-outline {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}
.potzilla-btn--crimson-outline:hover {
  background: var(--crimson);
  color: var(--white);
  opacity: 1;
}

/* =====================================================
   SECTION BASE
   ===================================================== */
.potzilla-section {
  width: 100%;
}

/* Crimson red sections */
.potzilla-section--crimson {
  background: var(--crimson);
  color: var(--white);
}
.potzilla-section--crimson h2,
.potzilla-section--crimson h3 {
  color: var(--white);
}
.potzilla-section--crimson p,
.potzilla-section--crimson li {
  color: rgba(255,255,255,0.88);
}

/* =====================================================
   FEATURE CARDS GRID
   ===================================================== */
.potzilla-grid-section {
  background: var(--off-white);
  padding: 5rem 2rem;
}

.potzilla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.potzilla-card {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
  background: var(--white);
  transition: background 0.25s ease;
}
.potzilla-card:last-child { border-right: none; }

.potzilla-card:hover {
  background: var(--crimson);
}
.potzilla-card:hover h3,
.potzilla-card:hover p {
  color: var(--white);
}

.potzilla-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.potzilla-card:hover h3 {
  border-bottom-color: rgba(255,255,255,0.3);
}

.potzilla-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  transition: color 0.25s ease;
}

/* =====================================================
   OPENING HOURS BAND
   ===================================================== */
.potzilla-band {
  background: var(--crimson);
  padding: 2rem 2rem;
}

.potzilla-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.potzilla-band__inner strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.3);
  padding-right: 2.5rem;
}

.potzilla-band__inner span {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

/* =====================================================
   SPLIT SECTIONS (dalongyi.fr style — 50/50)
   ===================================================== */
.potzilla-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.potzilla-split--reverse {
  direction: rtl;
}
.potzilla-split--reverse > * {
  direction: ltr;
}

/* Text content panel */
.potzilla-panel--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem;
}

/* Image panel — full bleed photo */
.potzilla-panel--image {
  background: var(--crimson-dark) center / cover no-repeat;
  min-height: 520px;
}

/* White section panel styling */
.potzilla-section .potzilla-panel--content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--crimson);
  margin-bottom: 0.4rem;
}
.potzilla-section .potzilla-panel--content p {
  color: var(--gray);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}
.potzilla-section .potzilla-panel--content .potzilla-btn {
  align-self: flex-start;
  margin-top: 1.5rem;
}

/* Crimson section panel text overrides */
.potzilla-section--crimson .potzilla-panel--content h2 {
  color: var(--white);
}
.potzilla-section--crimson .potzilla-panel--content p {
  color: rgba(255,255,255,0.88);
}
.potzilla-section--crimson .potzilla-panel--content strong {
  color: var(--white);
}

/* =====================================================
   LISTS
   ===================================================== */
.potzilla-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.potzilla-list li {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.potzilla-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

/* =====================================================
   SECTION DIVIDER / ORNAMENT
   ===================================================== */
.potzilla-ornament {
  text-align: center;
  padding: 2rem 0;
  font-size: 1.4rem;
  color: var(--crimson);
  opacity: 0.5;
  letter-spacing: 0.5em;
}

/* =====================================================
   FOOTER BAND
   ===================================================== */
.potzilla-footer {
  background: var(--dark);
  padding: 2.5rem 2rem;
  text-align: center;
}

.potzilla-footer p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* =====================================================
   NAVIGATION OVERRIDES
   ===================================================== */
.wp-block-site-title a,
.site-title a {
  font-family: var(--font-heading);
  font-size: 1.6rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark) !important;
}

.wp-block-navigation a,
.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .potzilla-panel--content {
    padding: 4rem 3rem;
  }
}

@media (max-width: 860px) {
  .potzilla-split,
  .potzilla-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .potzilla-panel--image {
    min-height: 320px;
    order: -1;
  }

  .potzilla-panel--content {
    padding: 3.5rem 2rem;
  }

  .potzilla-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .potzilla-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .potzilla-card:last-child { border-bottom: none; }

  .potzilla-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .potzilla-band__inner {
    flex-direction: column;
    gap: 0.6rem;
  }
  .potzilla-band__inner strong {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-right: 0;
    padding-bottom: 0.6rem;
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 600px) {
  .potzilla-hero { min-height: 85vh; }
  .potzilla-buttons { flex-direction: column; align-items: center; }
  .potzilla-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* =====================================================
   LOGO IN NAV
   ===================================================== */
a.site-logo img {
  max-height: 55px;
  width: auto;
}

/* =====================================================
   SITE FOOTER OVERRIDE
   ===================================================== */
.potzilla-site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem 2rem;
}

.potzilla-site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.potzilla-site-footer h2,
.potzilla-site-footer h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.potzilla-site-footer h2 {
  font-size: 1.6rem;
}

.potzilla-site-footer h3 {
  font-size: 1rem;
}

.potzilla-site-footer p,
.potzilla-site-footer a,
.potzilla-site-footer li {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

.potzilla-site-footer a:hover {
  color: var(--white);
}

.potzilla-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.potzilla-site-footer li + li {
  margin-top: 0.4rem;
}

.potzilla-site-footer__bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.potzilla-site-footer__bottom p {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .potzilla-site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* Footer refinement - cache-busted in functions.php */
.potzilla-site-footer {
  background: #160b0b !important;
  color: #fff !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

.potzilla-site-footer__photo {
  min-height: clamp(140px, 18vw, 220px);
  background: linear-gradient(90deg, rgba(22,11,11,0.94), rgba(22,11,11,0.48)), url('/wp-content/uploads/2026/07/Image_20260714150926_43_341-2048x1152.jpg') center 45% / cover no-repeat !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(217,164,59,0.26);
}

.potzilla-site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 4rem) 2rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.potzilla-site-footer__kicker {
  margin: 0 0 0.75rem !important;
  color: #d9a43b !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
}

.potzilla-site-footer h2,
.potzilla-site-footer h3 {
  color: #fff !important;
  margin: 0 0 1rem !important;
  line-height: 1.15;
}

.potzilla-site-footer h2 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  letter-spacing: 0.18em !important;
}

.potzilla-site-footer h3 {
  font-size: 0.95rem !important;
  letter-spacing: 0.22em !important;
}

.potzilla-site-footer p,
.potzilla-site-footer a,
.potzilla-site-footer li {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.95rem !important;
  line-height: 1.75;
}

.potzilla-site-footer__brand p:not(.potzilla-site-footer__kicker) {
  max-width: 560px;
}

.potzilla-site-footer a {
  text-decoration: none;
  border-bottom: 1px solid rgba(217,164,59,0.38);
}

.potzilla-site-footer a:hover {
  color: #fff !important;
  border-bottom-color: #d9a43b;
}

.potzilla-site-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.potzilla-site-footer li + li {
  margin-top: 0.55rem;
}

.potzilla-site-footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 2rem 1.7rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.potzilla-site-footer__bottom p {
  margin: 0 !important;
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

@media (max-width: 860px) {
  .potzilla-site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* All-you-can-eat pricing */
.potzilla-pricing {
  position: relative;
  overflow: hidden;
  background: #160b0b;
  color: #fff;
  padding: clamp(4rem, 7vw, 6rem) 2rem;
}

.potzilla-pricing::before,
.potzilla-pricing::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0;
}

.potzilla-pricing::before {
  top: -110px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(217,164,59,0.14);
}

.potzilla-pricing::after {
  right: -100px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
}

.potzilla-pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.potzilla-pricing__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.potzilla-pricing__intro h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.potzilla-pricing__intro p {
  color: rgba(255,255,255,0.8);
  font-size: 1.04rem;
  line-height: 1.9;
}

.potzilla-pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 1.25rem;
}

.potzilla-price-card--single {
  grid-column: 1 / -1;
  width: min(100%, 720px);
  max-width: 720px;
}

.potzilla-price-card {
  position: relative;
  border: 1px solid rgba(217,164,59,0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  backdrop-filter: blur(10px);
  text-align: left;
}

.potzilla-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(217,164,59,0.85);
  pointer-events: none;
}

.potzilla-price-card h3 {
  color: #d9a43b;
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.potzilla-price-card dl {
  margin: 0;
}

.potzilla-price-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.potzilla-price-card dt,
.potzilla-price-card dd {
  margin: 0;
  color: rgba(255,255,255,0.84);
}

.potzilla-price-card dd {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.potzilla-pricing__note {
  max-width: 760px;
  margin: 1.4rem auto 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .potzilla-pricing__grid {
    grid-template-columns: 1fr;
  }

  .potzilla-pricing__intro h2 {
    letter-spacing: 0.12em;
  }

  .potzilla-price-card {
    text-align: left;
  }
}


/* =====================================================
   HEADER - restrained overlay on the homepage
   ===================================================== */
header.wp-block-template-part {
  position: relative;
  z-index: 100;
  background: #160b0b;
  color: var(--white);
}

header.wp-block-template-part > .wp-block-group,
header.wp-block-template-part > .wp-block-group > .wp-block-group {
  background: transparent !important;
}

header.wp-block-template-part .wp-block-group.alignwide {
  width: 100% !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding: 1.25rem clamp(1.5rem, 3vw, 3.5rem) !important;
}

header.wp-block-template-part .wp-block-site-logo {
  flex-shrink: 0;
}

header.wp-block-template-part .wp-block-site-logo img {
  display: block;
  width: clamp(145px, 12vw, 180px) !important;
  height: auto;
}

header.wp-block-template-part .wp-block-navigation__container {
  gap: clamp(1.25rem, 2vw, 2.25rem) !important;
}

header.wp-block-template-part .wp-block-navigation a,
header.wp-block-template-part .wp-block-navigation-item__content {
  color: var(--white) !important;
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

header.wp-block-template-part .wp-block-navigation a[href*="/reservations"] {
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.58);
}

header.wp-block-template-part .wp-block-navigation a[href*="/reservations"]:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  opacity: 1;
}

header.wp-block-template-part .wp-block-navigation__responsive-container-open,
header.wp-block-template-part .wp-block-navigation__responsive-container-close {
  color: var(--white);
}

header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
  background: #160b0b !important;
  color: var(--white) !important;
}

body.home header.wp-block-template-part {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(16,7,7,0.78) 0%, rgba(16,7,7,0.34) 62%, rgba(16,7,7,0) 100%);
}

body.home header.wp-block-template-part + main.wp-block-group {
  margin-block-start: 0 !important;
}

@media (max-width: 860px) {
  body.home header.wp-block-template-part,
  header.wp-block-template-part {
    background: rgba(22,11,11,0.96);
  }

  header.wp-block-template-part .wp-block-group.alignwide {
    padding: 0.85rem 1rem !important;
  }

  header.wp-block-template-part .wp-block-site-logo img {
    width: 140px !important;
  }

  header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
    padding: 1.25rem !important;
  }

  header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    color: var(--white) !important;
  }
}


/* Reservation page */
body.page-id-18 main#wp--skip-link--target {
  margin-top: 0 !important;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 2rem) !important;
  background: var(--off-white);
}

body.page-id-18 .wp-block-post-title {
  width: min(100%, 900px) !important;
  max-width: 900px !important;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem) !important;
  padding: 0 !important;
  color: var(--crimson);
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
}

body.page-id-18 .entry-content {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.page-id-18 .entry-content > p {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.page-id-18 .BookingBox {
  width: min(100%, 700px) !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  overflow: hidden;
}

body.page-id-18 .BookingBox iframe {
  display: block;
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  border: 0;
}

/* Footer credit */
.potzilla-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.potzilla-site-footer__credit {
  text-align: right;
  text-transform: none !important;
  letter-spacing: 0.06em !important;
}

.potzilla-site-footer__credit a {
  color: #d9a43b !important;
  border-bottom: 1px solid rgba(217,164,59,0.45);
}

@media (max-width: 760px) {
  .potzilla-site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .potzilla-site-footer__credit {
    text-align: left;
  }
}


/* Menu page */
body.page-id-19 main#wp--skip-link--target {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-block-start: 0 !important;
}

body.page-id-19 main#wp--skip-link--target > .wp-block-group.alignfull {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page-id-19 .wp-block-post-title {
  display: none;
}

body.page-id-19 .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  margin-block-start: 0 !important;
  padding: 0 !important;
}

.potzilla-menu-page {
  background: var(--off-white);
  color: var(--dark);
}

.potzilla-menu-page > *,
.potzilla-menu-hero > *,
.potzilla-menu-price-grid > *,
.potzilla-menu-policy > * {
  margin-block-start: 0 !important;
}

.potzilla-menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 620px;
  background: #160b0b;
  color: var(--white);
}

.potzilla-menu-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 5rem clamp(2rem, 6vw, 7rem) !important;
}

.potzilla-menu-kicker {
  margin-bottom: 1.25rem;
  color: #d9a43b;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.potzilla-menu-title {
  max-width: 680px;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 4.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.potzilla-menu-lead {
  max-width: 570px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

.potzilla-menu-btn .wp-block-button__link {
  border: 1px solid var(--crimson);
  border-radius: 0;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 0.9rem 1.5rem;
  text-transform: uppercase;
}

.potzilla-menu-btn .wp-block-button__link:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  opacity: 1;
}

.potzilla-menu-hero__image,
.potzilla-menu-policy__image {
  min-height: 520px;
  margin: 0 !important;
  overflow: hidden;
}

.potzilla-menu-hero__image img,
.potzilla-menu-policy__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.potzilla-menu-pricing {
  padding: 6rem 2rem !important;
}

.potzilla-menu-container {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.potzilla-menu-section-kicker {
  margin-bottom: 0.7rem;
  color: var(--crimson);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.potzilla-menu-heading {
  margin-bottom: 1rem;
  color: var(--crimson);
  font-size: 3rem;
  text-align: center;
}

.potzilla-menu-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem !important;
  color: var(--gray);
  text-align: center;
}

.potzilla-menu-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.potzilla-menu-price-card {
  padding: clamp(1.75rem, 4vw, 3rem) !important;
  border: 1px solid var(--border);
  border-top: 3px solid var(--crimson);
  background: var(--white);
}

.potzilla-menu-price-card h3 {
  margin-bottom: 0.5rem;
  color: var(--crimson);
  font-size: 1.65rem;
}

.potzilla-menu-price-card__caption {
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.potzilla-menu-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 !important;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  color: var(--gray);
}

.potzilla-menu-price-row strong {
  color: var(--dark);
  font-size: 1.2rem;
  white-space: nowrap;
}

.potzilla-menu-policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--crimson);
  color: var(--white);
}

.potzilla-menu-policy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding: 5rem clamp(2rem, 6vw, 7rem) !important;
}

.potzilla-menu-policy__content h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 2.8rem;
}

.potzilla-menu-policy__content > p {
  color: rgba(255,255,255,0.82);
}

.potzilla-menu-policy-list {
  margin: 1.5rem 0 2rem;
}

.potzilla-menu-policy-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 !important;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
}

.potzilla-menu-policy-row strong {
  color: var(--white);
  text-align: right;
}

.potzilla-menu-policy-note {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.66) !important;
}

@media (max-width: 860px) {
  .potzilla-menu-hero,
  .potzilla-menu-policy {
    grid-template-columns: minmax(0, 1fr);
  }

  .potzilla-menu-hero__content,
  .potzilla-menu-policy__content {
    padding: 4rem 1.5rem !important;
  }

  .potzilla-menu-title {
    font-size: 2.6rem;
  }

  .potzilla-menu-heading,
  .potzilla-menu-policy__content h2 {
    font-size: 2.1rem;
  }

  .potzilla-menu-hero__image,
  .potzilla-menu-policy__image {
    min-height: 320px;
  }

  .potzilla-menu-price-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .potzilla-menu-pricing {
    padding: 4rem 1rem !important;
  }
}

@media (max-width: 520px) {
  .potzilla-menu-price-row,
  .potzilla-menu-policy-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .potzilla-menu-policy-row strong {
    text-align: left;
  }
}
