:root {
  --ink: #17120f;
  --coffee: #3b2118;
  --clay: #b75d35;
  --marigold: #f2b441;
  --mint: #d6ede4;
  --cream: #fff8ef;
  --paper: #fbf3e5;
  --teal: #176b63;
  --line: rgba(23, 18, 15, 0.14);
  --shadow: 0 22px 70px rgba(43, 29, 20, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 12px 42px rgba(23, 18, 15, 0.12);
  padding-bottom: 14px;
  padding-top: 14px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: rgba(255, 248, 239, 0.94);
  border-radius: 999px;
  color: var(--ink);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  padding: 5px 8px;
  width: 86px;
}

.brand-mark img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand-text {
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand-text,
.site-header.nav-active .brand-text {
  color: var(--ink);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  color: var(--cream);
  position: relative;
}

.site-header.is-scrolled .site-nav a,
.site-header.nav-active .site-nav a {
  color: var(--ink);
}

.nav-action {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 248, 239, 0.18);
  border: 1px solid rgba(255, 248, 239, 0.38);
  border-radius: 999px;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--cream);
  border-radius: 2px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  background: var(--ink);
  border-color: var(--ink);
}

.site-header.nav-active .nav-toggle span:first-child {
  transform: rotate(42deg);
}

.site-header.nav-active .nav-toggle span:last-child {
  transform: rotate(-42deg);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 82vh;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 80px) 58px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/instagram/civil-lines-relaunch.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.82) 0%, rgba(23, 18, 15, 0.48) 45%, rgba(23, 18, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(23, 18, 15, 0.38), rgba(23, 18, 15, 0.05));
}

.hero-content {
  color: var(--cream);
  max-width: 830px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--marigold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  margin-bottom: 22px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--marigold);
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 248, 239, 0.72);
  color: var(--cream);
}

.hero-note {
  background: rgba(255, 248, 239, 0.9);
  border-radius: var(--radius);
  bottom: 32px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 4px;
  max-width: 280px;
  padding: 16px 18px;
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  z-index: 2;
}

.hero-note span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-band {
  background: var(--paper);
}

.intro,
.locations,
.social,
.menu,
.vibes,
.brands,
.visit {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 80px);
}

.intro {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
}

.intro-copy h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  margin-bottom: 22px;
  max-width: 820px;
}

.intro-copy p:not(.section-kicker) {
  color: rgba(23, 18, 15, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

.intro-media {
  border-radius: var(--radius);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.intro-media img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.intro-badge {
  background: rgba(255, 248, 239, 0.92);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 16px 18px;
  position: absolute;
}

.intro-badge strong {
  font-size: 1.5rem;
  line-height: 1;
}

.intro-badge span {
  color: rgba(23, 18, 15, 0.68);
  font-weight: 800;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.intro-pills span {
  background: var(--mint);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 14px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 860px;
}

.location-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 40px;
  padding: 0 16px;
}

.chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(43, 29, 20, 0.08);
  min-width: 0;
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.location-card.is-hidden {
  display: none;
}

.location-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.location-body {
  padding: 22px;
}

.city-tag,
.social-card span,
.menu-list span,
.vibe-strip span {
  color: var(--clay);
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.location-body p,
.social-card p,
.menu-list p,
.vibe-strip p,
.visit p {
  color: rgba(23, 18, 15, 0.72);
  line-height: 1.65;
}

.location-body a {
  color: var(--teal);
  font-weight: 800;
}

.menu-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.menu-image {
  background-image: url("assets/instagram/pizza-workshop.jpg");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  min-height: 620px;
}

.social {
  background: var(--cream);
}

.social-profile {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-weight: 800;
  padding: 12px 18px;
}

.social-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(43, 29, 20, 0.08);
  min-height: 360px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.social-card.feature {
  grid-column: span 2;
}

.social-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.social-card.feature img {
  aspect-ratio: 2 / 1;
}

.social-card div {
  padding: 22px;
}

.social-card h3 {
  margin-bottom: 10px;
}

.play-indicator {
  align-items: center;
  background: rgba(23, 18, 15, 0.78);
  border-radius: 50%;
  display: grid;
  height: 52px;
  justify-content: center;
  left: 18px;
  margin: 0;
  position: absolute;
  top: 18px;
  width: 52px;
}

.play-indicator::before {
  border-bottom: 10px solid transparent;
  border-left: 15px solid white;
  border-top: 10px solid transparent;
  content: "";
  margin-left: 4px;
}

.menu-list {
  align-content: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-list article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 24px;
}

.vibes {
  background: var(--ink);
  color: var(--cream);
}

.vibes .section-kicker,
.vibes .vibe-strip span {
  color: var(--marigold);
}

.vibe-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.vibe-strip article {
  background: rgba(255, 248, 239, 0.08);
  min-height: 270px;
  padding: 30px;
}

.vibe-strip p {
  color: rgba(255, 248, 239, 0.72);
}

.brands {
  background: var(--paper);
}

.brand-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card {
  border-radius: var(--radius);
  color: white;
  display: block;
  min-height: 340px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover {
  box-shadow: 0 24px 70px rgba(23, 18, 15, 0.18);
  transform: translateY(-4px);
}

.brand-card::before {
  background:
    linear-gradient(150deg, rgba(23, 18, 15, 0.18), rgba(23, 18, 15, 0.72)),
    radial-gradient(circle at 24% 18%, rgba(255, 248, 239, 0.24), transparent 32%);
  content: "";
  inset: 0;
  position: absolute;
}

.brand-card.raasaam {
  background: #7b2f21;
}

.brand-card.poquito {
  background: #176b63;
}

.brand-card.sabor {
  background: #3b2118;
}

.brand-card span,
.brand-card .brand-logo,
.brand-card h3,
.brand-card p {
  position: relative;
  z-index: 1;
}

.brand-card span {
  color: var(--marigold);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.brand-logo {
  background: rgba(255, 248, 239, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(23, 18, 15, 0.18);
  height: 142px;
  margin-bottom: 26px;
  object-fit: cover;
  object-position: center 64%;
  padding: 0;
  width: 142px;
}

.brand-logo-square {
  object-position: center;
}

.brand-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  margin-bottom: 16px;
}

.brand-card p {
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.65;
  max-width: 360px;
}

.visit {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
}

.visit h2 {
  margin-bottom: 22px;
}

.visit-form {
  background: var(--mint);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.visit-form label {
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
  background: white;
  border: 1px solid rgba(23, 18, 15, 0.16);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

.visit-form textarea {
  resize: vertical;
}

.site-footer {
  align-items: center;
  background: var(--coffee);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 80px);
}

.site-footer p {
  font-weight: 800;
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .intro,
  .menu-layout,
  .visit {
    grid-template-columns: 1fr;
  }

  .intro-media {
    min-height: 430px;
  }

  .location-grid,
  .social-grid,
  .brand-grid,
  .vibe-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-card.feature {
    grid-column: span 2;
  }

  .menu-image {
    min-height: 420px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-grid;
    position: relative;
    z-index: 30;
  }

  .site-nav {
    background: var(--cream);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 16px;
    padding: 84px 24px 28px;
    position: fixed;
    right: 16px;
    top: 12px;
    z-index: 25;
  }

  .site-header.nav-active .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a,
  .site-header.nav-active .site-nav a {
    color: var(--ink);
  }

  .brand {
    position: relative;
    z-index: 30;
  }

  .site-header.nav-active .brand-mark {
    background: white;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 110px;
  }

  .hero-note {
    bottom: 18px;
    left: 20px;
    max-width: calc(100% - 40px);
    right: 20px;
  }

  .location-grid,
  .social-grid,
  .brand-grid,
  .menu-list,
  .vibe-strip {
    grid-template-columns: 1fr;
  }

  .social-card.feature {
    grid-column: span 1;
  }

  .social-card,
  .brand-card,
  .menu-list article,
  .vibe-strip article {
    min-height: 0;
  }

  .intro-media {
    min-height: 340px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
}
