/* ==================================================
   The Half Pint Mobile — brand: matte black / walnut / brass / cream
   ================================================== */

:root {
  --bg: #141210;
  --bg-2: #1c1815;
  --bg-3: #24201c;
  --walnut: #5C3A21;
  --walnut-deep: #3D2613;
  --brass: #B08D57;
  --brass-bright: #D4AF6E;
  --cream: #F4EBDD;
  --cream-muted: #C9BFA8;
  --cream-dim: rgba(244, 235, 221, 0.65);
  --border: rgba(176, 141, 87, 0.2);
  --border-strong: rgba(176, 141, 87, 0.5);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 30px 80px rgba(0, 0, 0, 0.55);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--brass-bright); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cream); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h1 em { font-style: italic; color: var(--brass-bright); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass); font-family: var(--sans); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.section-head {
  margin-bottom: 60px;
  max-width: 780px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: 1.1rem;
  color: var(--cream-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.link-arrow {
  color: var(--brass-bright);
  font-weight: 600;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
  transition: all 0.2s;
}
.link-arrow:hover { color: var(--cream); border-color: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--brass); color: var(--bg); border-color: var(--brass); }
.btn-primary:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--bg); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(176, 141, 87, 0.3); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--bg); }
.btn-outline { background: transparent; color: var(--brass-bright); border-color: var(--brass); }
.btn-outline:hover { background: var(--brass); color: var(--bg); }
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-nav { padding: 10px 22px; font-size: 0.9rem; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}
.brand:hover { color: var(--brass-bright); }
.brand-mark { width: 36px; height: 36px; color: var(--brass); }
.brand-text { color: var(--cream); }
.brand-mobile { color: var(--brass); font-style: italic; font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width 0.25s;
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:not(.btn-nav):hover { color: var(--brass-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 18, 16, 0.95) 0%,
    rgba(20, 18, 16, 0.75) 40%,
    rgba(20, 18, 16, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8px;
}
.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 580px;
  margin-bottom: 36px;
  letter-spacing: 0.005em;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--brass-bright);
  font-weight: 500;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #d4af6e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 110, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 110, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 110, 0); }
}

/* Sections */
section { padding: 100px 0; }

/* Pitch */
.pitch { background: var(--bg-2); border-top: 1px solid var(--border); }
.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pitch-copy p {
  color: var(--cream-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.pitch-copy strong { color: var(--cream); font-weight: 600; }
.pitch-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Services */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-strong);
}
.service-card.featured {
  border-color: var(--brass);
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(176, 141, 87, 0.15);
}
.service-card.featured:hover { transform: translateY(-20px); }
.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brass);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 { margin-bottom: 12px; }
.service-desc { color: var(--cream-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.service-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.service-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--cream-muted);
  border-bottom: 1px dashed rgba(176, 141, 87, 0.15);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 2px;
  background: var(--brass);
}
.service-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--brass-bright);
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Weddings section */
.weddings {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg);
}
.weddings-image-side {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  z-index: 0;
}
.weddings-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}
.weddings-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(20, 18, 16, 0.85) 20%,
    rgba(20, 18, 16, 0.35) 100%
  );
}
.weddings-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  margin-right: auto;
}
.weddings-head {
  margin-bottom: 56px;
}
.weddings-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 20px;
}
.weddings-head h2 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 600;
}
.weddings-lede {
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 640px;
}
.weddings-perks, .weddings-addons {
  margin-bottom: 48px;
}
.weddings-perks-heading {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
}
.perks-list-compact { gap: 22px; }
.perks-list li {
  padding: 0;
  border: none;
}
.perk-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
}
.perk-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--brass);
}
.perks-list-compact .perk-title { font-size: 1.08rem; }
.perk-body {
  color: var(--cream-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 22px;
}
.weddings-commitment {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.08), rgba(92, 58, 33, 0.12));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 48px 0 40px;
  position: relative;
}
.commitment-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 14px;
}
.weddings-commitment p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--cream);
  margin: 0;
}
.weddings-commitment p strong {
  font-style: normal;
  color: var(--brass-bright);
  font-weight: 700;
}
.commitment-quote {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(176, 141, 87, 0.25);
  font-size: 1.2rem;
  color: var(--brass-bright);
  font-weight: 600;
}
.weddings-cta { margin-top: 8px; }

@media (max-width: 1024px) {
  .weddings-image-side { width: 35%; }
  .weddings-inner {
    max-width: 620px;
    margin-left: 24px;
    padding: 0 24px 0 0;
  }
}
@media (max-width: 768px) {
  .weddings { padding: 80px 0; }
  .weddings-image-side {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 40px;
  }
  .weddings-image-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 18, 16, 0.3) 0%,
      rgba(20, 18, 16, 0.95) 100%
    );
  }
  .weddings-inner {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }
  .weddings-commitment { padding: 24px; }
  .weddings-commitment p { font-size: 1rem; }
}

/* Pizza showcase */
.pizza-showcase {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pizza-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  margin: 0;
  transition: transform 0.3s, border-color 0.3s;
}
.pizza-tile:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.pizza-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pizza-tile:hover img { transform: scale(1.05); }
.pizza-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.95), rgba(20, 18, 16, 0));
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pizza-tile-cta {
  background: linear-gradient(135deg, var(--walnut-deep), var(--walnut));
  border-color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pizza-cta-inner {
  text-align: center;
}
.pizza-cta-inner h4 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.pizza-cta-inner p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pizza-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pizza-tile figcaption { font-size: 0.9rem; padding: 10px 12px; }
}

/* Single service card (bar-only site) */
.single-service-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-lift);
}
.single-service-image {
  overflow: hidden;
  min-height: 400px;
}
.single-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-service-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-service-body .service-tag {
  position: static;
  display: inline-block;
  background: var(--brass);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  align-self: flex-start;
}
.single-service-body h3 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.single-service-body .service-desc {
  color: var(--cream-muted);
  font-size: 1rem;
  margin-bottom: 26px;
  line-height: 1.65;
}
.single-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.service-column {
  display: flex;
  flex-direction: column;
}
.service-column-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.single-service-grid .service-list {
  margin: 0;
  padding: 0;
  flex: 1;
}
.single-service-grid .service-list li {
  padding: 8px 0 8px 22px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--cream-muted);
  position: relative;
  border-bottom: 1px dashed rgba(176, 141, 87, 0.18);
}
.single-service-grid .service-list li:last-child {
  border-bottom: none;
}
.single-service-grid .service-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--brass);
  font-weight: 400;
  background: none;
  width: auto;
  height: auto;
}
.service-legal {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(176, 141, 87, 0.06);
  border-left: 2px solid var(--brass);
  border-radius: 0 4px 4px 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--cream-muted);
  font-style: italic;
}
.single-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 20px;
  flex-wrap: wrap;
}
.single-service-footer .service-price {
  padding: 0;
  border: none;
  margin: 0;
}
@media (max-width: 900px) {
  .single-service-card { grid-template-columns: 1fr; }
  .single-service-image { min-height: 280px; aspect-ratio: 16/10; }
  .single-service-body { padding: 32px 28px; }
  .single-service-grid { grid-template-columns: 1fr; gap: 4px; }
}

/* Single-column menu variant */
.menu-grid-single {
  grid-template-columns: 1fr !important;
  max-width: 680px;
}

/* Cross-link section */
.cross-link {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cross-link-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.08), rgba(92, 58, 33, 0.15));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.cross-link-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  margin-top: 8px;
}
.cross-link-copy p {
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Menu */
.menu {
  background: var(--bg-2);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(92, 58, 33, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(176, 141, 87, 0.08) 0%, transparent 50%);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-heading {
  font-size: 1.4rem;
  color: var(--brass-bright);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brass);
  font-style: italic;
}
.menu-item { margin-bottom: 22px; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.menu-item-head strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}
.menu-item-head em {
  font-style: italic;
  color: var(--brass);
  font-size: 0.85rem;
  white-space: nowrap;
}
.menu-item-head .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(176, 141, 87, 0.3);
  margin-bottom: 4px;
}
.menu-item p {
  color: var(--cream-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.menu-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
}

/* Licensing notice */
.licensing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.licensing-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
  padding: 20px 0;
}
.licensing-badge {
  color: var(--brass);
  width: 56px;
  height: 56px;
  padding: 12px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(176, 141, 87, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.licensing-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  margin-top: 4px;
}
.licensing-body p {
  color: var(--cream-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.licensing-body p strong { color: var(--cream); font-weight: 600; }
.licensing-list {
  list-style: none;
  margin: 24px 0 24px;
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--brass);
}
.licensing-list li {
  padding: 6px 0;
  color: var(--cream);
  font-size: 0.96rem;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
}
.licensing-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--brass-bright);
  font-weight: 700;
}
.licensing-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--cream) !important;
  margin-top: 8px !important;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) {
  .licensing-inner { grid-template-columns: 1fr; gap: 24px; }
  .licensing-badge { margin: 0 auto; }
  .licensing-body { text-align: left; }
}

/* Why */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.why-item { padding: 0; }
.why-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.7;
}
.why-item h4 { margin-bottom: 10px; color: var(--cream); }
.why-item p { color: var(--cream-muted); font-size: 0.95rem; line-height: 1.65; }

/* Gallery */
.gallery { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.3s;
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20, 18, 16, 0.3);
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-large { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* FAQ */
.faq { background: var(--bg); }
.faq-container { max-width: 820px; }
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  transition: background 0.2s;
}
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--brass-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.75rem;
  color: var(--brass);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 16px;
  color: var(--cream-muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* CTA strip */
.cta-strip {
  padding: 100px 24px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: var(--cream);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20, 18, 16, 0.85), rgba(20, 18, 16, 0.75));
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cta-inner h2 { margin: 12px 0 16px; }
.cta-inner p { color: var(--cream-muted); font-size: 1.1rem; margin-bottom: 32px; }

/* Contact */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  transition: border 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass-bright);
  background: var(--bg-3);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-full { grid-column: 1 / -1; }
.btn-submit { align-self: flex-start; }
.form-note { font-size: 0.85rem; color: var(--cream-dim); font-style: italic; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-link {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 600;
  display: block;
}
.contact-link:hover { color: var(--brass-bright); }
.tiny { font-size: 0.82rem; color: var(--cream-dim); margin-top: 6px; line-height: 1.5; font-style: italic; }
.contact-block p { color: var(--cream-muted); font-size: 0.95rem; line-height: 1.6; }
.socials { display: flex; gap: 20px; }
.socials a { color: var(--cream); font-weight: 500; }
.socials a:hover { color: var(--brass-bright); }

/* Footer */
.footer {
  background: #0d0b09;
  padding: 60px 0 0;
  border-top: 2px solid var(--walnut-deep);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-mark { width: 44px; height: 44px; color: var(--brass); margin-bottom: 12px; }
.footer-brand p { color: var(--cream-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-brand strong { color: var(--cream); font-size: 1.05rem; font-family: var(--serif); }
.footer-col h5 { margin-bottom: 16px; }
.footer-col a { display: block; color: var(--cream-muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--brass-bright); }
.footer-col p { color: var(--cream-muted); font-size: 0.9rem; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; border: 2px solid var(--brass); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--serif);
}
.lightbox-close:hover { color: var(--brass-bright); }

/* Fade-in animations */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .pitch-grid, .menu-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .service-card.featured:hover { transform: translateY(-8px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-large, .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip { background-attachment: scroll; padding: 70px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand .brand-mark { margin: 0 auto 12px; }
}
