:root {
  --bg: #111;
  --bg-2: #1c1c1c;
  --text: #fff;
  --muted: rgba(255,255,255,.82);
  --accent: #f4d642;
  --accent-dark: #d4b31d;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #0f0f0f;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19,19,19,.95);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.logo { width: 190px; height: auto; }
.main-nav {
  display: flex;
  gap: 42px;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 15px;
}
.main-nav a:hover { color: var(--accent); }

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.52)),
    url('assets/favorito-gallery-04-418x315.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,.45);
}
.hero h1 span { color: var(--accent); display: inline-block; }
.hero p {
  margin: 0 auto 28px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  max-width: 980px;
  color: var(--muted);
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  min-height: 58px;
  padding: 14px 26px;
  font-weight: 800;
  letter-spacing: .04em;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #111;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.04);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.big-btn { min-width: 240px; }
.hero-phone {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,.5);
}

.menu-cta {
  padding: 90px 0;
  background: linear-gradient(rgba(10,10,10,.88), rgba(10,10,10,.92)), url('assets/favorito-gallery-05-418x315.jpg') center / cover no-repeat;
}
.menu-cta h2,
.section-heading h2,
.contact h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 64px);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: #fff;
}
.menu-note {
  margin: 28px 0 0;
  font-size: 18px;
  color: var(--accent);
}

.about {
  padding: 80px 0 90px;
  background: #181818;
}
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}
.section-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 418 / 315;
  object-fit: cover;
  border-radius: 4px;
}

.contact {
  padding: 80px 0 100px;
  background: #111;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #1b1b1b;
  padding: 34px;
  min-height: 360px;
}
.contact-card p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
}
.contact-card a { color: var(--accent); font-weight: 700; }
.contact-map {
  position: relative;
  overflow: hidden;
}
.map-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 292px;
}
.map-tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7);
}
.map-label {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(17,17,17,.9);
  border: 1px solid rgba(255,255,255,.08);
}
.map-label img { width: 28px; }
.map-label span { font-weight: 700; }

@media (max-width: 900px) {
  .nav-wrap { min-height: auto; padding: 18px 0; flex-direction: column; }
  .main-nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero { min-height: auto; }
  .gallery-grid,
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav { font-size: 13px; gap: 16px; }
  .logo { width: 170px; }
  .hero-content { padding: 64px 0; }
  .hero p { font-size: 20px; }
  .btn { min-width: 100%; }
  .contact-card { padding: 24px; }
}
