/* ================================================================
   STEAK-IT-EAZY — Main Stylesheet
   Site:    steakiteazy.com
   Brand:   KPC Unlimited
   Colors:  #fff000 | #fc7d1d | #d30107 | #ad2e00
   Fonts:   Archivo Black (headings) | Montserrat (body)
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --clr-yellow:     #fff000;
  --clr-orange:     #fc7d1d;
  --clr-red:        #d30107;
  --clr-dark-red:   #ad2e00;

  /* UI Colors */
  --clr-dark:       #111111;
  --clr-dark-alt:   #1a1a1a;
  --clr-dark-card:  #222222;
  --clr-dark-input: #2a2a2a;
  --clr-border:     #333333;
  --clr-text:       #e8e8e8;
  --clr-text-muted: #999999;
  --clr-white:      #ffffff;

  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Layout */
  --header-height:    70px;
  --max-width:        1200px;
  --section-py:       88px;
  --section-px:       24px;
  --radius:           8px;
  --radius-lg:        16px;

  /* Transitions */
  --ease:       0.3s ease;
  --ease-slow:  0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: var(--clr-orange);
  text-decoration: none;
  transition: color var(--ease);
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.container--centered { text-align: center; }

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark    { background-color: var(--clr-dark); }
.section--darker  { background-color: var(--clr-dark-alt); }

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clr-white);
  margin-bottom: 14px;
  position: relative;
  display: block;
}

.section-title::after {
  content: '';
  display: block;
  width: 72%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--clr-dark-red)  0%,
    var(--clr-red)       18%,
    var(--clr-orange)    38%,
    var(--clr-yellow)    50%,
    var(--clr-orange)    62%,
    var(--clr-red)       82%,
    var(--clr-dark-red) 100%
  );
  background-size: 280% 100%;
  margin: 12px auto 0;
  border-radius: 4px;
  animation: flame-hr 2.8s ease-in-out infinite alternate;
  box-shadow: 0 2px 10px rgba(252, 125, 29, 0.45);
}

@keyframes flame-hr {
  0%   { background-position:   0% 50%; filter: blur(0.4px); }
  50%  { background-position: 100% 50%; filter: blur(1.2px); }
  100% { background-position:  55% 50%; filter: blur(0.4px); }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background-color: var(--clr-red);
  color: var(--clr-yellow);
  border-color: var(--clr-red);
}
.btn--primary:hover {
  background-color: var(--clr-dark-red);
  border-color: var(--clr-dark-red);
  color: var(--clr-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 1, 7, 0.4);
}

.btn--secondary {
  background-color: transparent;
  color: var(--clr-yellow);
  border-color: var(--clr-yellow);
}
.btn--secondary:hover {
  background-color: var(--clr-yellow);
  color: var(--clr-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 240, 0, 0.25);
}

.btn--large {
  padding: 18px 52px;
  font-size: 1.05rem;
}

.btn--full-width {
  width: 100%;
  text-align: center;
}

.btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--clr-white);
  border-color: transparent;
}
.btn--instagram:hover {
  opacity: 0.85;
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--toast {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  background-color: var(--clr-orange);
  color: var(--clr-dark);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--ease);
}
.btn--toast:hover {
  background-color: var(--clr-yellow);
  color: var(--clr-dark);
  transform: translateY(-2px);
}

.link--accent {
  color: var(--clr-orange);
  font-weight: 600;
}
.link--accent:hover { color: var(--clr-yellow); }

/* ----------------------------------------------------------------
   HEADER / NAV
   ---------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(17, 17, 17, 0.97);
  border-bottom: 3px solid var(--clr-red);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: height var(--ease), border-color var(--ease), box-shadow var(--ease);
}

#site-header.scrolled {
  height: 58px;
  border-bottom-color: var(--clr-dark-red);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.nav-container {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-red);
  transition: border-color var(--ease), transform var(--ease);
}
.nav-logo:hover img {
  border-color: var(--clr-yellow);
  transform: scale(1.05);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--clr-white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-text);
  padding: 8px 13px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-yellow);
  background-color: rgba(255, 255, 255, 0.07);
}

.nav-link--cta {
  background-color: var(--clr-red);
  color: var(--clr-yellow) !important;
  margin-left: 6px;
}
.nav-link--cta:hover {
  background-color: var(--clr-dark-red) !important;
  color: var(--clr-yellow) !important;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 7px;
  transition: border-color var(--ease);
}
.nav-toggle:hover { border-color: var(--clr-red); }

.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--clr-text);
  border-radius: 2px;
  transition: all var(--ease);
}

.nav-toggle.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(173, 46, 0, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(211, 1, 7, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 85%, rgba(252, 125, 29, 0.12) 0%, transparent 50%),
    var(--clr-dark);
  z-index: 0;
}

/* Subtle grid texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 20px var(--section-px);
}

.hero-logo {
  width: clamp(160px, 24vw, 260px);
  height: clamp(160px, 24vw, 260px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--clr-red);
  box-shadow:
    0 0 0 8px rgba(211, 1, 7, 0.18),
    0 0 50px rgba(211, 1, 7, 0.3),
    0 0 100px rgba(252, 125, 29, 0.12);
  animation: hero-glow 3.5s ease-in-out infinite;
}

@keyframes hero-glow {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(211, 1, 7, 0.18),
      0 0 50px rgba(211, 1, 7, 0.3),
      0 0 100px rgba(252, 125, 29, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(211, 1, 7, 0.22),
      0 0 70px rgba(211, 1, 7, 0.4),
      0 0 130px rgba(252, 125, 29, 0.2);
  }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--clr-white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--clr-orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Animated scroll arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--clr-text-muted);
  animation: bounce-down 2.2s ease-in-out infinite;
  transition: color var(--ease);
}
.scroll-down-arrow:hover { color: var(--clr-orange); }

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

/* ----------------------------------------------------------------
   MENU SECTION
   ---------------------------------------------------------------- */
.menu-frame-wrapper {
  position: relative;
  width: 72%;
  margin: 0 auto;
  min-height: 700px;
  background-color: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder text shown behind the iFrame while src is PLACEHOLDER */
.menu-frame-wrapper::before {
  content: 'Menu coming soon — check back shortly!';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 1rem;
  pointer-events: none;
  z-index: 0;
}

.menu-iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

.menu-note {
  text-align: center;
  margin-top: 22px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------
   SOCIAL SECTION
   ---------------------------------------------------------------- */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.social-card {
  background-color: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.social-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-white);
}

.social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-card__follow-link {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-orange);
}
.social-card__follow-link:hover { color: var(--clr-yellow); }

/* Facebook embed wrapper */
.fb-embed-wrapper {
  padding: 16px;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.fb-embed-iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  overflow: hidden;
  display: block;
}

/* Instagram follow card */
.instagram-card {
  padding: 40px 24px;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 300px;
}

.instagram-card__logo-ring {
  padding: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-card__handle {
  font-size: 1.4rem;
  color: var(--clr-white);
  font-family: var(--font-heading);
}

.instagram-card__bio {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.instagram-card__note {
  font-size: 0.75rem;
  color: var(--clr-border);
  line-height: 1.5;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   CATERING SECTION
   ---------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col__content h3 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--clr-white);
  margin-bottom: 18px;
}

.two-col__content p {
  color: var(--clr-text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 26px;
}

.feature-list {
  margin-bottom: 36px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--clr-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '🔥';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.8rem;
}

/* Image Placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--clr-dark-card);
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-placeholder__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--clr-text-muted);
  padding: 20px;
}

.img-placeholder__icon {
  font-size: 3rem;
  opacity: 0.35;
}

.img-placeholder__text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}

.catering-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ----------------------------------------------------------------
   BOOK A TRUCK SECTION
   ---------------------------------------------------------------- */
.section--book {
  overflow: hidden;
}

.book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(211, 1, 7, 0.12) 0%, transparent 65%),
    var(--clr-dark);
}

.book-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.book-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.book-step {
  background-color: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.book-step:hover {
  border-color: var(--clr-red);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(211, 1, 7, 0.2);
}

.book-step__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--clr-red);
  margin-bottom: 14px;
  opacity: 0.85;
}

.book-step h4 {
  font-size: 1.1rem;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.book-step p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.book-note {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------
   CONTACT SECTION & CSS ANIMATED FLAMES
   ---------------------------------------------------------------- */
.section--contact {
  background-color: var(--clr-dark-alt);
  overflow: hidden;
}

/* ---- FLAME ROW ---- */
.flames-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 110px;
  width: 100%;
  padding: 0 10px;
  overflow: hidden;
}

/* Base flame shape */
.flame {
  display: block;
  position: relative;
  border-radius: 50% 50% 22% 22% / 80% 80% 22% 22%;
  transform-origin: bottom center;
  /* Outer body: dark-red → orange */
  background: radial-gradient(
    ellipse at bottom,
    var(--clr-orange) 0%,
    var(--clr-red)    40%,
    var(--clr-dark-red) 72%,
    transparent 100%
  );
  filter: blur(1px);
}

/* Mid layer: orange → yellow */
.flame::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: inherit;
  width: 62%;
  height: 68%;
  background: radial-gradient(
    ellipse at bottom,
    var(--clr-yellow) 0%,
    var(--clr-orange) 55%,
    transparent 100%
  );
}

/* Core: white → yellow hot tip */
.flame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: inherit;
  width: 28%;
  height: 32%;
  background: radial-gradient(
    ellipse at bottom,
    #ffffff 0%,
    var(--clr-yellow) 65%,
    transparent 100%
  );
  filter: blur(1px);
}

/* Individual flame sizes & timings */
.flame--1 { width: 24px; height: 52px;  animation: flicker 1.10s ease-in-out infinite alternate; animation-delay: 0.00s; }
.flame--2 { width: 34px; height: 74px;  animation: flicker 0.90s ease-in-out infinite alternate; animation-delay: 0.15s; }
.flame--3 { width: 27px; height: 62px;  animation: flicker 1.30s ease-in-out infinite alternate; animation-delay: 0.32s; }
.flame--4 { width: 40px; height: 88px;  animation: flicker 0.80s ease-in-out infinite alternate; animation-delay: 0.08s; }
.flame--5 { width: 46px; height: 108px; animation: flicker 1.00s ease-in-out infinite alternate; animation-delay: 0.22s; }
.flame--6 { width: 41px; height: 84px;  animation: flicker 1.20s ease-in-out infinite alternate; animation-delay: 0.04s; }
.flame--7 { width: 30px; height: 68px;  animation: flicker 0.85s ease-in-out infinite alternate; animation-delay: 0.40s; }
.flame--8 { width: 36px; height: 76px;  animation: flicker 1.15s ease-in-out infinite alternate; animation-delay: 0.18s; }
.flame--9 { width: 22px; height: 48px;  animation: flicker 1.05s ease-in-out infinite alternate; animation-delay: 0.35s; }

@keyframes flicker {
  0%   { transform: scaleX(1.00) scaleY(1.00) rotate(-2deg); opacity: 0.90; filter: blur(1.0px); }
  20%  { transform: scaleX(0.92) scaleY(1.12) rotate( 2deg); opacity: 1.00; filter: blur(0.5px); }
  40%  { transform: scaleX(1.06) scaleY(0.93) rotate(-1deg); opacity: 0.88; filter: blur(1.5px); }
  60%  { transform: scaleX(0.95) scaleY(1.09) rotate( 3deg); opacity: 0.95; filter: blur(0.8px); }
  80%  { transform: scaleX(1.04) scaleY(0.96) rotate(-2deg); opacity: 0.92; filter: blur(1.0px); }
  100% { transform: scaleX(0.97) scaleY(1.06) rotate( 1deg); opacity: 0.97; filter: blur(0.6px); }
}

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

/* Contact two-column table */
.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table__cell {
  width: 50%;
  vertical-align: top;
  padding: 0 40px 0 0;
}

.contact-table__cell:first-child {
  text-align: right;
}

.contact-table__cell:first-child .contact-details li {
  justify-content: flex-end;
}

.contact-table__cell:last-child {
  padding: 0 0 0 40px;
  border-left: 1px solid var(--clr-border);
}

/* Contact Form Card */
.contact-form-wrapper {
  background-color: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.required-star { color: var(--clr-red); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--clr-dark-input);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(211, 1, 7, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-muted);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  font-size: 0.88rem;
  text-align: center;
  min-height: 20px;
  color: var(--clr-orange);
  font-weight: 600;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding-top: 6px;
}

.contact-info__block h3 {
  font-size: 1.15rem;
  color: var(--clr-white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-red);
  display: inline-block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-orange);
}

/* Social links in contact info */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--ease);
}

.social-link--fb {
  background-color: #1877F2;
  color: var(--clr-white);
}
.social-link--fb:hover {
  background-color: #0e63d3;
  color: var(--clr-white);
  transform: translateY(-2px);
}

.social-link--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--clr-white);
}
.social-link--ig:hover {
  opacity: 0.85;
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--clr-dark-alt);
  border-top: 3px solid var(--clr-red);
  padding: 44px 0 0;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-red);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--clr-orange); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-contact a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--clr-orange); }

.footer-credit {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-border);
  padding-top: 18px;
  border-top: 1px solid var(--clr-border);
}
.footer-credit a { color: var(--clr-orange); }
.footer-credit a:hover { color: var(--clr-yellow); }

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET  (max 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-grid      { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .book-steps       { grid-template-columns: 1fr; }

  .contact-table,
  .contact-table tbody,
  .contact-table tr { display: block; }

  .contact-table__cell,
  .contact-table__cell:last-child {
    display: block;
    width: 100%;
    padding: 0 0 32px 0;
    border-left: none;
    border-bottom: 1px solid var(--clr-border);
  }

  .contact-table__cell:last-child { border-bottom: none; padding-top: 32px; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact { align-items: center; }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE  (max 640px)
   ---------------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --section-py:    60px;
    --header-height: 62px;
    --section-px:    16px;
  }

  /* Show hamburger, hide inline nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    border-bottom: 2px solid var(--clr-red);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }
  .nav-link--cta { margin-left: 0; }

  .nav-brand { display: none; }

  /* Hero */
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .btn { text-align: center; }

  /* Contact form */
  .contact-form-wrapper { padding: 24px 18px; }

  /* Flames — scale down on mobile */
  .flames-row { height: 72px; gap: 3px; }
  .flame--1 { height: 36px; }
  .flame--2 { height: 51px; }
  .flame--3 { height: 43px; }
  .flame--4 { height: 61px; }
  .flame--5 { height: 72px; }
  .flame--6 { height: 58px; }
  .flame--7 { height: 47px; }
  .flame--8 { height: 53px; }
  .flame--9 { height: 33px; }
}

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