:root {
  --yellow: #ffcc19;
  --red: #c33130;
  --green: #00833e;
  --dark: #1e1a19;
  --dark2: #32373c;
  --gray: #b7b7b7;
  --light: #f8f5ee;
  --font-heading: "Barlow Condensed", sans-serif;
  --font-script: "Mr Dafoe", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  background: var(--light);
  line-height: 1.5;
  animation: pageFadeIn 0.5s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.5em;
}

.script {
  font-family: var(--font-script);
  text-transform: none;
  color: var(--red);
  font-weight: 400;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 34px;
  border-radius: 5px;
  border: 3px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: inherit;
  pointer-events: none;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 8px 20px rgba(255,204,25,0.0);
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--yellow);
  border-color: var(--dark);
  box-shadow: 0 12px 28px rgba(30,26,25,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border-color: var(--light);
}

.btn-outline:hover {
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 12px 28px rgba(30,26,25,0.35);
}

/* ---------- Order button (glossy gold, white ring, cutlery icon) ---------- */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 27px;
  border-radius: 5px;
  border-color: #fff;
  background: linear-gradient(180deg, #ffe89a 0%, #f7c948 35%, #e0a300 70%, #caa000 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 2px 4px rgba(255,255,255,0.5), inset 0 -3px 6px rgba(0,0,0,0.25);
}

.btn-order:hover {
  background: linear-gradient(180deg, #fff0b8 0%, #ffd75e 35%, #eeb100 70%, #d4ac00 100%);
  color: #fff;
  border-color: #fff;
}

.btn-order .icon-cutlery {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fff;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--gray);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: var(--gray);
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar .social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar .social a {
  display: inline-flex;
  color: var(--light);
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar .social a svg {
  width: 16px;
  height: 16px;
}

.topbar .social a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--dark2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.3s ease;
}

.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.site-header.scrolled .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-header.scrolled .logo img {
  width: 42px;
  height: 42px;
}

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

.logo img {
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(-8deg) scale(1.05);
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}

nav.main-nav a {
  position: relative;
  color: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  transition: color 0.2s;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--yellow);
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---------- Hero showcase (eyebrow + headline + floating price badge) ---------- */
.hero-showcase {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
  padding: 120px 0 130px;
}

.hero-blob {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,204,25,0.16) 0%, rgba(30,26,25,0) 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-showcase .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 460px;
}

.eyebrow {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.05s forwards;
}

.hero-copy .script {
  font-size: 42px;
  display: block;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.05s forwards;
}

.hero-copy h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.18s forwards;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-copy p {
  color: var(--gray);
  font-size: 20px;
  max-width: 480px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.32s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.46s forwards;
}

.hero-image {
  position: relative;
  flex: 1 1 380px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  text-align: center;
}

.hero-image img {
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
  animation: floatY 5s ease-in-out infinite;
}

.price-badge {
  position: absolute;
  top: 0;
  right: 6%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,0.4);
  animation: floatY 4s ease-in-out infinite;
}

.price-badge span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-badge strong {
  font-size: 24px;
  font-weight: 800;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  fill: var(--light);
  z-index: 1;
}

/* ---------- Video section (below the hero) ---------- */
.video-section {
  background: var(--light);
}

.video-frame {
  position: relative;
  height: 68vh;
  min-height: 380px;
  max-height: 640px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.video-frame .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Section basics ---------- */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .script {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.section-title h2 {
  font-size: 42px;
}

.bg-dark {
  background: var(--dark);
  color: var(--light);
}

.bg-dark h2, .bg-dark h3 {
  color: var(--light);
}

.bg-yellow {
  background: var(--yellow);
}

/* ---------- Running border + glow (replaces static borders/shadows on cards) ---------- */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes borderRotate {
  to { --border-angle: 360deg; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(255,204,25,0.35); }
  33% { box-shadow: 0 8px 26px rgba(195,49,48,0.35); }
  66% { box-shadow: 0 8px 26px rgba(0,131,62,0.35); }
}

.category-card,
.menu-item,
.job-card,
.blog-card {
  position: relative;
  isolation: isolate;
  animation: glowPulse 4s ease-in-out infinite;
}

.category-card::before,
.menu-item::before,
.job-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: conic-gradient(from var(--border-angle), var(--yellow), var(--red), var(--green), var(--yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 4s linear infinite;
  z-index: 2;
  pointer-events: none;
}

/* ---------- About block ---------- */
.about-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-grid .about-image {
  flex: 1 1 380px;
  text-align: center;
}

.about-grid .about-image img {
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-grid .about-copy {
  flex: 1 1 460px;
}

.about-copy h2 {
  font-size: 40px;
  color: var(--red);
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats .stat strong {
  display: block;
  font-size: 36px;
  color: var(--green);
}

/* ---------- Category cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.category-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
}

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

.category-card:hover {
  overflow: visible;
  z-index: 3;
}

.category-card:hover::before {
  display: none;
}

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

.category-card .emoji {
  font-size: 64px;
  padding: 36px 10px 6px;
  transition: transform 0.3s ease;
}

.category-card:hover .emoji {
  transform: scale(1.15) rotate(-4deg);
}

.category-card h3 {
  color: var(--dark);
  font-size: 24px;
  padding: 20px 10px;
}

/* ---------- Menu board recreation ---------- */
.menu-board-recreation {
  display: grid;
  grid-template-columns: 1.15fr 46px 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 6px solid var(--dark);
}

.mb-col {
  padding: 24px 20px;
}

.mb-col-dark {
  background: #0d0d0d;
}

.mb-col-yellow {
  background: var(--yellow);
}

.mb-divider {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-divider span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mb-heading {
  font-size: 22px;
  margin: 0 0 16px;
}

.mb-heading-light {
  color: #fff;
}

.mb-heading-yellow {
  color: var(--yellow);
}

.mb-heading-spaced {
  margin-top: 28px;
}

.mb-item {
  margin-bottom: 12px;
}

.mb-item-tight {
  margin-bottom: 6px;
}

.mb-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.mb-name-yellow {
  color: var(--yellow);
}

.mb-name-red {
  color: #ff4136;
}

.mb-desc {
  font-size: 11px;
  line-height: 1.35;
  margin-top: 2px;
  text-transform: none;
  font-weight: 500;
}

.mb-desc-red {
  color: #c33130;
}

.mb-desc-dark {
  color: #3a3a3a;
}

.mb-desc-light {
  color: #c9c9c9;
}

.mb-box {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 18px 0;
}

.mb-box-title {
  color: var(--red);
  font-size: 18px;
  margin: 0 0 10px;
}

.mb-box-title small {
  font-size: 12px;
  color: #3a3a3a;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
}

.mb-box-title-bar {
  background: #0d0d0d;
  color: var(--yellow);
  margin: -14px -16px 12px;
  padding: 10px 16px;
  border-radius: 5px 5px 0 0;
}

.mb-box-text {
  font-size: 13px;
  color: #3a3a3a;
  margin: 0;
  text-transform: none;
}

.mb-fries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

@media (max-width: 800px) {
  .menu-board-recreation {
    grid-template-columns: 1fr;
  }

  .mb-divider {
    padding: 12px 0;
  }

  .mb-divider span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 16px;
  }

  .mb-col {
    padding: 22px 18px;
  }
}

/* ---------- Menu page ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.menu-tabs a {
  padding: 10px 26px;
  border-radius: 30px;
  border: 2px solid var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.menu-tabs a:hover, .menu-tabs a.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.menu-category {
  margin-bottom: 60px;
  scroll-margin-top: 110px;
}

.menu-category h2 {
  color: var(--red);
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 30px;
}

/* ---------- Category image carousel ---------- */
.menu-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 32px;
  overflow: hidden;
  background: transparent;
}

.menu-carousel .carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.menu-carousel .carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-carousel .carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 230px;
}

.menu-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.menu-carousel .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px 14px;
  background: transparent;
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
}

.menu-category-order {
  text-align: center;
  margin-top: 28px;
}

@media (min-width: 700px) {
  .menu-carousel .carousel-slide {
    height: 380px;
  }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--dark2);
  color: var(--light);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.3);
}

.testimonial-card .stars {
  color: var(--yellow);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card .author {
  margin-top: 14px;
  font-weight: 700;
  color: var(--yellow);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card .thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .thumb img {
  transform: scale(1.08);
}

.blog-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,26,25,0.55), transparent 55%);
}

.blog-card .blog-date {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-card .body {
  padding: 22px;
}

.blog-card h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.blog-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.blog-card .read-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.blog-card:hover .read-more svg {
  transform: translateX(5px);
}

.blog-detail-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.blog-detail-body p {
  margin-bottom: 1.2em;
}

/* ---------- Careers ---------- */
.job-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.25s ease;
}

.job-card:hover {
  transform: translateY(-4px);
}

.job-card h3 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 6px;
}

.job-card .meta {
  color: var(--gray);
  font-size: 14px;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.contact-info .info-row {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info .info-row strong {
  display: block;
  margin-bottom: 2px;
}

.contact-info .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.contact-info .icon svg {
  width: 22px;
  height: 22px;
}

.contact-info .info-row:hover .icon {
  transform: scale(1.1) rotate(-6deg);
}

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

.contact-form label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dark);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid #e4e0d8;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 16px;
  background: var(--light);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,204,25,0.2);
}

.errorlist {
  color: var(--red);
  list-style: none;
  padding: 0;
  margin: -12px 0 12px;
  font-size: 14px;
}

.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 10px;
  margin-bottom: 24px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  animation: fadeInUp 0.4s ease;
}

.alert svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 110px 0;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,26,25,0.94), rgba(195,49,48,0.82));
  z-index: 0;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
}

.newsletter-inner .script {
  font-size: 40px;
  display: block;
  margin-bottom: 6px;
}

.newsletter h3 {
  font-size: 36px;
  color: var(--light);
}

.newsletter-inner p {
  color: rgba(248,245,238,0.85);
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  min-width: 280px;
  font-family: var(--font-heading);
  font-size: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--gray);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a3a3a;
}

.footer-grid h4 {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 18px;
}

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

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  color: var(--gray);
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.footer-social a svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--yellow);
}

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--light);
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 48px;
  color: var(--yellow);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.05s forwards;
}

.breadcrumb {
  color: var(--gray);
  font-size: 15px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark2);
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  nav.main-nav.open {
    max-height: 400px;
    opacity: 1;
    padding: 10px 20px 20px;
  }

  nav.main-nav ul {
    flex-direction: column;
    gap: 6px;
  }

  nav.main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-image img {
    max-width: 260px;
  }

  .price-badge {
    width: 96px;
    height: 96px;
    right: 0;
  }

  .price-badge strong {
    font-size: 18px;
  }

  .video-frame {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
  z-index: 90;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--dark);
  color: var(--yellow);
}
