/*
Theme Name: Hildes Cafe Flex 1.2.8 Startseite
Theme URI: https://hildes.cafe/
Author: Hildes Cafe
Description: Flexibles WordPress-Theme fuer hildes.cafe mit Startseite, Speisekarte, Veranstaltungen, Catering, Shop/WooCommerce und Kontakt.
Version: 1.2.8
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: hildes-cafe-flex
*/

:root {
  --dark: #111713;
  --dark-soft: #181c18;
  --olive: #505746;
  --olive-deep: #444b3d;
  --gold: #f0b93f;
  --cream: #fff8ed;
  --muted: rgba(255, 248, 237, 0.72);
  --line: rgba(255, 248, 237, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--dark-soft);
  font-family: Karla, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 185, 63, 0.1), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255, 248, 237, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.025), transparent 38%);
}

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

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

.hero-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  grid-template-areas:
    "address nav socials"
    "logo nav phone";
  align-items: start;
  gap: 18px 42px;
  padding: 18px clamp(24px, 5vw, 64px);
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(17, 23, 19, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.page-header .logo {
  grid-area: auto;
  width: 150px;
}

.page-header .main-nav {
  grid-area: auto;
  padding-top: 0;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.page-header .phone-button {
  grid-area: auto;
}

.address {
  grid-area: address;
  margin: 0;
  color: rgba(255, 248, 237, 0.75);
  font-size: 0.94rem;
}

.logo {
  grid-area: logo;
  align-self: center;
  width: 210px;
  margin-top: 2px;
}

.logo img,
.footer img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.main-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6vw, 72px);
  padding-top: 82px;
  color: rgba(255, 248, 237, 0.86);
}

.main-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu-item {
  margin: 0;
}

.main-nav a {
  position: relative;
  padding-bottom: 18px;
}

.main-nav a.active::after,
.main-nav .current-menu-item > a::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cream);
}

.socials {
  grid-area: socials;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.85rem;
  font-weight: 800;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 248, 237, 0.82);
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 220ms ease, color 220ms ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-icon:hover {
  color: #1c1a13;
  background: var(--gold);
  transform: translateY(-2px) scale(1.04);
}

.phone-button {
  grid-area: phone;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: #1c1a13;
  background: var(--gold);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 18px 46px rgba(240, 185, 63, 0.22);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease, filter 220ms ease;
}

.phone-button:hover,
.product-card button:hover,
.contact-form button:hover,
.order-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 24px 60px rgba(240, 185, 63, 0.28);
}

a.is-pressed,
button.is-pressed {
  transform: scale(0.975) !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  z-index: -2;
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(rgba(9, 11, 9, 0.44), rgba(9, 11, 9, 0.64)),
    radial-gradient(circle at center, rgba(9, 11, 9, 0.08), rgba(9, 11, 9, 0.56));
}

.hero-content {
  width: min(1050px, calc(100% - 40px));
  padding-top: 130px;
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.info-strip h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.4vw, 5.25rem);
  line-height: 1.28;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 248, 237, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 2px solid currentColor;
  color: var(--cream);
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 22px;
  height: 38px;
  border: 2px solid var(--cream);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cream);
  transform: translateX(-50%);
}

.info-strip {
  position: relative;
  z-index: 5;
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--olive);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.info-strip article {
  min-height: 258px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 32px;
  text-align: center;
  border-right: 1px solid rgba(17, 23, 19, 0.55);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease;
}

.info-strip article:hover,
.product-card:hover,
.vehicle-grid article:hover,
.feature-grid article:hover,
.price-grid article:hover {
  transform: translateY(-6px);
}

.info-strip article:last-child {
  border-right: 0;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--cream);
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1rem;
}

.info-strip article:nth-child(2) .line-icon {
  border-radius: 2px;
}

.info-strip article:nth-child(3) .line-icon {
  border-radius: 5px;
}

.info-strip h2 {
  margin-bottom: 2px;
  font-size: 1.48rem;
  line-height: 1.25;
}

.info-strip p {
  margin: 0;
  color: rgba(255, 248, 237, 0.86);
}

.story-section,
.host-section,
.visit-section,
.menu-section,
.proof-section,
.spotlight-section,
.social-proof-section,
.reviews {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 5vw, 64px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  padding-top: clamp(118px, 12vw, 190px);
}

.kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-copy h2,
.host-copy h2,
.visit-section h2,
.menu-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.08;
}

.story-copy p:not(.kicker),
.host-copy p:not(.kicker),
.visit-section p:not(.kicker) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-image {
  margin: 0;
}

.story-image img,
.visit-section img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.story-image img {
  aspect-ratio: 5 / 4;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  padding-block: 0;
}

.proof-section article {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(240, 185, 63, 0.08), transparent),
    #141a16;
}

.proof-section strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.proof-section span {
  color: var(--muted);
}

.host-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.2), rgba(17, 23, 19, 0.78)),
    #20251f;
}

.host-image {
  position: relative;
  margin: 0;
}

.host-image::before {
  content: "";
  position: absolute;
  inset: -22px 22px 22px -22px;
  z-index: 0;
  border: 1px solid var(--gold);
  opacity: 0.62;
}

.host-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.host-copy {
  max-width: 720px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  background: #20251f;
}

.visit-section img {
  aspect-ratio: 4 / 3;
}

.spotlight-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(17, 23, 19, 0.24), rgba(240, 185, 63, 0.08)),
    #151b17;
  border-block: 1px solid var(--line);
}

.spotlight-copy h2,
.social-proof-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
}

.spotlight-copy p:not(.kicker),
.social-proof-section p {
  max-width: 760px;
  color: var(--muted);
}

.spotlight-stack {
  display: grid;
  gap: 12px;
}

.spotlight-stack a {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 248, 237, 0.04);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease;
}

.spotlight-stack a:hover {
  transform: translateY(-4px);
  background: rgba(240, 185, 63, 0.1);
}

.spotlight-stack span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-stack strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.16;
}

.experience-section {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(17, 23, 19, 0.18), rgba(17, 23, 19, 0.84)),
    #151b17;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.04), rgba(17, 23, 19, 0.42)),
    rgba(255, 248, 237, 0.035);
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), background 300ms ease, box-shadow 300ms ease;
}

.experience-card span {
  color: var(--gold);
  font-weight: 900;
}

.experience-card h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
  line-height: 1.05;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
}

.experience-card:hover {
  background:
    linear-gradient(180deg, rgba(240, 185, 63, 0.13), rgba(17, 23, 19, 0.52)),
    rgba(255, 248, 237, 0.055);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.signature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  padding: clamp(80px, 10vw, 142px) clamp(24px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(80, 87, 70, 0.94), rgba(17, 23, 19, 0.96)),
    var(--olive);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 1;
}

.signature-section > p {
  margin: 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.08rem;
}

.social-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: #20251f;
  border-bottom: 1px solid var(--line);
}

.social-proof-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.social-proof-links .social-icon {
  width: auto;
  height: 54px;
  grid-template-columns: 22px auto;
  justify-content: start;
  gap: 10px;
  border-radius: 0;
  padding: 0 18px;
  font-weight: 900;
}

.social-proof-links .social-icon span {
  display: inline;
}

.gold-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: baseline;
  min-height: 112px;
  padding: 28px;
  background: #141a16;
}

.menu-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.menu-list span {
  color: var(--muted);
}

.menu-pdf-page {
  background:
    linear-gradient(180deg, rgba(17, 23, 19, 0.3), rgba(17, 23, 19, 0.88)),
    var(--dark-soft);
}

.menu-anchor-list {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 clamp(44px, 7vw, 86px);
  padding: 10px;
  background: rgba(13, 18, 15, 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.menu-anchor-list a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 248, 237, 0.78);
  background: rgba(255, 248, 237, 0.05);
  border: 1px solid rgba(255, 248, 237, 0.1);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), background 200ms ease, color 200ms ease;
}

.menu-anchor-list a:hover {
  color: #1c1a13;
  background: var(--gold);
  transform: translateY(-2px);
}

.menu-pdf-section {
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(46px, 7vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.menu-section-heading {
  position: sticky;
  top: 148px;
  align-self: start;
}

.menu-section-heading h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.menu-section-heading p:not(.kicker) {
  color: var(--muted);
}

.menu-pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-pdf-item {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.035), rgba(17, 23, 19, 0.18)),
    #141a16;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease, box-shadow 260ms ease;
}

.menu-pdf-item:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(240, 185, 63, 0.09), rgba(17, 23, 19, 0.24)),
    #141a16;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.menu-pdf-item h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.menu-pdf-item p {
  margin: 0;
  color: var(--muted);
}

.menu-pdf-item > strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  white-space: nowrap;
}

.menu-extras {
  grid-column: 2;
  margin-top: 1px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--olive);
}

.menu-extras h4 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.menu-extras div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.menu-extras span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
  color: rgba(255, 248, 237, 0.82);
}

.menu-extras em {
  font-style: normal;
}

.menu-extras strong {
  color: var(--gold);
  white-space: nowrap;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--olive-deep);
}

blockquote {
  margin: 0;
  min-height: 280px;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 64px);
  background: rgba(17, 23, 19, 0.22);
}

blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.2;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 220px minmax(260px, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 44px clamp(24px, 5vw, 64px);
  background: #0d120f;
  border-top: 1px solid var(--line);
}

.footer img {
  max-width: 150px;
  margin-bottom: 8px;
}

.footer p,
.footer address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.footer a:not(.phone-button) {
  color: var(--cream);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-cta {
  grid-area: auto;
  justify-self: start;
}

.subhero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  padding: clamp(92px, 12vw, 150px) clamp(24px, 5vw, 64px) clamp(64px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.subhero.compact {
  min-height: 48svh;
}

.subhero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 23, 19, 0.86), rgba(17, 23, 19, 0.56), rgba(17, 23, 19, 0.24));
}

.subhero > div {
  max-width: 880px;
}

.subhero h1 {
  margin-bottom: 18px;
}

.subhero p:not(.kicker) {
  max-width: 680px;
  color: rgba(255, 248, 237, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.content-section {
  padding: clamp(82px, 10vw, 140px) clamp(24px, 5vw, 64px);
}

.price-grid,
.feature-grid,
.vehicle-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-grid article,
.feature-grid article,
.vehicle-grid article,
.product-card,
.contact-card,
.cart-panel {
  padding: clamp(26px, 4vw, 42px);
  background: #141a16;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease, box-shadow 260ms ease;
}

.price-grid h3,
.feature-grid h3,
.vehicle-grid h3,
.product-card h3,
.contact-card h2,
.cart-panel h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.price-grid p {
  margin: 22px 0 4px;
  color: var(--cream);
  font-weight: 900;
}

.price-grid span,
.feature-grid p,
.vehicle-grid p,
.product-card p,
.contact-card p,
.cart-panel li,
.cart-panel label,
.contact-form label,
.order-form label {
  color: var(--muted);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.event-section {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.03), transparent);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  min-height: 100%;
  background: #141a16;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease, box-shadow 260ms ease;
}

.event-card:hover {
  transform: translateY(-6px);
  background: #192019;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.event-card-body {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.event-meta span {
  border: 1px solid rgba(240, 185, 63, 0.28);
  padding: 7px 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.event-card p {
  color: var(--muted);
}

.event-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  border: 1px solid var(--gold);
  padding: 13px 18px;
  color: #17160f;
  background: var(--gold);
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease;
}

.event-ticket:hover {
  transform: translateY(-2px);
  background: #ffd46d;
}

.event-ticket-disabled {
  color: rgba(255, 248, 237, 0.58);
  background: transparent;
  border-color: rgba(255, 248, 237, 0.22);
}

.event-ticket-disabled:hover {
  transform: none;
  background: transparent;
}

.catering-section {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.03), transparent);
}

.catering-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.catering-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  background: #141a16;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), background 260ms ease, box-shadow 260ms ease;
}

.catering-card:hover {
  transform: translateY(-6px);
  background: #192019;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.catering-card-no-image {
  grid-template-columns: 1fr;
}

.catering-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.catering-card-body {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(26px, 4vw, 42px);
}

.catering-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.catering-card p,
.catering-detail span {
  color: var(--muted);
}

.catering-detail {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.catering-detail strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vehicle-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  color: #1c1a13;
  background: var(--gold);
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(24px, 5vw, 64px);
  background: var(--olive);
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.contact-layout,
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page .contact-card {
  line-height: 1.75;
}

.legal-page h2,
.legal-page h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.contact-form,
.order-form {
  display: grid;
  gap: 16px;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  background: #141a16;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--cream);
  background: #0d120f;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

.shop-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  display: block;
  margin: 22px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.product-card button,
.contact-form button,
.order-form button {
  justify-self: start;
  min-height: 42px;
  padding: 0 18px;
  color: #1c1a13;
  background: var(--gold);
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(240, 185, 63, 0.18);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease, filter 220ms ease;
}

.cart-panel {
  position: sticky;
  top: 98px;
}

.cart-panel ul {
  display: grid;
  gap: 10px;
  min-height: 76px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.cart-panel li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: clamp(26px, 4vw, 42px) !important;
  background: #141a16;
  list-style: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.woocommerce ul.products li.product .price {
  color: var(--gold);
  font-weight: 900;
}

.woocommerce a.button,
.woocommerce button.button {
  color: #1c1a13 !important;
  background: var(--gold) !important;
  border-radius: 0 !important;
}

.hildes-js .reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 760ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
    filter 760ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

.hildes-js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .hero-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo phone"
      "address socials"
      "nav nav";
    gap: 10px 20px;
  }

  .logo {
    width: 150px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 34px;
    padding-top: 10px;
    overflow-x: auto;
  }

  .info-strip,
  .story-section,
  .host-section,
  .visit-section,
  .proof-section,
  .spotlight-section,
  .experience-grid,
  .signature-section,
  .social-proof-section,
  .reviews,
  .page-header,
  .contact-layout,
  .shop-layout,
  .cta-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .page-header .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .main-nav .menu {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .vehicle-grid,
  .price-grid,
  .feature-grid,
  .event-grid,
  .experience-grid,
  .menu-pdf-section,
  .menu-pdf-grid,
  .menu-extras div,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding: 0;
  }

  .social-proof-section {
    align-items: start;
  }

  .social-proof-links {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .catering-card {
    grid-template-columns: 1fr;
  }

  .event-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .catering-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .menu-section-heading {
    position: static;
  }

  .menu-extras {
    grid-column: auto;
  }

  .cart-panel {
    position: static;
  }

  .host-copy {
    max-width: none;
  }

  .info-strip article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 19, 0.55);
  }

  .info-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .hero-header {
    padding: 16px 20px;
  }

  .address,
  .socials {
    display: none;
  }

  .phone-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .main-nav {
    gap: 24px;
    font-size: 0.95rem;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .info-strip {
    width: calc(100% - 32px);
    margin-top: -64px;
  }

  .story-section,
  .host-section,
  .visit-section,
  .experience-section,
  .signature-section,
  .menu-section,
  .content-section,
  .reviews {
    padding: 74px 20px;
  }

  .menu-anchor-list {
    top: 0;
    margin-left: -20px;
    margin-right: -20px;
    border-left: 0;
    border-right: 0;
  }

  .menu-pdf-section {
    scroll-margin-top: 70px;
    padding: 58px 0;
  }

  .menu-pdf-item {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .menu-pdf-item > strong {
    justify-self: start;
  }

  .story-copy h2,
  .host-copy h2,
  .visit-section h2,
  .menu-section h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .host-image::before {
    inset: -12px 12px 12px -12px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 36px 20px;
  }
}
