
:root {
  --bg-dark: #0f0f10;
  --bg-darker: #070708;
  --accent: #ff6a00;
  --accent-soft: #ffb347;
  --accent-yellow: #ffc938;
  --text-main: #f8f8f8;
  --text-muted: #c7c7c7;
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #232326 0, #050506 55%);
  color: var(--text-main);
}

/* Layout helpers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: radial-gradient(circle at top, #18181b 0, #050506 55%);
}

.section h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin: 0 0 0.5rem;
}

.section-subtitle {
  margin: 0 0 2.5rem;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

/* Top bar */

.top-bar {
  background: rgba(0, 0, 0, 0.9);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.top-bar a {
  color: var(--accent-soft);
  text-decoration: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.35rem;
  gap: 0.75rem;
}

.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-dot {
  opacity: 0.5;
}

/* Nav */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(7, 7, 8, 0.98), rgba(7, 7, 8, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 198, 51, 0.7);
  object-fit: cover;
}

.brand-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--accent-soft);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: #fff;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 184, 0, 0.45), transparent 55%),
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(5, 5, 6, 0.9));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 0 4.5rem;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin: 0 0 0.6rem;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
}

.hero-subtitle {
  margin: 0 0 0.7rem;
  max-width: 34rem;
}

.hero-highlight {
  margin: 0 0 1.4rem;
  color: var(--accent-yellow);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-highlight-image {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-highlight-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.07);
  object-fit: cover;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #ff9500);
  color: #fff;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.65);
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn.secondary:hover {
  background: rgba(0, 0, 0, 0.75);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-soft);
  border: 1px solid rgba(255, 198, 51, 0.55);
}

.btn.ghost:hover {
  background: rgba(255, 198, 51, 0.12);
}

.btn.full-width {
  width: 100%;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list li {
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top left, rgba(255, 198, 51, 0.2), rgba(9, 9, 11, 0.9));
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.about-images {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img.stacked {
  display: grid;
  gap: 0.7rem;
}

/* Cards (menu & branches) */

.card {
  background: radial-gradient(circle at top, #26262b 0, #161618 55%);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1rem 1.2rem 1.2rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
}

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

.branch-card h3 {
  margin: 1rem 1.2rem 0.2rem;
}

.branch-card p {
  margin: 0 1.2rem 0.4rem;
  color: var(--text-muted);
}

.branch-card .branch-phone {
  font-weight: 600;
  color: #fff;
}

.branch-card .btn {
  margin: 0.8rem 1.2rem 1.1rem;
}

/* Promos */

.promos {
  background: radial-gradient(circle at top, #1b1b1f 0, #050506 60%);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.promo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.promo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Video */

.video-section {
  padding-block: 4.5rem;
}

.video-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.video-text p {
  color: var(--text-muted);
}

.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ratio-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */

.gallery-section {
  background: radial-gradient(circle at top, #1d1d21 0, #070708 60%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.7rem;
  color: var(--accent-soft);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Social */

.social-section {
  padding-block: 4rem;
}

.social-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.social-link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.social-preview {
  position: relative;
  max-width: 360px;
  margin-left: auto;
}

.social-preview img {
  width: 100%;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.social-preview .overlay-img {
  position: absolute;
  width: 55%;
  right: -10%;
  bottom: -12%;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text p {
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.contact-list a {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-form-wrapper {
  background: radial-gradient(circle at top, #26262b 0, #161618 55%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 6, 7, 0.96);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.92rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(255, 198, 51, 0.4);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2.2rem 0 1.4rem;
}

.footer-block h3,
.footer-block h4 {
  margin-top: 0;
}

.footer-block p {
  margin: 0.1rem 0;
  color: var(--text-muted);
}

.footer-block a {
  color: var(--accent-soft);
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 0.9rem 0 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.6rem;
  z-index: 50;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.25rem;
  }

  .hero-highlight-image {
    display: none;
  }

  .about-inner,
  .video-inner,
  .social-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-images {
    order: -1;
  }

  .social-preview {
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.8rem 1rem 1rem;
    background: rgba(7, 7, 8, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 0;
  }

  .section {
    padding-block: 3.4rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.7rem, 480px);
  }

  .top-bar-inner {
    font-size: 0.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}
