﻿:root {
  --brand-red: #e53935;
  --brand-orange: #fb8c00;
  --brand-yellow: #fdd835;
  --brand-lime: #b7e428;
  --brand-dark: #151515;
  --brand-white: #ffffff;
  --text-dark: #121212;
  --surface: #fdfdf9;
  --max-width: 1080px;
  --radius: 18px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #fffdf1 0%, #ffffff 40%, #fffdee 100%);
  line-height: 1.5;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: var(--brand-white);
  z-index: 1000;
  border: 2px solid var(--brand-dark);
}

.mobile-cta-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(21, 21, 21, 0.97);
  border-bottom: 2px solid #2b2b2b;
}

.cta-btn {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.87rem;
  color: var(--brand-dark);
  padding: 0.75rem 0.35rem;
  border-radius: 12px;
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cta-call {
  background: var(--brand-yellow);
}

.cta-whatsapp {
  background: var(--brand-lime);
}

.cta-directions {
  background: linear-gradient(90deg, var(--brand-orange), #ffbf47);
}

.hero {
  position: relative;
  padding: 2.5rem 1rem 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(253, 216, 53, 0.5), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(183, 228, 40, 0.45), transparent 38%),
    linear-gradient(145deg, #ffe9d5 0%, #fff4b7 45%, #f5ffc8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.16) 8px,
    rgba(255, 255, 255, 0) 8px,
    rgba(255, 255, 255, 0) 18px
  );
}

.hero-logo-wrap,
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  animation: rise-in 0.55s ease both;
}

.hero-content .eyebrow {
  animation: rise-in 0.55s ease 0.08s both;
}

.hero-content h1 {
  animation: rise-in 0.55s ease 0.16s both;
}

.hero-content .subheadline {
  animation: rise-in 0.55s ease 0.24s both;
}

.hero-actions .primary-btn {
  animation: rise-in 0.55s ease both;
}

.hero-actions .primary-btn:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-actions .primary-btn:nth-child(2) {
  animation-delay: 0.38s;
}

.hero-actions .primary-btn:nth-child(3) {
  animation-delay: 0.46s;
}

.hero-actions .primary-btn:nth-child(4) {
  animation-delay: 0.54s;
}

.hero-logo-wrap {
  width: fit-content;
  margin: 0 auto 1rem;
}

.brand-logo {
  width: clamp(150px, 42vw, 240px);
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--brand-white);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #7c1d1d;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
}

h1 {
  margin-top: 0.35rem;
  font-size: clamp(1.85rem, 7vw, 3rem);
  color: var(--brand-dark);
}

.subheadline {
  margin-top: 0.55rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  max-width: 36ch;
}

.hero-actions {
  display: grid;
  gap: 0.65rem;
}

.primary-btn,
.secondary-btn {
  min-height: 50px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.primary-btn {
  background: var(--brand-red);
  color: var(--brand-white);
}

.primary-btn.alt {
  background: var(--brand-lime);
  color: var(--brand-dark);
}

.primary-btn.ghost {
  background: var(--brand-white);
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
}

.facebook-btn {
  background: linear-gradient(120deg, var(--brand-red) 0%, var(--brand-orange) 35%, var(--brand-yellow) 68%, var(--brand-lime) 100%);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--brand-dark);
  gap: 0.5rem;
}

.facebook-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.facebook-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: #1877f2;
}

.section {
  padding: 2.1rem 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.45rem, 5.5vw, 2rem);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.section-head-stack {
  display: grid;
  justify-content: start;
  gap: 0.45rem;
}

.section-subheading {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
}

.products-section {
  background:
    radial-gradient(circle at top left, rgba(253, 216, 53, 0.32), transparent 24%),
    radial-gradient(circle at top right, rgba(183, 228, 40, 0.26), transparent 28%),
    linear-gradient(160deg, #fff 0%, #fff4d5 48%, #fff9ef 100%);
}

.products-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff5d9;
  border: 3px solid #f97316;
  transition: all 0.3s ease;
}

.gallery-trigger {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  background: transparent;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  border-color: #fb923c;
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(251, 146, 60, 0.38);
  outline-offset: -3px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-image-contain {
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, #fff4dd 0%, #ffe7c2 100%);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  min-height: min(82vh, 720px);
  padding: 4.5rem 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.9);
  color: #8a3307;
  font-weight: 800;
}

.lightbox-figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 4px solid #fb923c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(249, 115, 22, 0.9);
  transform: scale(1.06);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.stock-section {
  background: var(--surface);
}

.stock-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.stock-card {
  border: 2px solid #222;
  border-radius: 14px;
  padding: 0.95rem;
  background: linear-gradient(155deg, #ffffff 0%, #fbffe6 100%);
}

.stock-card h3 {
  margin-bottom: 0.4rem;
  color: #222;
}

.stock-card p {
  margin: 0;
}

.visit-section {
  background: linear-gradient(170deg, #1b1b1b 0%, #262626 100%);
  color: var(--brand-white);
}

.visit-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.visit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 1rem;
}

.visit-card h3 {
  margin-bottom: 0.5rem;
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #101010;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.8rem;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-fallback {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 0.7rem 0.8rem;
  background: rgba(16, 16, 16, 0.9);
  color: #fffbe8;
  font-size: 0.9rem;
  line-height: 1.35;
}

.map-directions-btn {
  width: 100%;
  margin-top: 0.2rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 246, 219, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hours-day {
  font-weight: 700;
  color: #fffbe8;
}

.hours-time {
  font-weight: 700;
  color: var(--brand-yellow);
  text-align: right;
}

.hours-row-closed {
  background: rgba(131, 28, 28, 0.28);
  border-color: rgba(255, 214, 214, 0.26);
}

.hours-row-closed .hours-time {
  color: #ffffff;
}

.secondary-btn {
  margin-top: 0.65rem;
  background: var(--brand-yellow);
  color: var(--brand-dark);
}

.contact-section {
  background: linear-gradient(170deg, #fff6db 0%, #ffffff 100%);
}

.contact-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.contact-item {
  text-decoration: none;
  padding: 0.95rem;
  border-radius: 14px;
  border: 2px solid #222;
  background: #fff;
  display: grid;
  gap: 0.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-item strong {
  font-size: 1.02rem;
}

.contact-item span {
  word-break: break-word;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.12);
  filter: brightness(1.02);
}

.facebook-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.facebook-contact {
  background: linear-gradient(120deg, rgba(229, 57, 53, 0.14), rgba(251, 140, 0, 0.16), rgba(253, 216, 53, 0.2), rgba(183, 228, 40, 0.16));
}

.site-footer {
  text-align: center;
  padding: 1.6rem 1rem 5.3rem;
  background: var(--brand-dark);
  color: var(--brand-white);
}

.footer-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  border: 2px solid var(--brand-white);
  object-fit: cover;
  background: #fff;
}

.site-footer p {
  margin: 0.2rem 0;
}

.footer-social-link {
  margin: 0.8rem auto 0.55rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.footer-credit {
  margin: 1rem auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.firesky-logo {
  width: clamp(54px, 13vw, 72px);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-credit p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .hero {
    padding: 3.5rem 1.2rem 2.8rem;
  }

  .hero-content {
    text-align: center;
  }

  .subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .hours-card {
    grid-column: 1 / -1;
  }

  .hours-row {
    padding: 0.75rem 1rem;
  }

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

  .footer-credit {
    margin-top: 1.05rem;
  }
}

@media (min-width: 980px) {
  .section,
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

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

  .visit-grid {
    grid-template-columns: 1.05fr 1fr 0.95fr;
  }

  .hours-card {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  .lightbox-dialog {
    width: 100%;
    min-height: 100vh;
    padding: 4.5rem 0.7rem 1.25rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.9rem;
  }

  .lightbox-figure {
    order: 1;
  }

  .lightbox-nav {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-image {
    max-width: 90%;
    max-height: 78vh;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hours-time {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-btn,
  .secondary-btn,
  .reserve-btn,
  .cta-btn,
  .contact-item,
  .footer-social-link {
    transition: none;
  }

  .reveal,
  .reveal.is-visible,
  .hero-logo-wrap,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .subheadline,
  .hero-actions .primary-btn {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 420px) {
  .footer-credit {
    margin-top: 0.95rem;
    flex-direction: column;
    gap: 0.2rem;
  }

  .firesky-logo {
    width: 58px;
  }

  .footer-credit p {
    font-size: 0.74rem;
  }
}
