/*
Theme Name: Naples Bartending
Theme URI: https://naplesbartending.com/
Description: Custom WordPress theme for Naples Bartending.
Version: 1.0.0
Author: Robproject
*/

:root {
  --paper: #f4f4f2;
  --porcelain: #ffffff;
  --ink: #101010;
  --plum: #090909;
  --plum-2: #1b1b1b;
  --guava: #c83228;
  --guava-dark: #9e221b;
  --olive: #3a3a3a;
  --citrus: #c83228;
  --line: #dedede;
  --muted: #696969;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

/* Mobile viewport pass: no clipped hero copy or oversized labels. */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-hero {
    min-height: auto;
    padding: 96px 0 34px;
  }

  .hero-copy,
  .quote-copy,
  .quote-form,
  .brief-card,
  .review-slider {
    width: min(calc(100vw - 32px), 520px);
    max-width: calc(100vw - 32px);
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    min-width: 0;
  }

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

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

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

/* Final mobile hardening: readable Naples hero lines inside the viewport. */
@media (max-width: 620px) {
  .hero-copy,
  .page-hero__content,
  .reviews-hero__content,
  .about-hero__content {
    width: min(calc(100vw - 32px), 520px) !important;
    max-width: calc(100vw - 32px) !important;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy h1,
  .page-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 10.5ch !important;
    font-size: clamp(1.88rem, 8vw, 2.34rem) !important;
  }

  .hero-copy p,
  .page-hero p,
  .reviews-hero p,
  .about-hero 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 deep sections and remove mobile offsets. */
@media (max-width: 900px) {
  .pricing-arc,
  .event-portfolio,
  .service-area,
  .quote-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .pricing-grid,
  .event-portfolio-grid,
  .area-layout {
    gap: 18px !important;
  }

  .price-card,
  .event-portfolio article,
  .area-card,
  .quote-form {
    min-height: auto !important;
    padding: 22px !important;
  }

  .area-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .event-portfolio img,
  .area-layout img,
  .pricing-arc img {
    height: 260px !important;
    min-height: 0 !important;
    object-fit: cover;
  }
}

@media (max-width: 620px) {
  .pricing-arc,
  .event-portfolio,
  .service-area,
  .quote-section {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .price-card,
  .event-portfolio article,
  .area-card,
  .quote-form {
    padding: 18px !important;
  }

  .event-portfolio img,
  .area-layout img,
  .pricing-arc img {
    height: 220px !important;
  }
}

/* Final full-page compact pass for Naples package pricing. */
@media (max-width: 900px) {
  .price-row {
    gap: 12px !important;
  }

  .price-tile,
  .price-tile:nth-child(n) {
    min-height: auto !important;
    margin-top: 0 !important;
    padding: 22px !important;
  }

  .price-tile strong {
    margin: 14px 0 10px !important;
    font-size: clamp(1.8rem, 5vw, 2.35rem) !important;
  }

  .price-tile ul {
    gap: 7px !important;
    margin: 12px 0 16px !important;
  }

  .price-tile p,
  .price-tile li {
    font-size: 0.94rem !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 620px) {
  .price-row {
    gap: 10px !important;
  }

  .price-tile,
  .price-tile:nth-child(n) {
    padding: 16px !important;
  }

  .price-tile strong {
    font-size: 1.7rem !important;
  }

  .price-tile .button {
    min-height: 44px;
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

h1,
h2,
h3 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
}

p { margin: 0; }

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

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

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

section {
  padding: 92px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--guava);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.button--guava,
.header-cta {
  background: var(--guava);
  color: #fff;
}

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

.button--plum {
  background: var(--plum);
  color: #fff;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px max(22px, calc((100vw - 1180px) / 2 + 22px));
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

body:has(.home-hero) .site-header {
  color: var(--ink);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 14px 42px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}

body:has(.about-hero) .site-header {
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 42px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}

body:has(.home-hero) .site-header.is-scrolled {
  color: var(--ink);
}

body:has(.about-hero) .site-header.is-scrolled {
  color: var(--ink);
}

.brand {
  display: inline-grid;
  width: fit-content;
  line-height: 0.9;
}

.brand span {
  font-family: "Marcellus", Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 800;
}

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

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 78px 18px auto;
  z-index: 45;
  display: none;
  padding: 22px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

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

.home-hero {
  position: relative;
  min-height: 880px;
  display: block;
  padding: 0;
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 62%;
  background: url("realphoto/wedding-bartender-champagne-service.jpg") center/cover;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(650px, calc(100% - 80px));
  margin-left: max(44px, calc((100vw - 1180px) / 2));
  top: 138px;
  padding: 46px 48px 52px;
  border-left: 8px solid var(--guava);
  background: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.7rem, 6vw, 6.35rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-ticket {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 96px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  border: 1px solid rgba(255,255,255,0.34);
  border-top: 6px solid var(--guava);
  color: #fff;
  background: rgba(9,9,9,0.82);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(14px);
}

.hero-ticket span {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ticket span:last-child { border-right: 0; }

.arrival-strip {
  position: relative;
  z-index: 8;
  margin-top: -46px;
  padding: 0 0 76px;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 0.16fr minmax(0, 0.46fr) minmax(0, 0.38fr);
  gap: 34px;
  align-items: start;
  padding: 38px 42px;
  border-top: 7px solid var(--guava);
  background: var(--porcelain);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}

.arrival-grid h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.arrival-grid p:last-child {
  color: var(--muted);
}

.estate-service {
  background: #fff;
}

.estate-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 54px;
  align-items: center;
}

.estate-image {
  height: 620px;
  background: url("realphoto/9aae0c7375d64233be44247b544433d2_ivgEXaurc.jpeg") center/cover;
  border-radius: 180px 180px 18px 18px;
}

.estate-copy {
  position: relative;
  padding: 58px;
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow);
}

.estate-copy h2,
.concierge-copy h2,
.ledger-title h2,
.proof-copy h2,
.invite-shell h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.estate-copy p:not(.eyebrow),
.concierge-copy p,
.proof-copy p {
  margin-top: 22px;
  color: rgba(255,255,255,0.76);
}

.estate-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.estate-copy li {
  padding: 15px 18px;
  border-left: 4px solid var(--citrus);
  background: rgba(255,255,255,0.08);
}

.service-mosaic {
  position: relative;
  background: #eeeeec;
  overflow: hidden;
}

.service-mosaic::before {
  content: "NAPLES BAR";
  position: absolute;
  right: -0.12em;
  top: 30px;
  color: rgba(17,20,18,0.06);
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.mosaic-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.mosaic-heading h2 {
  max-width: 780px;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.mosaic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 18px;
}

.mosaic-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--porcelain);
  border: 1px solid var(--line);
}

.mosaic-grid article:nth-child(2) {
  margin-top: 58px;
  background: var(--plum);
  color: #fff;
}

.mosaic-grid article:nth-child(3) {
  grid-row: span 2;
  background: var(--plum);
  color: #fff;
}

.mosaic-grid article:nth-child(4) {
  grid-column: span 2;
  background: #ffffff;
}

.mosaic-grid span {
  color: var(--guava);
  font-weight: 800;
}

.mosaic-grid h3 {
  margin: 18px 0 12px;
  font-size: 1.8rem;
}

.alcohol-concierge {
  color: #fff;
  background: var(--plum);
}

.concierge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 40px;
  align-items: end;
}

.concierge-note {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 34px;
  color: var(--ink);
  border-top: 8px solid var(--guava);
  background: #fff;
  box-shadow: var(--shadow);
}

.concierge-note strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 2.3rem;
}

.concierge-note p {
  margin-top: 14px;
  color: var(--muted);
}

.concierge-note ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.concierge-note li {
  padding: 12px 14px;
  border-left: 4px solid var(--guava);
  background: #f4f4f2;
  font-weight: 700;
}

.event-ledger {
  background: var(--porcelain);
}

.ledger-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 54px;
}

.ledger-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.ledger-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.ledger-list article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-list b {
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.6rem;
}

.ledger-list span {
  color: var(--muted);
}

.proof-ribbon {
  padding: 0;
  background: var(--plum);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  min-height: 360px;
}

.proof-card {
  display: grid;
  align-content: center;
  padding: 42px;
  color: #fff;
}

.proof-card span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.proof-card strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 5.4rem;
  line-height: 1;
}

.proof-copy {
  display: grid;
  align-content: center;
  padding: 58px;
  background: var(--plum);
  color: #fff;
}

.proof-copy a {
  width: fit-content;
  margin-top: 28px;
  border-bottom: 2px solid var(--citrus);
  font-weight: 800;
}

.client-band {
  padding: 42px 0;
  background: #e8e8e8;
}

.client-grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.client-grid > * {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

.client-grid > *:last-child { border-right: 0; }

.client-grid .eyebrow {
  margin: 0;
}

.package-invite {
  background: #fff;
}

.invite-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
}

.invite-shell h2 {
  max-width: 720px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 92px max(22px, calc((100vw - 1180px) / 2 + 22px));
}

.quote-home {
  color: #fff;
  background: var(--plum);
}

.quote-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5.1rem);
}

.quote-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255,255,255,0.76);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 34px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

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

.site-footer {
  color: rgba(255,255,255,0.72);
  background: #090b0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 54px;
  padding: 58px 0;
}

.brand--footer {
  color: #fff;
  margin-bottom: 18px;
}

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

.copyright {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
}

.page-hero,
.reviews-hero,
.about-hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--plum);
}

.page-hero--packages {
  background: var(--plum);
}

.page-hero-grid {
  padding-top: 96px;
}

.page-hero h1,
.reviews-hero h1,
.about-hero h1 {
  max-width: 820px;
  font-size: clamp(3.7rem, 6vw, 6.6rem);
}

.page-hero p:not(.eyebrow),
.reviews-hero p:not(.eyebrow),
.about-hero p:not(.eyebrow) {
  max-width: 630px;
  margin-top: 20px;
  color: rgba(255,255,255,0.74);
}

.pricing-arc {
  background: var(--paper);
}

.pricing-intro {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.pricing-intro h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.3vw, 4.8rem);
}

.price-row {
  display: grid;
  grid-template-columns: 0.88fr 1.16fr 0.96fr;
  gap: 18px;
  align-items: stretch;
}

.price-tile {
  display: grid;
  min-height: 590px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.price-tile:nth-child(1) {
  margin-top: 64px;
}

.price-tile:nth-child(3) {
  margin-top: 110px;
}

.price-tile--feature {
  color: #fff;
  background: var(--plum);
}

.price-tile span {
  color: var(--guava);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-tile strong {
  margin: 26px 0 16px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
}

.price-tile p,
.price-tile li {
  color: var(--muted);
}

.price-tile--feature p,
.price-tile--feature li {
  color: rgba(255,255,255,0.78);
}

.price-tile ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding-left: 18px;
}

.price-tile .button {
  align-self: end;
}

.estimate-map {
  background: #ffffff;
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
}

.estimate-card {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 38px;
  color: #fff;
  background: var(--plum);
}

.estimate-card h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
}

.estimate-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.estimate-points article {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--porcelain);
  border: 1px solid var(--line);
}

.bar-gallery {
  background: #fff;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 44px;
  align-items: center;
}

.gallery-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.gallery-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

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

.bar-stack figure {
  margin: 0;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.bar-stack figure:nth-child(2) {
  margin-top: 72px;
}

.bar-stack figure:nth-child(3) {
  margin-top: 28px;
}

.bar-stack img {
  height: 360px;
}

.bar-stack figcaption {
  padding: 16px;
  font-weight: 800;
}

.addon-suite {
  color: #fff;
  background: var(--plum);
}

.addon-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.addon-layout article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.addon-layout h3 {
  font-size: 2.3rem;
}

.package-faq {
  background: var(--porcelain);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 44px;
  align-items: start;
}

.faq-title h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

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

.faq-list article {
  padding: 28px;
  border-left: 8px solid var(--olive);
  background: #eeeeec;
}

.review-marquee {
  padding: 42px 0;
  color: #fff;
  background: var(--plum);
}

.marquee-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.marquee-card span {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
}

.marquee-card a {
  border-bottom: 2px solid var(--citrus);
  font-weight: 800;
}

.quote-packages {
  background: #e8e8e8;
}

.quote-packages .quote-copy p:not(.eyebrow),
.quote-about .quote-copy p:not(.eyebrow) {
  color: var(--muted);
}

.reviews-hero {
  background: var(--plum);
}

.reviews-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(320px, 0.52fr);
  gap: 54px;
  align-items: center;
  padding-top: 120px;
}

.review-slider {
  position: relative;
  min-height: 470px;
  padding: 40px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
}

.slide {
  display: none;
  text-align: center;
}

.slide.is-active {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.slide img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.slide span {
  color: var(--guava);
  font-weight: 800;
}

.slide blockquote {
  max-width: 560px;
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: 2rem;
  line-height: 1.24;
}

.slider-controls {
  position: absolute;
  inset: auto 40px 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-controls button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: #fff;
  background: transparent;
}

.mention-grid {
  background: #eeeeec;
}

.mention-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.mention-layout h2 {
  grid-row: span 2;
  padding: 34px;
  background: var(--porcelain);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.mention-layout article {
  padding: 26px;
  background: var(--porcelain);
  border: 1px solid var(--line);
}

.trust-stamp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: #fff;
}

.stamp-left,
.stamp-right {
  min-height: 320px;
  padding: 54px max(28px, calc((100vw - 1180px) / 2 + 28px));
  display: grid;
  align-content: center;
}

.stamp-left {
  background: var(--guava);
}

.stamp-right {
  background: var(--plum);
}

.stamp-left strong,
.stamp-right strong {
  margin: 12px 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 400;
}

.event-portfolio {
  background: var(--paper);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 42px;
}

.portfolio-copy h2,
.photo-collage h2 {
  font-size: clamp(2.4rem, 4.3vw, 4.7rem);
}

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

.portfolio-cards article {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 22px;
  color: #fff;
  background: var(--plum);
  overflow: hidden;
}

.portfolio-cards img {
  height: 250px;
  margin: -22px -22px 22px;
  width: calc(100% + 44px);
}

.portfolio-cards article:nth-child(2) {
  margin-top: 62px;
}

.photo-collage {
  background: var(--porcelain);
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 210px;
  gap: 16px;
  margin-top: 34px;
}

.collage-grid img:nth-child(1) { grid-row: span 2; }
.collage-grid img:nth-child(3) { grid-column: span 2; }

.about-brief {
  padding: 62px 0;
  background: #ffffff;
}

.brief-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  max-width: 920px;
  padding: 22px 42px 22px 22px;
  background: var(--porcelain);
  border-left: 10px solid var(--guava);
  font-size: 1.2rem;
}

.brief-card img {
  height: 260px;
  object-fit: cover;
}

.brief-card p {
  margin: 0;
}

.quote-reviews {
  color: #fff;
  background: var(--plum);
}

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

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 44px;
  align-items: center;
  padding-top: 120px;
}

.about-hero p:not(.eyebrow) {
  color: var(--muted);
}

.about-hero img {
  height: 540px;
  border-radius: 240px 240px 0 0;
}

.origin-panel {
  background: var(--plum);
}

.origin-layout {
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  gap: 40px;
}

.origin-layout > .eyebrow {
  color: #fff;
}

.origin-text {
  padding: 48px;
  background: var(--porcelain);
}

.origin-text h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.origin-text p {
  margin-top: 18px;
  color: var(--muted);
}

.capability-orbit {
  color: #fff;
  background: var(--plum);
}

.orbit-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.orbit-center {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 42px;
  background: var(--plum-2);
}

.orbit-center h2 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.orbit-layout article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}

.coverage-scene {
  min-height: 580px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--plum);
}

.coverage-copy {
  max-width: 850px;
}

.coverage-copy h2 {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.coverage-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 26px;
}

.coverage-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-copy span {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.12);
}

.standards-lane {
  background: var(--porcelain);
}

.standards-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 44px;
}

.standards-layout h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.standards-layout p {
  margin-top: 16px;
  color: var(--muted);
}

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

.standards-list article {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-area {
  background: #e8e8e8;
}

.area-layout {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  align-items: center;
  gap: 0;
}

.area-layout img {
  height: 460px;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.area-card {
  margin-left: -54px;
  padding: 42px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.area-card h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.area-card p {
  margin: 16px 0 24px;
  color: var(--muted);
}

.about-questions {
  background: #eeeeec;
}

.questions-layout {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 44px;
  align-items: start;
}

.questions-layout h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}

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

.question-cards article {
  padding: 26px;
  background: var(--porcelain);
  border-top: 6px solid var(--guava);
}

.quote-about {
  background: #e8e8e8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (min-width: 981px) and (max-width: 1600px) {
  .home-hero { min-height: 760px; }
  .hero-copy h1 { font-size: clamp(3.7rem, 5.8vw, 6rem); }
  section { padding-top: 74px; padding-bottom: 74px; }
  .estate-image { height: 520px; }
  .estate-copy { padding: 46px; }
}

@media (max-width: 980px) {
  *,
  *::before,
  *::after {
    min-width: 0;
  }

  section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .container,
  .hero-copy,
  .page-hero-grid,
  .reviews-hero-grid,
  .about-hero-grid,
  .quote-section {
    width: min(100% - 36px, 1180px);
    max-width: calc(100% - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brief-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .brief-card img {
    height: 280px;
  }

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

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    place-content: center;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .home-hero {
    min-height: auto;
    display: block;
    padding: 118px 0 42px;
    background: var(--paper);
  }

  .home-hero::before,
  .home-hero::after {
    display: none;
  }

  .hero-media {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% - 28px);
    height: 265px;
    margin: 0 auto;
    clip-path: none;
    box-shadow: var(--shadow);
  }

  .hero-copy {
    top: auto;
    width: calc(100% - 28px);
    margin: -38px auto 0;
    padding-top: 28px;
    color: var(--ink);
  }

  .hero-copy h1,
  .page-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 9vw, 4rem);
    overflow-wrap: anywhere;
  }

  .hero-ticket {
    position: static;
    width: min(100% - 36px, 1180px);
    margin: 36px auto 0;
    grid-template-columns: 1fr;
  }

  .hero-ticket span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .hero-ticket span:last-child {
    border-bottom: 0;
  }

  .arrival-grid,
  .estate-grid,
  .mosaic-heading,
  .concierge-grid,
  .ledger-layout,
  .proof-layout,
  .pricing-intro,
  .estimate-grid,
  .gallery-layout,
  .faq-layout,
  .reviews-hero-grid,
  .mention-layout,
  .portfolio-layout,
  .about-hero-grid,
  .origin-layout,
  .standards-layout,
  .area-layout,
  .questions-layout,
  .quote-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mosaic-grid,
  .price-row,
  .estimate-points,
  .bar-stack,
  .addon-layout,
  .portfolio-cards,
  .collage-grid,
  .orbit-layout,
  .question-cards,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .quote-section {
    padding-left: 0;
    padding-right: 0;
  }

  .estate-service,
  .proof-ribbon,
  .addon-suite,
  .origin-panel,
  .service-area {
    background: var(--paper);
  }

  .estate-image,
  .about-hero img,
  .area-layout img {
    height: 320px;
    border-radius: 0;
    clip-path: none;
  }

  .estate-copy,
  .origin-text,
  .area-card,
  .invite-shell,
  .quote-form,
  .review-slider {
    padding: 28px;
  }

  .mosaic-grid article:nth-child(n),
  .price-tile:nth-child(n),
  .bar-stack figure:nth-child(n),
  .portfolio-cards article:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .ledger-title {
    position: static;
  }

  .ledger-list article,
  .standards-list article {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    width: 100%;
  }

  .proof-card,
  .proof-copy,
  .stamp-left,
  .stamp-right {
    min-height: auto;
    padding: 34px;
  }

  .client-grid > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-grid > *:last-child {
    border-bottom: 0;
  }

  .invite-shell,
  .marquee-card {
    display: grid;
    justify-items: start;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-stamp {
    grid-template-columns: 1fr;
  }

  .orbit-center {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .container,
  .hero-copy,
  .page-hero-grid,
  .reviews-hero-grid,
  .about-hero-grid,
  .quote-section {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .brand span {
    font-size: 1.55rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 320px;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  h2,
  .estate-copy h2,
  .concierge-copy h2,
  .ledger-title h2,
  .proof-copy h2,
  .invite-shell h2,
  .pricing-intro h2,
  .estimate-card h2,
  .gallery-copy h2,
  .faq-title h2,
  .portfolio-copy h2,
  .photo-collage h2,
  .origin-text h2,
  .coverage-copy h2,
  .standards-layout h2,
  .questions-layout h2,
  .quote-copy h2 {
    max-width: 320px;
    font-size: clamp(1.95rem, 8.5vw, 2.75rem);
    overflow-wrap: anywhere;
  }

  p,
  li,
  blockquote {
    max-width: 320px;
    overflow-wrap: break-word;
  }

  .hero-copy p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .reviews-hero p:not(.eyebrow),
  .about-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .quote-form,
  .estate-copy,
  .origin-text,
  .area-card,
  .invite-shell,
  .review-slider,
  .brief-card,
  .price-tile,
  .estimate-card,
  .mosaic-grid article,
  .addon-layout article,
  .mention-layout h2,
  .mention-layout article,
  .question-cards article {
    padding: 24px;
  }

  .bar-stack img,
  .portfolio-cards img,
  .collage-grid img {
    height: 260px;
  }

  .slide blockquote {
    max-width: 280px;
    font-size: 1.35rem;
  }
}

@media (max-width: 420px) {
  .slide blockquote {
    max-width: 260px;
    font-size: 1.18rem;
  }

  .review-slider {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Final responsive repair: prevent mobile hero cards from clipping text. */
@media (max-width: 620px) {
  .home-hero {
    padding-top: 104px;
    overflow: hidden;
  }

  .hero-media,
  .hero-copy,
  .quote-section,
  .page-hero-grid,
  .reviews-hero-grid,
  .about-hero-grid {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    box-sizing: border-box;
  }

  .hero-copy,
  .quote-copy,
  .quote-form,
  .review-slider,
  .brief-card {
    padding: 22px;
    overflow: hidden;
  }

  .hero-copy h1,
  .page-hero h1,
  .reviews-hero h1,
  .about-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.15rem, 9.6vw, 2.85rem) !important;
    line-height: 1.08;
    overflow-wrap: normal;
  }

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

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

/* Final mobile override: no clipped Naples hero copy. */
@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-hero {
    min-height: auto;
    padding: 96px 0 34px;
  }

  .hero-copy,
  .quote-copy,
  .quote-form,
  .brief-card,
  .review-slider {
    width: min(calc(100vw - 32px), 520px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
  }

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

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

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

/* Last-pass mobile polish: Naples. */
@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.1rem, 5.4vw, 1.5rem);
    line-height: 1;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  .menu-toggle {
    display: grid !important;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(200, 50, 40, 0.42);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 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(200, 50, 40, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  }

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

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

  .mobile-menu a:hover {
    background: rgba(200, 50, 40, 0.1);
  }
}

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

  .hero-media {
    height: 220px !important;
    min-height: 0 !important;
    margin-top: 14px !important;
    overflow: hidden;
  }

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

  .hero-ticket {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin-top: 12px !important;
    box-shadow: none !important;
  }

  .hero-ticket span {
    padding: 12px 14px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.78rem !important;
  }

  .page-hero,
  .reviews-hero,
  .about-hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 82px !important;
    padding-bottom: 28px !important;
    align-items: flex-start;
  }

  .page-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;
  }

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

  .review-slider {
    display: none !important;
  }

  .review-slider .slide.is-active {
    gap: 10px !important;
  }

  .review-slider img {
    width: 68px !important;
    height: 68px !important;
  }

  .review-slider blockquote {
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
  }

  .about-hero img {
    display: none !important;
  }

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

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

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