/* =====================================================
   EETCAFÉ ZIEJEZÓÒ — ROTTERDAM
   Design: paars #5a4a8a | goud #c9a84c | donker #2c2c2c
   ===================================================== */

/* ---- RESET + BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:     #5a4a8a;
  --purple-dk:  #3d3160;
  --purple-xdk: #2c1f4a;
  --gold:       #c9a84c;
  --gold-dk:    #a88530;
  --dark:       #2c2c2c;
  --off-white:  #f5f0e8;
  --white:      #ffffff;
  --body-text:  #3a3340;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:     10px;
  --shadow-md:  0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.20);

  --section-pad: clamp(3.5rem, 7vw, 6rem);
  --container:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

address { font-style: normal; }

/* IMAGE FILL SAFEGUARD */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery-item img, .card__img-wrap img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #1a1208;
  border: 2px solid var(--gold);
}

/* Hero primary CTA — force solid gold, never outline */
.hero__actions .btn--gold {
  background: #c9a84c !important;
  color: #1a1208 !important;
  border: 2px solid #c9a84c !important;
  box-shadow: 0 6px 24px rgba(201,168,76,0.55), 0 2px 8px rgba(0,0,0,0.3) !important;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.85rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: #6b6280;
  font-size: 1.05rem;
}

.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.75); }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 31, 74, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; margin-right: auto; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.18s;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.22s;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a:hover::after { right: 0; }

.nav-cta { display: none; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  z-index: 1100;
  position: relative;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   MOBILE MENU — FULLSCREEN OVERLAY
   ===================================================== */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--purple-xdk);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__panel--root {
  text-align: center;
  width: 100%;
  padding: 2rem 2.5rem;
}

.mobile-menu__list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  padding: 0.65rem 0;
  transition: color 0.18s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__item:hover { color: var(--gold); }

.mobile-cta { margin-top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 31, 74, 0.78) 0%,
    rgba(90, 74, 138, 0.35) 55%,
    rgba(44, 31, 74, 0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.55);
  animation: bounce 2s infinite;
}

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

/* =====================================================
   USP STRIP
   ===================================================== */
.usp-strip {
  background: var(--purple-xdk);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.usp-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.usp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.usp-icon svg { width: 26px; height: 26px; }

.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* =====================================================
   MENU HIGHLIGHTS
   ===================================================== */
.menu-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.05); }

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,168,76,0.14);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  align-self: flex-start;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.card__desc {
  font-size: 0.875rem;
  color: #6b6280;
  flex: 1;
  line-height: 1.5;
}

.card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--font-display);
  margin-top: 0.25rem;
}

/* =====================================================
   SFEER GALERIJ
   ===================================================== */
.gallery-section {
  background: var(--purple-xdk);
  padding: var(--section-pad) 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 6px;
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  margin: 0;
}

.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* =====================================================
   EVENEMENTEN
   ===================================================== */
.events-section {
  padding: var(--section-pad) 0;
  padding-bottom: calc(var(--section-pad) * 1.3);
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid rgba(90,74,138,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.event-card__date {
  flex-shrink: 0;
  width: 68px;
  height: 76px;
  background: var(--purple);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.event-card__info { flex: 1; }

.event-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  background: rgba(201,168,76,0.14);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-bottom: 0.55rem;
}

.event-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.event-card__info p {
  font-size: 0.875rem;
  color: #6b6280;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.18s, color 0.18s;
}
.event-link:hover { color: var(--gold-dk); gap: 0.6rem; }

/* =====================================================
   ZAALVERHUUR
   ===================================================== */
.zaal-section { background: var(--purple-xdk); }

.zaal-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.zaal-img-wrap {
  overflow: hidden;
  position: relative;
}
.zaal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.zaal-content {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.section-label--light {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}

.zaal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.zaal-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.zaal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zaal-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.zaal-list li svg { color: var(--gold); flex-shrink: 0; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(90,74,138,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}
.info-icon svg { width: 20px; height: 20px; }

.info-block strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.info-block p { font-size: 0.9rem; color: var(--body-text); line-height: 1.55; }
.info-block a { color: var(--purple); font-weight: 500; }
.info-block a:hover { color: var(--gold-dk); }

.hours-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.hours-table td { padding: 0.3rem 0.5rem 0.3rem 0; color: var(--body-text); }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table tr.closed td { color: #aaa; }

.hours-note {
  font-size: 0.78rem;
  color: var(--gold-dk);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #d8d0e8;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--body-text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(90,74,138,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0a8c0; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-kit {
  background: var(--purple-xdk);
  color: rgba(255,255,255,0.8);
  padding-top: clamp(3rem, 5vw, 5rem);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-tel { display: inline-flex; align-items: center; gap: 0.5rem; }

.footer-hours h4,
.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.footer-hours td { padding: 0.3rem 0; color: rgba(255,255,255,0.72); }
.footer-hours td:last-child { text-align: right; }
.footer-hours tr.closed td { color: rgba(255,255,255,0.38); }

.footer-note {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.6rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-nav address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-nav address a { color: rgba(255,255,255,0.72); }
.footer-nav address a:hover { color: var(--gold); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .zaal-inner { grid-template-columns: 1fr; }
  .zaal-img-wrap { min-height: 380px; }
  .gallery-masonry {
    grid-template-rows: 240px 240px;
  }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .usp-grid { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .card-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .card__img-wrap { aspect-ratio: 4/3; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery-item--tall { grid-row: span 2; }

  .event-card { flex-direction: column; gap: 1rem; }
  .zaal-inner { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   HERO PRIMARY CTA — UNMISTAKABLY SOLID GOLD
   ===================================================== */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  /* SOLID GOLD — unmistakable warm gold fill */
  background-color: #c9a84c;
  background-image: linear-gradient(135deg, #d4b55a 0%, #c9a84c 60%, #b8941f 100%);
  color: #1a1208;
  border: none;
  outline: 3px solid rgba(255,255,255,0.25);
  outline-offset: -1px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 4px 0 rgba(0,0,0,0.25),
    0 6px 30px rgba(201,168,76,0.65),
    0 2px 10px rgba(0,0,0,0.4);
  transition: transform 0.18s, box-shadow 0.18s, background-color 0.18s;
}
.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  background-color: #b8941f;
  background-image: linear-gradient(135deg, #c9a84c 0%, #b8941f 100%);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 6px 0 rgba(0,0,0,0.25),
    0 10px 36px rgba(201,168,76,0.7),
    0 4px 14px rgba(0,0,0,0.45);
}
