/* ============================================================
   GRILLS AND GIGGLES — Global Styles
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--clr-accent); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--clr-accent-hover); }
a:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: 2px; border-radius: 2px; }

/* ---- Typography ---- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-text);
}
h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--clr-text);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.display-headline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.text-accent { color: var(--clr-accent); }
.text-muted-warm { color: var(--clr-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-bg);
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.btn-primary-custom:hover {
  background: var(--clr-accent-hover);
  color: var(--clr-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,0.35);
}
.btn-primary-custom:active { background: var(--clr-accent-dark); transform: none; }
.btn-primary-custom:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: 2px; }

.btn-ghost-custom {
  display: inline-block;
  background: transparent;
  color: var(--clr-accent);
  font-family: var(--font-body);
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 31px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--clr-accent);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  text-decoration: none;
}
.btn-ghost-custom:hover {
  background: rgba(232,160,32,0.12);
  color: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
}
.btn-ghost-custom:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: 2px; }

/* ---- Navigation ---- */
.site-nav {
  background: rgba(20,14,10,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
}
.site-nav .container-custom {
  width: 100%;
  min-height: 72px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.site-nav.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-4);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--clr-accent) !important;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.navbar-toggler {
  border: 1.5px solid var(--clr-border);
  padding: 10px 12px;
  min-width: 44px; min-height: 44px;
  border-radius: var(--r-sm);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F2EBE0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--clr-accent); }

.nav-link-custom {
  color: var(--clr-text) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-link-custom:hover, .nav-link-custom.active { color: var(--clr-accent) !important; }
.nav-link-custom:hover::after, .nav-link-custom.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--clr-accent);
  color: var(--clr-bg) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px !important;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--clr-accent-hover) !important; }
.nav-cta::after { display: none; }

/* Offcanvas (mobile nav) */
.offcanvas { background: var(--clr-bg-darkest) !important; }
.offcanvas .nav-link-custom::after { display: none; }
.btn-close { filter: invert(1); }

/* ---- Sections ---- */
section { padding: var(--sp-24) 0; }
section.section-alt { background: var(--clr-bg-alt); }
section.section-raised { background: var(--clr-bg-raised); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-accent);
}

/* ---- Hero ---- */
.hero {
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-bg-darkest);
  padding-top: 72px;
  padding-bottom: var(--sp-12);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,14,10,0.90) 0%,
    rgba(20,14,10,0.70) 50%,
    rgba(20,14,10,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-headline {
  max-width: 760px;
  font-size: 3.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-sub {
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  width: min(100%, 520px);
}

@media (min-width: 768px) {
  .hero-headline { font-size: 4.25rem; }
}

@media (min-width: 992px) {
  .site-nav .navbar-collapse { flex-grow: 0; }
  .hero-headline { font-size: 4.75rem; }
}

@media (min-width: 1200px) {
  .hero-headline { font-size: 5.25rem; }
}

@media (max-width: 991.98px) {
  .site-nav .container-custom { min-height: 64px; }
  .navbar-toggler { margin-left: auto; }
  .hero {
    align-items: flex-end;
    padding-top: 88px;
    padding-bottom: var(--sp-16);
  }
}

@media (max-width: 575.98px) {
  .hero-headline { font-size: 3rem; }
  .hero-ctas > a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 359.98px) {
  .hero-headline { font-size: 2.65rem; }
}

@media (max-width: 767.98px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translate3d(0, 24px, 0);
  }
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--clr-bg-raised);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-6) 0;
}
.trust-bar .container-custom {
  display: flex;
  justify-content: center;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4) var(--sp-6);
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--clr-muted);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.03em;
  min-height: 32px;
  text-align: center;
}
.trust-item .trust-val {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-accent);
}
.trust-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 32px;
  background: var(--clr-border);
}

@media (max-width: 767.98px) {
  .trust-list {
    gap: var(--sp-3);
  }
  .trust-item {
    width: 100%;
  }
}

/* ---- Cards ---- */
.card-custom {
  background: var(--clr-bg-raised);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-2);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.card-custom:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-3), var(--shadow-glow);
  transform: translateY(-2px);
}

.menu-card {
  background: var(--clr-bg-raised);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.menu-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.menu-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.menu-card-body { padding: var(--sp-4); }
.menu-card-price { color: var(--clr-accent); font-weight: 600; font-size: 1rem; }

/* ---- Menu tabs / pills ---- */
.menu-tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  background: var(--clr-bg-alt);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.menu-tab:hover, .menu-tab.active {
  background: var(--clr-accent);
  color: var(--clr-bg);
  border-color: var(--clr-accent);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--clr-bg-raised);
  border-left: 3px solid var(--clr-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-6);
  box-shadow: var(--shadow-2);
}
.testimonial-card blockquote {
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--clr-text);
  margin: 0 0 var(--sp-4);
  line-height: 1.6;
}
.testimonial-card blockquote::before { content: '\201C'; color: var(--clr-accent); font-size: 1.5em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Stars ---- */
.stars { color: var(--clr-accent); letter-spacing: 2px; }

/* ---- Forms ---- */
.form-control-custom {
  background: var(--clr-bg-raised);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.form-control-custom::placeholder { color: var(--clr-muted); }
.form-control-custom:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 2px rgba(232,160,32,0.2);
}
.form-label-custom {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
  display: block;
}
.form-error { color: #F44336; font-size: var(--fs-small); margin-top: var(--sp-1); }

/* ---- Footer ---- */
.site-footer {
  background: var(--clr-bg-darkest);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-16) 0 var(--sp-8);
  color: var(--clr-muted);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
  display: block;
}
.footer-link { color: var(--clr-text); font-size: var(--fs-small); transition: color var(--dur-fast); }
.footer-link:hover { color: var(--clr-accent); }
.footer-heading { font-size: var(--fs-small); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-accent); margin-bottom: var(--sp-4); }
.footer-divider { border-color: var(--clr-border); margin: var(--sp-8) 0; }
.footer-copy { font-size: var(--fs-small); color: var(--clr-muted); }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  color: var(--clr-muted);
  transition: border-color var(--dur-fast), color var(--dur-fast);
  font-size: 1rem;
}
.social-link:hover { border-color: var(--clr-accent); color: var(--clr-accent); }

/* ---- Dividers / decorative ---- */
.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--clr-accent);
  margin: var(--sp-4) 0;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---- Photo sections ---- */
.photo-section {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.photo-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.photo-section-overlay {
  position: absolute; inset: 0;
  background: var(--clr-overlay);
}
.photo-section-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-16) 0;
  text-align: center;
}

/* ---- Scroll padding (for sticky nav) ---- */
html { scroll-padding-top: 80px; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---- Utility ---- */
.container-custom { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-custom { padding: 0 48px; } }

.pt-nav { padding-top: 80px; }

.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.img-hover-zoom:hover img { transform: scale(1.04); }
