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

:root {
  --gold: #b8975a;
  --gold-light: #d4b07a;
  --dark: #0e0e0e;
  --dark-2: #181818;
  --dark-3: #222;
  --text: #e8e2d9;
  --text-muted: #9a9080;
  --white: #faf8f4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.4rem;
  z-index: 1000;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skip-link:focus { left: 1rem; top: 1rem; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,151,90,0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }

.nav-links .has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(184,151,90,0.2);
  padding: 0.8rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
  margin-top: 1.2rem;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.4rem;
  white-space: nowrap;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 6.5rem 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover { color: var(--gold); }

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(184,151,90,0.4);
}

.breadcrumbs li[aria-current="page"] { color: var(--gold-light); }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(14,14,14,0.7) 0%, rgba(14,14,14,0.5) 50%, rgba(14,14,14,0.95) 100%),
    url('brazilian-churrasco-fire-grill-private-chef.jpg') center/cover no-repeat;
}

.hero.hero-tall { min-height: 100vh; }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.hero-location {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.98);
}

.hero-location span { color: rgba(255,255,255,0.82); }

.btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-solid {
  background: var(--gold);
  color: var(--dark);
}

.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* SECTIONS */
section { padding: 7rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-intro {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 0.95rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-carousel img.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  transition: opacity 0.3s, background 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  opacity: 1;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

/* SERVICES */
.services-bg { background: var(--dark-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: var(--dark-3);
  padding: 3rem 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-bottom-color: var(--gold);
  background: #2a2a2a;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* SERVICE AREAS (state hub cards) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.area-card {
  background: var(--dark-3);
  border-top: 2px solid rgba(184,151,90,0.3);
  padding: 2.4rem 2.2rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.area-card:hover {
  background: #2a2a2a;
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.area-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.area-card span.area-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* MENU PREVIEW */
.menu-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.menu-tier-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.menu-tier-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(184,151,90,0.18);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-tier-tag {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.menu-footer-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.menu-footer-note a { color: var(--gold); text-decoration: none; }
.menu-footer-note a:hover { color: var(--gold-light); }

/* EXPERIENCES */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.exp-carousel {
  position: absolute;
  inset: 0;
}

.exp-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease, transform 0.6s ease;
  filter: brightness(0.7);
  opacity: 0;
}

.exp-carousel img.active {
  opacity: 1;
}

.exp-card:hover .exp-carousel img.active { transform: scale(1.05); }

.exp-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.exp-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}

.exp-overlay p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* REVIEWS */
.reviews-bg { background: var(--dark-2); }

.reviews-widget-wrap {
  margin-top: 3rem;
  min-height: 120px;
}

.reviews-fallback {
  margin-top: 2rem;
  text-align: center;
}

.reviews-fallback a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184,151,90,0.4);
  padding-bottom: 3px;
}

.reviews-fallback a:hover { color: var(--gold-light); }

/* FAQ */
.faq-list { margin-top: 3rem; max-width: 780px; }

.faq-item {
  border-bottom: 1px solid rgba(184,151,90,0.18);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1.6rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question .faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-bottom: 1.6rem;
  max-width: 680px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-detail-text strong {
  color: var(--text);
  font-weight: 400;
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

input, textarea, select {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

textarea { resize: vertical; min-height: 120px; }

select option { background: var(--dark-2); }

label.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* FOOTER */
footer {
  background: #080808;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(184,151,90,0.12);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-areas {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-areas a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.6rem;
}

.footer-areas a:hover { color: var(--gold); }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(154,144,128,0.5);
}

/* SCROLL INDICATOR */
.scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .about-grid, .contact-grid, .menu-cols { grid-template-columns: 1fr; gap: 3rem; }
  .experiences-grid { grid-template-columns: 1fr 1fr; }
  .about-img::after { display: none; }
}

@media (max-width: 600px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  .breadcrumbs { padding-top: 5.5rem; }
  .experiences-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { justify-content: flex-start; padding-top: 7rem; }
  .hero-location { gap: 0.5rem; letter-spacing: 0.08em; font-size: 0.6rem; justify-content: center; flex-wrap: nowrap; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.8rem); letter-spacing: 0.02em; }
  .scroll-down { bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-down { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
