/*
Theme Name: Scottsdale Bartending Service
Theme URI: https://scottsdalebartendingservice.com/
Description: Custom WordPress theme for Scottsdale Bartending Service.
Version: 1.0.0
Author: Robproject
*/

:root {
  --ink: #102725;
  --forest: #174239;
  --mesa: #c4613e;
  --mesa-dark: #91462f;
  --paper: #eee9dd;
  --canvas: #fbf7ef;
  --sage: #c6d2c3;
  --line: #cfc7b8;
  --muted: #5f6760;
  --white: #fffdf8;
  --shadow: 0 28px 72px rgba(16, 39, 37, 0.15);
  --display: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

/* Mobile viewport pass: keep business panels readable without side clipping. */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-hero,
  .package-hero,
  .reviews-hero,
  .about-hero,
  .quote-section {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy,
  .package-hero-card,
  .review-meter,
  .quote-intro,
  .quote-form,
  .shelf-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .hero-copy h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    width: 100%;
    max-width: 12ch !important;
    font-size: clamp(1.92rem, 8.25vw, 2.42rem) !important;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .hero-copy .eyebrow {
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.13em;
  }

  .hero-copy p,
  .package-hero p,
  .reviews-hero p,
  .about-hero p,
  .quote-intro p {
    width: 100%;
    max-width: 100% !important;
    overflow-wrap: break-word;
  }
}

/* Final mobile hardening: readable Scottsdale hero lines inside the viewport. */
@media (max-width: 620px) {
  .hero-copy,
  .package-hero-card,
  .review-meter,
  .quote-intro {
    width: min(calc(100vw - 28px), 520px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 11ch !important;
    font-size: clamp(1.86rem, 7.9vw, 2.32rem) !important;
  }

  .hero-copy p,
  .package-hero p,
  .reviews-hero p,
  .about-hero p,
  .quote-intro p {
    width: min(100%, 28ch) !important;
    max-width: 28ch !important;
  }

  .hero-copy .button {
    width: auto;
    min-width: 220px;
    max-width: 100%;
  }
}

/* Full-page responsive QA pass: compact reviews gallery on mobile. */
@media (max-width: 900px) {
  .review-gallery,
  .quote-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .review-gallery-grid,
  .gallery-grid {
    gap: 18px !important;
  }

  .review-gallery article,
  .quote-form {
    min-height: auto !important;
    padding: 22px !important;
  }

  .review-gallery img {
    height: 260px !important;
    min-height: 0 !important;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .review-gallery,
  .quote-section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .review-gallery article,
  .quote-form {
    padding: 18px !important;
  }

  .review-gallery img {
    height: 220px !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--mesa);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-copper,
.header-cta {
  background: var(--mesa);
  color: var(--white);
}

.button-copper:hover,
.header-cta:hover {
  background: var(--mesa-dark);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(22px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.98);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  min-width: max-content;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 0.95;
}

.brand small {
  color: var(--mesa);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 900;
}

.nav-links a {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}

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

.header-cta {
  min-height: 42px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--canvas);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 78px 14px auto;
  z-index: 49;
  display: none;
  border: 1px solid var(--line);
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 28px;
  align-items: center;
  padding: 38px clamp(22px, 5vw, 56px) 50px;
  background: var(--canvas);
}

.hero-copy {
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.home-hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.8rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.hero-media {
  position: relative;
  min-height: 500px;
  padding: 0;
  background: transparent;
}

.hero-media img {
  height: 468px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-ticket {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(320px, calc(100% - 68px));
  padding: 20px;
  border-radius: 14px;
  background: var(--canvas);
  box-shadow: 0 18px 48px rgba(16, 39, 37, 0.22);
}

.hero-ticket span {
  color: var(--mesa);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ticket b {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
}

.hero-ticket p {
  margin-bottom: 0;
}

.flow-strip {
  padding: 66px 0;
  background: var(--paper);
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border-top: 2px solid var(--ink);
}

.flow-line article {
  position: relative;
  min-height: 260px;
  padding: 28px 22px 0 0;
  border-right: 1px solid var(--line);
}

.flow-line article::before {
  position: absolute;
  top: -10px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--mesa);
  content: "";
}

.flow-line span {
  display: block;
  margin-bottom: 48px;
  color: var(--mesa);
  font-weight: 900;
}

.flow-line b {
  display: block;
  font-size: 1.2rem;
}

.estate-section {
  padding: 72px 0;
  background: var(--forest);
  color: var(--white);
}

.estate-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title photo"
    "note photo";
  gap: 22px;
}

.estate-title {
  grid-area: title;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.estate-title h2 {
  color: var(--white);
}

.estate-photo {
  grid-area: photo;
}

.estate-photo img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.estate-note {
  grid-area: note;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background: var(--sage);
}

.estate-note p {
  margin-bottom: 0;
  color: var(--ink);
}

.supply-studio {
  padding: 74px 0;
  background: var(--canvas);
}

.supply-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.supply-card {
  position: sticky;
  top: 108px;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.supply-card span {
  color: var(--mesa);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supply-card h2 {
  margin: 16px 0 0;
}

.supply-ledger {
  display: grid;
  gap: 12px;
}

.supply-ledger article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.supply-ledger p {
  margin-bottom: 0;
}

.occasion-board {
  padding: 76px 0;
  background: var(--paper);
}

.occasion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.occasion-head {
  align-self: start;
  padding: 32px;
  border-radius: 18px;
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.occasion-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.occasion-list article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.occasion-list article:nth-child(even) {
  background: var(--sage);
}

.occasion-list article:last-child {
  border-bottom: 0;
}

.occasion-list span {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
}

.occasion-list p {
  margin-bottom: 0;
}

.proof-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
}

.proof-item {
  min-height: 210px;
  padding: clamp(28px, 5vw, 50px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--mesa);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.proof-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.package-invite {
  padding: 66px 0;
  background: var(--sage);
}

.package-invite-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
}

.package-invite span {
  color: var(--mesa-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-invite h2 {
  margin: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: stretch;
  padding: 78px clamp(22px, 5vw, 56px);
  background: var(--canvas);
}

.quote-alt {
  background: var(--paper);
}

.quote-intro {
  padding: 32px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  outline: none;
  padding: 14px;
  text-transform: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--mesa);
  background: rgba(255, 255, 255, 0.13);
}

.quote-form .full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 62px 0 28px;
  background: var(--forest);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a {
  color: var(--white);
  font-weight: 900;
}

.copyright {
  width: min(1180px, calc(100% - 44px));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

.package-hero,
.reviews-hero,
.about-hero {
  padding: 50px 0;
  background: var(--canvas);
}

.package-hero-grid,
.reviews-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: end;
}

.package-hero h1,
.reviews-hero h1,
.about-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.package-hero p,
.reviews-hero p {
  max-width: 620px;
}

.service-shelf {
  padding: 72px 0;
  background: var(--paper);
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.shelf-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 22px;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 39, 37, 0.08);
}

.shelf-card:nth-child(1) {
  margin-top: 0;
}

.shelf-card:nth-child(3) {
  margin-top: 0;
}

.shelf-card.spotlight {
  background: var(--forest);
  color: var(--white);
}

.shelf-card span {
  color: var(--mesa);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shelf-card strong {
  margin: 12px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.shelf-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.shelf-card.spotlight p,
.shelf-card.spotlight li {
  color: rgba(255, 255, 255, 0.74);
}

.shelf-card .button {
  margin-top: auto;
}

.estimate-board {
  padding: 72px 0;
  background: var(--canvas);
}

.estimate-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

.estimate-title {
  padding: 30px;
  background: var(--sage);
}

.estimate-stack {
  display: grid;
  gap: 12px;
}

.estimate-stack article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 22px;
  border-left: 8px solid var(--mesa);
  background: var(--white);
}

.estimate-stack span {
  color: var(--muted);
}

.bar-lookbook {
  padding: 76px 0;
  background: var(--ink);
  color: var(--white);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.lookbook-copy {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lookbook-copy span {
  color: var(--mesa);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lookbook-copy h2 {
  color: var(--white);
}

.look-card {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
}

.look-card img {
  height: 310px;
  object-fit: cover;
}

.look-card figcaption {
  padding: 14px;
  font-weight: 900;
}

.addons-lane {
  padding: 62px 0;
  background: var(--sage);
}

.addons-lane-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
}

.addons-lane article {
  padding: 28px;
  border-top: 8px solid var(--mesa);
  background: var(--canvas);
}

.addons-lane span {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
}

.faq-fold {
  padding: 70px 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list article {
  padding: 20px 24px;
  background: var(--white);
  box-shadow: inset 8px 0 0 var(--sage);
}

.faq-list p {
  margin-bottom: 0;
}

.review-meter {
  padding: 28px;
  background: var(--forest);
  color: var(--white);
}

.package-hero-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-hero-card img {
  height: 230px;
  object-fit: cover;
}

.package-hero-card p {
  margin: 0;
}

.review-meter--photo {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 14px;
}

.review-meter--photo img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.review-meter b {
  display: block;
  color: var(--mesa);
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
}

.review-meter span {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-meter p {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-theatre {
  padding: 72px 0;
  background: var(--forest);
}

.theatre-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.theatre-stage {
  position: relative;
  min-height: 360px;
  padding: 32px;
  background: var(--canvas);
}

.slide {
  display: none;
}

.slide.is-active {
  display: block;
}

.slide span {
  color: var(--mesa);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

blockquote {
  max-width: 820px;
  margin: 18px 0 28px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
}

.slider-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  min-height: 38px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.theatre-aside {
  padding: 28px;
  background: var(--sage);
}

.theatre-aside ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 18px;
  font-weight: 900;
}

.trust-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
}

.trust-tag {
  min-height: 220px;
  padding: clamp(28px, 5vw, 48px);
  border-right: 1px solid var(--line);
}

.trust-tag span {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
}

.review-gallery {
  padding: 76px 0;
  background: var(--canvas);
}

.scottsdale-wall {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 28px;
}

.scottsdale-wall img {
  height: 100%;
  object-fit: cover;
}

.scottsdale-wall img:first-child {
  grid-row: span 2;
}

.scottsdale-wall img:nth-child(4) {
  grid-column: span 2;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about-hero img {
  height: 430px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.origin-note {
  padding: 72px 0;
  background: var(--paper);
}

.origin-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 44px;
  padding-top: 30px;
  border-top: 2px solid var(--ink);
}

.origin-grid div {
  columns: 2;
  column-gap: 44px;
}

.origin-grid h2 {
  column-span: all;
}

.standards-wheel {
  padding: 74px 0;
  background: var(--ink);
  color: var(--white);
}

.wheel-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 14px;
}

.wheel-grid > * {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.wheel-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mesa);
}

.wheel-center span {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wheel-grid h2,
.wheel-grid b {
  color: var(--white);
}

.wheel-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.coverage-panel {
  padding: 70px 0;
  background: var(--sage);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.coverage-grid span {
  color: var(--mesa-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.coverage-list b {
  padding: 14px 16px;
  background: var(--canvas);
}

.service-area {
  padding: 76px 0;
  background: var(--canvas);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.area-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 26px;
  background: var(--forest);
}

.area-map span {
  min-height: 92px;
  display: grid;
  place-items: center;
  background: var(--canvas);
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 16px;
  }

  .flow-line,
  .proof-ribbon,
  .trust-tags,
  .shelf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-grid,
  .wheel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shelf-card:nth-child(1),
  .shelf-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    inset-top: 72px;
  }

  .home-hero,
  .estate-shell,
  .supply-grid,
  .occasion-grid,
  .package-invite-grid,
  .quote-section,
  .package-hero-grid,
  .reviews-hero-grid,
  .estimate-grid,
  .faq-grid,
  .theatre-grid,
  .about-hero-grid,
  .origin-grid,
  .coverage-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 28px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img,
  .estate-photo img,
  .about-hero img {
    height: 360px;
    min-height: 0;
  }

  .estate-shell {
    grid-template-areas:
      "title"
      "photo"
      "note";
  }

  .supply-card {
    position: static;
  }

  .occasion-list article,
  .supply-ledger article,
  .estimate-stack article {
    grid-template-columns: 1fr;
  }

  .quote-form,
  .addons-lane-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .origin-grid div {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  h1,
  .home-hero h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .home-hero,
  .quote-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy,
  .quote-intro,
  .quote-form {
    padding: 22px;
  }

  .hero-media {
    padding: 10px;
  }

  .hero-media img,
  .estate-photo img,
  .about-hero img {
    height: 290px;
  }

  .hero-ticket {
    position: static;
    width: auto;
    margin-top: 10px;
    box-shadow: 6px 6px 0 var(--mesa);
  }

  .flow-line,
  .proof-ribbon,
  .trust-tags,
  .shelf-grid,
  .lookbook-grid,
  .wheel-grid,
  .scottsdale-wall {
    grid-template-columns: 1fr;
  }

  .flow-line article {
    min-height: auto;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-line span {
    margin-bottom: 16px;
  }

  .scottsdale-wall {
    grid-auto-rows: auto;
  }

  .scottsdale-wall img,
  .scottsdale-wall img:first-child,
  .scottsdale-wall img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .slider-controls {
    position: static;
    margin-top: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Scottsdale-specific direction: fixed service-dossier rail on desktop. */
@media (min-width: 901px) {
  body {
    padding-left: 254px;
    background: var(--canvas);
  }

  .site-header {
    position: fixed;
    inset: 0 auto 0 0;
    display: flex;
    width: 254px;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding: 30px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    background: var(--ink);
    color: var(--white);
  }

  .brand {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 1.42rem;
  }

  .brand small {
    color: var(--mesa);
  }

  .nav-links {
    display: grid;
    gap: 0;
    margin: 0;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
  }

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

  .header-cta {
    margin-top: auto;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    min-height: 780px;
    padding: 46px clamp(28px, 5vw, 72px);
    background: var(--ink);
    color: var(--white);
  }

  .hero-copy {
    padding: 0;
    border-top: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-hero h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(4rem, 6.7vw, 8rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.74);
  }

  .hero-media {
    min-height: 610px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-media img {
    height: 610px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    object-fit: cover;
  }

  .hero-ticket {
    right: auto;
    bottom: 30px;
    left: -74px;
    box-shadow: none;
  }

  .flow-strip {
    padding: 78px 0;
    background: var(--canvas);
  }

  .flow-line {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .flow-line article {
    display: grid;
    min-height: 0;
    grid-template-columns: 110px 230px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-line article::before {
    display: none;
  }

  .flow-line span {
    margin: 0;
    color: var(--mesa);
    font-family: var(--display);
    font-size: 3.6rem;
    line-height: 1;
  }

  .estate-shell {
    grid-template-columns: 0.85fr 1.15fr 0.62fr;
    grid-template-areas: "title photo note";
    gap: 18px;
  }

  .estate-title,
  .estate-note {
    min-height: 520px;
  }

  .estate-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .estate-photo img {
    min-height: 520px;
  }

  .supply-grid {
    grid-template-columns: 1fr;
  }

  .supply-card {
    position: static;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: end;
  }

  .supply-ledger {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
  }

  .supply-ledger article {
    display: block;
    min-height: 260px;
    padding: 24px;
    border: 0;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .occasion-head {
    max-width: 780px;
    border: 0;
  }

  .occasion-list {
    grid-template-columns: repeat(4, 1fr);
    border: 0;
    gap: 12px;
  }

  .occasion-list article,
  .occasion-list article:nth-child(even) {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    border-radius: 18px;
    background: var(--canvas);
    box-shadow: var(--shadow);
  }

  .proof-ribbon {
    grid-template-columns: 1fr;
  }

  .proof-item {
    display: grid;
    min-height: 140px;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .package-invite-grid {
    grid-template-columns: 150px minmax(0, 1fr) 180px;
  }

  .quote-section {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .quote-intro {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    border: 0;
  }

  .quote-form {
    grid-template-columns: repeat(4, 1fr);
  }

  .quote-form label:nth-child(1),
  .quote-form label:nth-child(2) {
    grid-column: span 2;
  }

  .quote-form label:nth-child(3),
  .quote-form label:nth-child(4) {
    grid-column: span 2;
  }

  .shelf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shelf-card,
  .shelf-card.spotlight {
    display: grid;
    min-height: 0;
    grid-template-columns: 150px 120px minmax(260px, 1.05fr) minmax(240px, 0.9fr) 160px;
    grid-template-areas: "name price copy list action";
    gap: 20px;
    align-items: center;
  }

  .shelf-card span {
    grid-area: name;
  }

  .shelf-card strong {
    grid-area: price;
    margin: 0;
  }

  .shelf-card p {
    grid-area: copy;
    margin: 0;
  }

  .shelf-card ul {
    grid-area: list;
    margin: 0;
  }

  .shelf-card .button {
    grid-area: action;
    margin: 0;
  }

  .estimate-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .estimate-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-lookbook {
    background: var(--canvas);
    color: var(--ink);
  }

  .lookbook-grid {
    grid-template-columns: 0.8fr 1fr 0.72fr 1fr;
  }

  .lookbook-copy {
    background: var(--ink);
    color: var(--white);
  }

  .lookbook-copy h2 {
    color: var(--white);
  }

  .look-card:nth-child(3) {
    margin-top: 70px;
  }

  .addons-lane-grid {
    grid-template-columns: 0.8fr 1.35fr 0.85fr;
  }

  .reviews-hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .reviews-hero h1 {
    max-width: 760px;
    font-size: clamp(3.5rem, 5.9vw, 7rem);
  }

  .testimonial-theatre {
    background: var(--canvas);
  }

  .theatre-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .theatre-stage {
    order: 2;
    min-height: 430px;
    background: var(--ink);
    color: var(--white);
  }

  .theatre-stage p,
  .theatre-stage blockquote {
    color: var(--white);
  }

  .slider-controls button {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
  }

  .theatre-aside {
    min-height: 430px;
  }

  .trust-tags {
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--forest);
    color: var(--white);
  }

  .trust-tag {
    border-right-color: rgba(255, 255, 255, 0.18);
  }

  .trust-tag p {
    color: rgba(255, 255, 255, 0.72);
  }

  .about-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-hero {
    background: var(--ink);
    color: var(--white);
  }

  .about-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
  }

  .about-hero img {
    height: 500px;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .origin-grid {
    grid-template-columns: 1fr;
  }

  .origin-grid > .eyebrow {
    font-size: 0.95rem;
  }

  .origin-grid div {
    columns: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .origin-grid h2 {
    grid-column: 1 / -1;
  }

  .wheel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .area-map {
    transform: rotate(-1deg);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  body {
    padding-left: 224px;
  }

  .site-header {
    width: 224px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    height: 420px;
  }

  .hero-ticket {
    left: 26px;
  }

  .occasion-list,
  .supply-ledger {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Final Scottsdale direction: modern top navigation, not a sidebar. */
@media (min-width: 901px) {
  body {
    padding-left: 0;
    background: var(--canvas);
  }

  .site-header {
    position: sticky;
    inset: auto;
    top: 0;
    display: flex;
    width: auto;
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 12px clamp(24px, 4vw, 56px);
    border-right: 0;
    border-bottom: 1px solid rgba(16, 39, 37, 0.14);
    background: rgba(251, 247, 239, 0.96);
    color: var(--ink);
  }

  .brand {
    padding-bottom: 0;
    border-bottom: 0;
    color: var(--ink);
    font-size: 1.26rem;
  }

  .brand small {
    color: var(--mesa);
  }

  .nav-links {
    display: flex;
    gap: 4px;
    margin: 0 0 0 auto;
    padding: 5px;
    border-radius: 999px;
    background: rgba(198, 210, 195, 0.34);
  }

  .nav-links a {
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    border-bottom-color: transparent;
    background: var(--ink);
    color: var(--white);
  }

  .header-cta {
    margin-top: 0;
    border-radius: 999px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    min-height: 0;
    gap: 26px;
    padding: 44px clamp(24px, 4vw, 56px) 58px;
    background: var(--canvas);
    color: var(--ink);
  }

  .hero-copy {
    display: flex;
    min-height: 560px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 54px);
    border: 0;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .home-hero h1 {
    max-width: 680px;
    color: var(--ink);
    font-size: clamp(3.4rem, 5.25vw, 6.2rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 610px;
    color: var(--muted);
  }

  .hero-media {
    min-height: 560px;
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: transparent;
  }

  .hero-media img {
    height: 536px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow);
  }

  .hero-ticket {
    right: 30px;
    bottom: 30px;
    left: auto;
    width: min(340px, calc(100% - 60px));
    border-left: 0;
    border-radius: 16px;
    background: var(--canvas);
    box-shadow: 0 20px 54px rgba(16, 39, 37, 0.24);
  }

  .flow-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    border-top: 2px solid var(--ink);
  }

  .flow-line article {
    display: block;
    min-height: 250px;
    padding: 26px 22px 24px;
    border-right: 0;
    border-bottom: 0;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.72);
  }

  .flow-line article::before {
    display: block;
  }

  .flow-line span {
    margin-bottom: 42px;
    font-size: 1rem;
  }
}

/* Business-site polish: tighter rhythm, calmer type, practical section density. */
h1 {
  font-size: clamp(2.55rem, 4.5vw, 5rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3.35rem);
}

.home-hero,
.flow-strip,
.estate-section,
.supply-studio,
.occasion-board,
.package-invite,
.quote-section,
.service-shelf,
.estimate-board,
.bar-lookbook,
.addons-lane,
.faq-fold,
.testimonial-theatre,
.review-gallery,
.origin-note,
.standards-wheel,
.coverage-panel,
.service-area {
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.package-hero,
.reviews-hero,
.about-hero {
  padding-top: clamp(34px, 4vw, 48px);
  padding-bottom: clamp(34px, 4vw, 48px);
}

.hero-copy,
.quote-intro,
.estimate-title,
.occasion-head,
.theatre-aside,
.review-meter {
  padding: clamp(24px, 3vw, 34px);
}

.proof-item,
.trust-tag,
.wheel-grid > *,
.shelf-card,
.addons-lane article {
  min-height: auto;
}

.estate-photo img,
.look-card img,
.about-hero img {
  max-height: 430px;
}

@media (min-width: 901px) {
  .site-header {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero-copy {
    min-height: 390px;
    padding: clamp(28px, 3.2vw, 42px);
  }

  .home-hero h1 {
    max-width: 590px;
    font-size: clamp(2.55rem, 3.65vw, 4.25rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-media img {
    height: 390px;
  }

  .hero-copy .button {
    align-self: flex-start;
    min-width: 220px;
  }

  .hero-ticket {
    right: 22px;
    bottom: 22px;
    width: min(300px, calc(100% - 44px));
    padding: 16px;
  }

  .flow-line article {
    min-height: 185px;
    padding: 24px 20px 22px;
  }

  .flow-line span {
    margin-bottom: 24px;
  }

  .estate-title,
  .estate-note,
  .estate-photo img {
    min-height: 390px;
  }

  .supply-card {
    grid-template-columns: 220px 1fr;
    padding: 28px;
  }

  .supply-ledger article {
    min-height: 205px;
  }

  .occasion-list article,
  .occasion-list article:nth-child(even) {
    min-height: 205px;
    padding: 22px;
  }

  .proof-item {
    min-height: 118px;
    grid-template-columns: 250px 1fr;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .proof-item span {
    font-size: 1.55rem;
  }

  .package-invite-grid {
    grid-template-columns: 125px minmax(0, 1fr) 170px;
  }

  .quote-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .quote-form {
    padding: 22px;
  }

  .shelf-card,
  .shelf-card.spotlight {
    grid-template-columns: 140px 112px minmax(240px, 1.05fr) minmax(220px, 0.9fr) 158px;
    padding: 18px 20px;
  }

  .shelf-card strong {
    font-size: 1.65rem;
  }

  .shelf-card p,
  .shelf-card li {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .estimate-stack article {
    padding: 18px 20px;
  }

  .look-card img {
    height: 245px;
  }

  .look-card:nth-child(3) {
    margin-top: 38px;
  }

  .theatre-stage,
  .theatre-aside {
    min-height: 330px;
  }

  blockquote {
    font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  }

  .reviews-hero h1,
  .package-hero h1,
  .about-hero h1 {
    max-width: 760px;
    font-size: clamp(2.65rem, 4.05vw, 4.7rem);
  }

  .review-meter b {
    font-size: clamp(3.4rem, 5vw, 5.4rem);
  }

  .about-hero img {
    height: 390px;
  }

  .wheel-grid > * {
    min-height: 230px;
  }

  .area-map span {
    min-height: 74px;
  }
}

@media (max-width: 900px) {
  .home-hero,
  .quote-section {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero-copy,
  .quote-intro,
  .quote-form {
    padding: 22px;
  }

  .hero-media img,
  .estate-photo img,
  .package-hero-card img,
  .review-meter--photo img,
  .about-hero img {
    height: 300px;
  }

  .review-meter--photo {
    grid-template-columns: 1fr;
  }

  .shelf-card,
  .shelf-card.spotlight {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .shelf-card .button {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final responsive repair: keep business-copy panels inside mobile viewport. */
@media (max-width: 620px) {
  .home-hero,
  .package-hero,
  .reviews-hero,
  .about-hero,
  .quote-section {
    overflow: hidden;
  }

  .hero-copy,
  .package-hero-card,
  .review-meter,
  .quote-intro,
  .quote-form,
  .shelf-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-copy h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.12rem, 9.3vw, 2.78rem) !important;
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-copy p,
  .package-hero p,
  .reviews-hero p,
  .about-hero p,
  .quote-intro p {
    max-width: 100% !important;
    font-size: 0.98rem;
  }

  .button,
  .header-cta {
    max-width: 100%;
  }
}

/* Final mobile override: keep Scottsdale business panels readable. */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-hero,
  .package-hero,
  .reviews-hero,
  .about-hero,
  .quote-section {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-copy,
  .package-hero-card,
  .review-meter,
  .quote-intro,
  .quote-form,
  .shelf-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .hero-copy h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    width: 100%;
    max-width: 12ch !important;
    font-size: clamp(1.92rem, 8.25vw, 2.42rem) !important;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .hero-copy .eyebrow {
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 0.13em;
  }

  .hero-copy p,
  .package-hero p,
  .reviews-hero p,
  .about-hero p,
  .quote-intro p {
    width: 100%;
    max-width: 100% !important;
    overflow-wrap: break-word;
  }
}

/* Last-pass mobile polish: Scottsdale. */
@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 92px);
  }

  .brand span {
    font-size: clamp(1.06rem, 5vw, 1.42rem);
    line-height: 1;
  }

  .brand small {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    display: grid !important;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(196, 97, 62, 0.42);
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 12px 32px rgba(16, 39, 37, 0.18);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    top: 74px;
    left: 16px;
    right: auto;
    z-index: 80;
    width: calc(100vw - 32px);
    max-width: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(196, 97, 62, 0.22);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 24px 64px rgba(16, 39, 37, 0.22);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 0;
  }

  .mobile-menu a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    border-radius: 13px;
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: rgba(196, 97, 62, 0.1);
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding-top: 82px !important;
    padding-bottom: 30px !important;
    gap: 16px !important;
  }

  .hero-media {
    min-height: 0 !important;
    height: 230px !important;
  }

  .hero-media img {
    height: 100% !important;
    object-fit: cover;
  }

  .hero-ticket {
    position: static !important;
    margin-top: 12px !important;
    padding: 14px !important;
  }

  .package-hero,
  .reviews-hero,
  .about-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 82px !important;
    padding-bottom: 28px !important;
  }

  .package-hero-grid,
  .reviews-hero-grid,
  .about-hero-grid,
  .hero-copy,
  .quote-section {
    width: min(calc(100vw - 32px), 560px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .package-hero-grid,
  .reviews-hero-grid,
  .about-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .package-hero-card {
    padding: 14px !important;
  }

  .package-hero-card img,
  .review-meter--photo img,
  .about-hero img {
    display: none !important;
  }

  .review-meter,
  .review-meter--photo {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .review-meter b {
    font-size: clamp(2.5rem, 12vw, 3.2rem) !important;
  }

  .hero-copy h1,
  .package-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 12.5em !important;
    font-size: clamp(2rem, 8.8vw, 2.58rem) !important;
    line-height: 1.08;
  }

  .hero-copy p,
  .package-hero p,
  .reviews-hero p,
  .about-hero p {
    max-width: 34ch !important;
    font-size: 0.98rem !important;
    line-height: 1.55;
  }

  section,
  .section,
  .quote-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
}

/* Mobile UX repair: keep package lookbook scannable instead of a long vertical stack. */
@media (max-width: 620px) {
  .bar-lookbook {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .lookbook-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: min(calc(100vw - 32px), 560px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-right: auto;
    margin-left: auto;
  }

  .lookbook-copy {
    grid-column: 1 / -1 !important;
    padding: 18px !important;
    border-radius: 18px;
  }

  .lookbook-copy h2 {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.08;
  }

  .look-card {
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .look-card img {
    display: block !important;
    width: 100% !important;
    height: 128px !important;
    border-radius: 0 !important;
    object-fit: cover;
  }

  .look-card figcaption {
    min-height: 54px;
    padding: 10px !important;
    font-size: 0.84rem;
    line-height: 1.15;
  }

  .look-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Final visual rhythm pass: sticky header already occupies vertical space on mobile. */
@media (max-width: 620px) {
  .home-hero {
    padding-top: 34px !important;
  }

  .package-hero,
  .reviews-hero,
  .about-hero {
    padding-top: 42px !important;
  }
}
