/*
Theme Name: Hilton Head Bartending
Theme URI: https://hiltonheadbartending.com/
Description: Custom WordPress theme for Hilton Head Bartending.
Version: 1.0.0
Author: Robproject
*/

:root {
  --sand: #eef8f5;
  --shell: #ffffff;
  --ink: #062832;
  --deep: #06181f;
  --palm: #08756f;
  --sea: #99ddd5;
  --brass: #ff7f5f;
  --brass-dark: #c95d46;
  --line: #cfe5df;
  --muted: #647a78;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 39, 45, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

p { margin: 0; }

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

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

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

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

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

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

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

.button--solid:hover { background: var(--brass-dark); }

.button--ghost {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

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

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

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

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--ink);
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(16,39,45,0.08);
}

.brand {
  justify-self: start;
  display: grid;
  line-height: 0.9;
}

.brand__script {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 700;
}

.brand__small {
  margin-top: 3px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.95rem;
  font-weight: 700;
}

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

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 860px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(6,22,28,0.82) 0 42%, rgba(6,22,28,0.28) 42% 100%),
    url("realphoto/wedding-bartender-champagne-service.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, var(--sand));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 160px 0 150px;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4rem, 7vw, 7.6rem);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__facts {
  position: absolute;
  right: 0;
  bottom: 138px;
  display: grid;
  grid-template-columns: repeat(3, 150px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.hero__facts span {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

section {
  padding: 86px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
}

.dock-intro {
  position: relative;
  padding-top: 0;
}

.dock-card {
  width: min(1180px, calc(100% - 44px));
  margin: -72px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 34px;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.dock-copy {
  padding: 52px;
}

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

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

.dock-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dock-copy li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.dock-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.dock-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.service-current {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.current-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  align-items: end;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--sand);
}

.service-rail article {
  min-height: 245px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.service-rail article:last-child { border-right: 0; }

.service-rail span {
  color: var(--brass-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-rail h3 {
  margin-top: 26px;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.service-rail p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.split-tide {
  background:
    linear-gradient(135deg, rgba(10,27,34,0.96), rgba(10,27,34,0.84)),
    url("realphoto/image%20%28140%29.png") center/cover;
  color: #fff;
}

.split-tide__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 54px;
  align-items: center;
}

.split-tide img {
  width: 100%;
  height: 560px;
  border-radius: 36px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.split-tide h2 { font-size: clamp(2.8rem, 4.7vw, 5.8rem); }

.split-tide p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255,255,255,0.76);
}

.split-tide ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.split-tide li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
}

.package-preview,
.client-logos,
.gallery-band,
.quote-section {
  border-top: 1px solid var(--line);
}

.process-lagoon {
  background: var(--sand);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--shell);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
}

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

.events-board {
  background: #fff;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 38px;
  align-items: start;
}

.events-layout .section-heading {
  position: sticky;
  top: 110px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--sand);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
}

.event-card:nth-child(1),
.event-card:nth-child(3) { grid-row: span 2; grid-column: span 2; }
.event-card:nth-child(2),
.event-card:nth-child(4) { grid-column: span 2; }

.event-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.65s ease;
}

.event-card:hover img { transform: scale(1.05); }

.event-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(10,27,34,0.86));
}

.trust-panel {
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(123,183,174,0.22), transparent 32vw),
    var(--deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  gap: 34px;
  align-items: stretch;
}

.trust-copy,
.review-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  background: rgba(255,255,255,0.07);
}

.trust-copy {
  padding: 48px;
}

.trust-copy h2 { font-size: clamp(2.8rem, 4vw, 5rem); }

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

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-stats span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card {
  display: grid;
  align-content: center;
  padding: 44px;
}

.stars {
  color: var(--brass);
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 20px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.28;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.logo-row span {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  filter: grayscale(1);
}

.logo-row span:last-child { border-right: 0; }

.package-preview {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.package-preview__inner {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 38px;
  align-items: center;
}

.package-preview__image {
  min-height: 430px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(10,27,34,0.08), rgba(10,27,34,0.68)),
    url("realphoto/image%20%28142%29.png") center/cover;
}

.package-preview h2 { font-size: clamp(2.8rem, 4.5vw, 5rem); }

.package-preview p {
  max-width: 620px;
  margin: 18px 0 28px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,27,34,0.88), rgba(10,27,34,0.28)),
    linear-gradient(180deg, rgba(10,27,34,0.2), rgba(10,27,34,0.72));
}

.page-hero__content {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 110px;
}

.page-hero h1 {
  max-width: 800px;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
}

.package-board {
  background: var(--sand);
}

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

.price-card {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--shell);
  box-shadow: 0 18px 56px rgba(16,39,45,0.08);
}

.price-card.featured {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(31,91,82,0.94), rgba(10,27,34,0.92)),
    url("realphoto/IMG_7725.JPG") center/cover;
}

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

.price-card h2 {
  margin-top: 6px;
  font-size: 3.2rem;
}

.price-card ul {
  margin: 28px 0;
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

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

.details-ledger,
.faq-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ledger-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--sand);
}

.ledger-grid article,
.faq-grid article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.ledger-grid article:last-child,
.faq-grid article:last-child { border-right: 0; }

.bar-styles {
  background: var(--sand);
}

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

.bar-style {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 62px rgba(16,39,45,0.1);
}

.bar-style::after {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 46px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(10,27,34,0.58);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.bar-style img {
  width: 100%;
  height: 330px;
}

.bar-style figcaption {
  padding: 20px 22px;
  font-weight: 900;
}

.addon-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,27,34,0.96), rgba(31,91,82,0.82)),
    url("realphoto/drinkmenu.jpg") center/cover;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.addon-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
}

.review-stage {
  background: var(--deep);
  color: #fff;
}

.slider {
  position: relative;
}

.review-slide {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  text-align: center;
}

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

.review-slide img {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.review-slide blockquote {
  margin: 18px auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 1.24;
}

.slider-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.slider-actions button,
.slider-actions a {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.proof-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 42px;
  align-items: end;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.proof-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--sand);
}

.badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,27,34,0.96), rgba(10,27,34,0.84)),
    url("realphoto/e7ctjYBTu.jpeg") center/cover;
}

.badge-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
}

.badge-card strong {
  display: block;
  margin: 10px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.event-map {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}

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

.event-map-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent, rgba(10,27,34,0.88)),
    url("realphoto/Ofod0ukIm.jpg") center/cover;
}

.event-map-grid article:nth-child(2) {
  background-image: linear-gradient(180deg, transparent, rgba(10,27,34,0.88)), url("realphoto/9aae0c7375d64233be44247b544433d2_ivgEXaurc.jpeg");
}

.event-map-grid article:nth-child(3) {
  background-image: linear-gradient(180deg, transparent, rgba(10,27,34,0.88)), url("realphoto/image%20%28143%29.png");
}

.event-map-grid article:nth-child(4) {
  background-image: linear-gradient(180deg, transparent, rgba(10,27,34,0.88)), url("realphoto/IMG_7717.PNG");
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

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

.story-section,
.capabilities,
.standards,
.local-section,
.about-faq {
  border-top: 1px solid var(--line);
}

.story-section {
  background: #fff;
}

.story-grid,
.capability-heading,
.standards-heading,
.local-grid,
.about-faq-heading,
.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: 44px;
  align-items: center;
}

.story-card,
.capability-card,
.standard-card,
.about-faq article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--shell);
}

.capabilities {
  background: var(--sand);
}

.capability-grid,
.standards-grid,
.about-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.insurance-statement {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,27,34,0.96), rgba(31,91,82,0.82)),
    url("realphoto/1000008673.jpeg") center/cover;
}

.insurance-statement h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.standards {
  background: #fff;
}

.standard-card strong {
  display: block;
  margin-bottom: 8px;
}

.local-section {
  background: var(--sand);
}

.local-grid img {
  width: 100%;
  height: 470px;
  border-radius: 32px;
}

.local-copy {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
}

.about-faq {
  background: #fff;
}

.quote-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,27,34,0.96), rgba(10,27,34,0.84)),
    url("realphoto/drinkmenu.jpg") center/cover;
}

.quote-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.4rem);
}

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

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.quote-form textarea { resize: vertical; min-height: 130px; }

.quote-form small {
  min-height: 1em;
  color: #ffd0c8;
  text-transform: none;
  letter-spacing: 0;
}

.form-status {
  min-height: 1.4em;
  color: rgba(255,255,255,0.82);
}

.site-footer {
  padding: 70px max(24px, calc((100vw - 1180px) / 2 + 24px)) 34px;
  color: rgba(255,255,255,0.72);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 42px;
}

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

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

.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@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) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 5.4vw, 5.9rem);
  }

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

  .dock-card img {
    min-height: 440px;
  }

  .service-rail article,
  .process-list li,
  .ledger-grid article,
  .faq-grid article,
  .capability-card,
  .standard-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    place-content: center;
    background: transparent;
    color: currentColor;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 18px auto;
    z-index: 45;
    display: none;
    padding: 24px;
    border-radius: 24px;
    background: var(--shell);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 780px;
  }

  .hero__facts {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

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

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

  .dock-card,
  .current-grid,
  .split-tide__grid,
  .events-layout,
  .trust-grid,
  .package-preview__inner,
  .proof-grid,
  .story-grid,
  .capability-heading,
  .standards-heading,
  .local-grid,
  .about-faq-heading,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .dock-copy,
  .trust-copy,
  .review-card,
  .local-copy {
    padding: 32px;
  }

  .dock-card img,
  .split-tide img,
  .local-grid img {
    min-height: 0;
    height: 360px;
  }

  .service-rail,
  .process-list,
  .event-cards,
  .package-board__grid,
  .ledger-grid,
  .bar-style-grid,
  .proof-list,
  .event-map-grid,
  .gallery-grid,
  .capability-grid,
  .standards-grid,
  .about-faq-grid {
    grid-template-columns: 1fr;
  }

  .service-rail article,
  .ledger-grid article,
  .faq-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-rail article:last-child,
  .ledger-grid article:last-child,
  .faq-grid article:last-child {
    border-bottom: 0;
  }

  .event-card,
  .event-card:nth-child(n),
  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

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

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

@media (max-width: 560px) {
  .container,
  .hero__inner,
  .page-hero__content {
    width: calc(100% - 36px);
  }

  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand__script { font-size: 1.6rem; }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.1rem);
  }

  .hero__inner {
    padding-bottom: 98px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .dock-card {
    width: calc(100% - 36px);
  }

  .dock-copy,
  .trust-copy,
  .review-card,
  .quote-form,
  .local-copy {
    padding: 26px;
  }
}

/* Distinct Hilton Head identity pass: each section gets its own composition */
body {
  background:
    linear-gradient(180deg, #f7fffc 0%, var(--sand) 100%);
}

.eyebrow {
  color: var(--brass-dark);
}

.hero {
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(6,24,31,0.92) 0 36%, rgba(6,24,31,0.58) 36% 58%, rgba(6,24,31,0.1) 58% 100%),
    radial-gradient(circle at 82% 18%, rgba(153,221,213,0.34), transparent 30vw),
    url("realphoto/1000008674.jpeg") center/cover;
}

.hero::after {
  height: 110px;
  background:
    linear-gradient(180deg, transparent, #f7fffc);
}

.hero__facts {
  border-radius: 0;
  border-color: rgba(153,221,213,0.34);
  background: rgba(6,40,50,0.46);
}

.hero__facts span {
  border-color: rgba(153,221,213,0.24);
}

.dock-intro {
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, #f7fffc 0 46%, #dff5ef 46% 100%);
}

.dock-card {
  grid-template-columns: 0.52fr 0.48fr;
  border-radius: 0 46px 46px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dock-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-right: -56px;
  border-radius: 34px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 30px 90px rgba(6,24,31,0.24);
}

.dock-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
}

.dock-card img {
  min-height: 560px;
  border-radius: 0 46px 46px 0;
}

.service-current {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f7fffc);
}

.service-current::before {
  content: "LOWCOUNTRY BAR SERVICE";
  position: absolute;
  right: -0.08em;
  top: 36px;
  color: rgba(8,117,111,0.07);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.8;
  white-space: nowrap;
}

.current-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  align-items: start;
}

.service-rail {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-rail article {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  align-items: center;
  min-height: 0;
  padding: 24px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.service-rail h3 {
  margin: 0;
}

.service-rail p {
  margin: 0;
}

.split-tide {
  background:
    linear-gradient(118deg, #08756f 0 42%, #06181f 42% 100%);
}

.split-tide__grid {
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
}

.split-tide img {
  height: 600px;
  border-radius: 50% 50% 34px 34px;
  border: 10px solid rgba(255,255,255,0.1);
  box-shadow: none;
}

.split-tide ul {
  grid-template-columns: 1fr;
}

.process-lagoon {
  background:
    linear-gradient(90deg, #dff5ef 0 34%, var(--sand) 34% 100%);
}

.process-list {
  grid-template-columns: 0.9fr 1.15fr 0.95fr 1.1fr;
  align-items: start;
}

.process-list li {
  border-radius: 34px 34px 8px 34px;
  background: #fff;
}

.process-list li:nth-child(even) {
  margin-top: 58px;
  border-radius: 8px 34px 34px 34px;
  background: #f7fffc;
}

.events-board {
  background: #06181f;
  color: #fff;
}

.events-layout {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.events-layout .section-heading {
  position: static;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.events-layout .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
}

.event-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 280px;
}

.event-card,
.event-card:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  border-radius: 0;
}

.event-card:nth-child(1) { border-radius: 120px 0 0 0; }
.event-card:nth-child(2) { border-radius: 0 120px 0 0; }
.event-card:nth-child(3) { border-radius: 0 0 0 120px; }
.event-card:nth-child(4) { border-radius: 0 0 120px 0; }

.trust-panel {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,127,95,0.14), transparent 28vw),
    #ffffff;
}

.trust-grid {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
}

.trust-copy,
.review-card {
  border-color: var(--line);
  background: var(--sand);
  color: var(--ink);
}

.trust-copy p:not(.eyebrow) {
  color: var(--muted);
}

.trust-stats span {
  background: #fff;
  color: var(--palm);
}

.review-card {
  border-radius: 90px 26px 26px 26px;
}

.client-logos {
  background: #dff5ef;
}

.logo-row {
  border-radius: 999px;
  border-color: rgba(8,117,111,0.18);
}

.logo-row span {
  color: var(--palm);
}

.package-preview {
  background:
    linear-gradient(90deg, #ffffff 0 62%, #ffede7 62% 100%);
}

.package-preview__inner {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
}

.package-preview__image {
  order: 2;
  min-height: 500px;
  border-radius: 240px 240px 20px 20px;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(6,24,31,0.96), rgba(8,117,111,0.82)),
    url("realphoto/IMG_7714.PNG") center/cover;
}

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

.package-board {
  background: #f7fffc;
}

.package-board__grid {
  grid-template-columns: 0.86fr 1.14fr 0.86fr;
  align-items: stretch;
}

.price-card {
  border-radius: 34px 34px 120px 34px;
  background: #fff;
}

.price-card:nth-child(1) {
  margin-top: 56px;
}

.price-card:nth-child(3) {
  margin-top: 104px;
}

.price-card.featured {
  border-radius: 120px 34px 34px 34px;
  background:
    linear-gradient(160deg, rgba(8,117,111,0.96), rgba(6,24,31,0.92)),
    url("realphoto/image%20%28139%29.png") center/cover;
}

.details-ledger {
  background:
    linear-gradient(180deg, #dff5ef, #ffffff);
}

.ledger-grid {
  border-radius: 0;
  background: transparent;
}

.ledger-grid article {
  background: #fff;
}

.bar-styles {
  background:
    linear-gradient(90deg, #06181f 0 30%, var(--sand) 30% 100%);
}

.bar-styles .section-heading {
  color: #fff;
}

.bar-styles .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.72);
}

.bar-style {
  border-radius: 180px 180px 28px 28px;
}

.bar-style img {
  height: 380px;
}

.addon-band {
  background:
    linear-gradient(90deg, #ff7f5f 0 36%, #06181f 36% 100%);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: block;
  columns: 2 360px;
  column-gap: 18px;
  border: 0;
  background: transparent;
}

.faq-grid article {
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--sand);
}

.review-stage {
  background:
    radial-gradient(circle at 82% 14%, rgba(153,221,213,0.22), transparent 28vw),
    #06181f;
}

.review-slide {
  max-width: 920px;
  border-radius: 0 110px 0 110px;
}

.proof-section {
  background: #dff5ef;
}

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

.proof-list article {
  border-radius: 70px 24px 24px 24px;
  background: #fff;
}

.proof-list article:nth-child(even) {
  border-radius: 24px 70px 24px 24px;
}

.badges {
  background:
    linear-gradient(135deg, rgba(255,127,95,0.92), rgba(6,24,31,0.94)),
    url("realphoto/IMG_7715.PNG") center/cover;
}

.event-map {
  background: #f7fffc;
}

.event-map-grid {
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
}

.event-map-grid article {
  border-radius: 120px 120px 24px 24px;
}

.gallery-band {
  background: #ffffff;
}

.story-section {
  background:
    linear-gradient(90deg, #ffffff 0 42%, #dff5ef 42% 100%);
}

.story-card {
  border-radius: 34px 120px 34px 34px;
}

.capabilities {
  background: #06181f;
  color: #fff;
}

.capabilities .capability-heading > p {
  color: rgba(255,255,255,0.72);
}

.capability-card {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}

.insurance-statement {
  background:
    linear-gradient(90deg, rgba(8,117,111,0.92), rgba(153,221,213,0.2)),
    url("realphoto/image%20%28143%29.png") center/cover;
}

.standards {
  background: #ffffff;
}

.standard-card {
  border-radius: 24px;
}

.standard-card:nth-child(1),
.standard-card:nth-child(4) {
  border-radius: 90px 24px 24px 24px;
}

.local-section {
  background:
    linear-gradient(90deg, var(--sand) 0 52%, #ffffff 52% 100%);
}

.local-grid img {
  border-radius: 36px 36px 180px 36px;
}

.local-copy {
  border-radius: 36px;
}

.about-faq {
  background: #dff5ef;
}

.about-faq-grid {
  align-items: start;
}

.about-faq article {
  border-radius: 28px;
  background: #fff;
}

.about-faq article:nth-child(even) {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .dock-card,
  .current-grid,
  .split-tide__grid,
  .events-layout,
  .trust-grid,
  .package-preview__inner,
  .package-board__grid,
  .event-map-grid {
    grid-template-columns: 1fr;
  }

  .dock-copy {
    margin-right: 0;
  }

  .dock-card,
  .dock-card img,
  .event-card:nth-child(n),
  .package-preview__image,
  .price-card,
  .price-card.featured,
  .bar-style,
  .review-slide,
  .story-card,
  .local-grid img {
    border-radius: 28px;
  }

  .service-rail article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list li:nth-child(even),
  .price-card:nth-child(1),
  .price-card:nth-child(3),
  .about-faq article:nth-child(even) {
    margin-top: 0;
  }

  .bar-styles,
  .addon-band,
  .local-section,
  .package-preview,
  .story-section {
    background: var(--sand);
  }

  .bar-styles .section-heading {
    color: var(--ink);
  }

  .bar-styles .section-heading p:not(.eyebrow) {
    color: var(--muted);
  }

  .faq-grid {
    columns: 1;
  }
}

/* Final visual QA pass: keep the distinct desktop compositions while preventing mobile overflow. */
.bar-styles .section-heading {
  max-width: 720px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  background: rgba(6,24,31,0.78);
  backdrop-filter: blur(10px);
}

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

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

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

  .container,
  .hero__inner,
  .page-hero__content {
    width: min(100% - 36px, 1180px);
    max-width: calc(100% - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(6,24,31,0.88), rgba(6,24,31,0.5)),
      url("realphoto/1000008673.jpeg") center/cover;
  }

  .hero__inner {
    padding-top: 150px;
    padding-bottom: 48px;
  }

  .hero__content,
  .page-hero__content,
  .dock-copy,
  .section-heading,
  .split-tide__grid > *,
  .events-layout > *,
  .trust-grid > *,
  .package-preview__inner > *,
  .quote-section > *,
  .story-grid > *,
  .local-grid > *,
  .about-faq-heading > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(2.35rem, 10.2vw, 3.35rem);
    line-height: 1.05;
  }

  .section-heading h2,
  .dock-copy h2,
  .split-tide h2,
  .package-preview h2,
  .trust-copy h2,
  .quote-copy h2,
  .story-card h2,
  .local-copy h2,
  .insurance-statement h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 8.8vw, 2.85rem) !important;
    line-height: 1.08;
  }

  h1,
  h2,
  h3,
  p,
  li,
  blockquote {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero p,
  .page-hero p,
  .section-heading p:not(.eyebrow),
  .dock-copy p:not(.eyebrow),
  .quote-copy p,
  .trust-copy p:not(.eyebrow) {
    max-width: 32rem;
    overflow-wrap: break-word;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 320px);
  }

  .hero__actions .button,
  .quote-form .button {
    width: 100%;
  }

  .hero__facts {
    width: 100%;
    margin-top: 30px;
  }

  .dock-card,
  .current-grid,
  .split-tide__grid,
  .events-layout,
  .trust-grid,
  .package-preview__inner,
  .package-board__grid,
  .proof-grid,
  .story-grid,
  .capability-heading,
  .standards-heading,
  .local-grid,
  .about-faq-heading,
  .quote-section,
  .event-map-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .service-rail,
  .process-list,
  .event-cards,
  .badges,
  .ledger-grid,
  .bar-style-grid,
  .proof-list,
  .gallery-grid,
  .capability-grid,
  .standards-grid,
  .about-faq-grid {
    grid-template-columns: 1fr !important;
  }

  .badge-card strong {
    font-size: clamp(2.6rem, 14vw, 3.5rem);
  }

  .service-rail article {
    grid-template-columns: 1fr !important;
  }

  .dock-card {
    width: min(100% - 36px, 1180px);
    border-radius: 28px;
  }

  .dock-copy {
    margin-right: 0 !important;
    border-radius: 28px;
  }

  .dock-card img,
  .split-tide img,
  .package-preview__image,
  .local-grid img {
    width: 100%;
    height: 320px;
    min-height: 0;
    border-radius: 28px !important;
  }

  .event-card,
  .event-card:nth-child(n),
  .gallery-grid img,
  .gallery-grid img:nth-child(n),
  .bar-style img {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 280px;
    border-radius: 24px !important;
  }

  .price-card:nth-child(1),
  .price-card:nth-child(3),
  .process-list li:nth-child(even),
  .about-faq article:nth-child(even) {
    margin-top: 0 !important;
  }

  .price-card,
  .price-card.featured,
  .review-slide,
  .story-card,
  .standard-card:nth-child(n),
  .proof-list article:nth-child(n) {
    border-radius: 28px !important;
  }

  .bar-styles,
  .local-section,
  .package-preview,
  .story-section,
  .process-lagoon {
    background: var(--sand) !important;
  }

  .addon-band {
    background:
      linear-gradient(135deg, rgba(6,24,31,0.96), rgba(8,117,111,0.88)) !important;
    color: #fff;
  }

  .addon-band p,
  .addon-band h3 {
    color: rgba(255,255,255,0.86);
  }

  .bar-styles .section-heading {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    backdrop-filter: none;
  }

  .bar-styles .section-heading p:not(.eyebrow) {
    color: var(--muted);
  }

  .faq-grid {
    display: grid;
    columns: auto !important;
    grid-template-columns: 1fr !important;
  }

  .faq-grid article {
    display: block;
    margin-bottom: 0;
  }

  .logo-row {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .logo-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-row span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .site-header {
    width: 100%;
  }

  .container,
  .hero__inner,
  .page-hero__content,
  .dock-card,
  .current-grid,
  .split-tide__grid,
  .events-layout,
  .trust-grid,
  .package-preview__inner,
  .package-board__grid,
  .proof-grid,
  .story-grid,
  .capability-heading,
  .standards-heading,
  .local-grid,
  .about-faq-heading,
  .quote-section {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content,
  .dock-copy,
  .section-heading,
  .split-tide__grid > *,
  .events-layout > *,
  .trust-grid > *,
  .package-preview__inner > *,
  .quote-section > *,
  .story-grid > *,
  .local-grid > *,
  .review-slide,
  .price-card,
  .ledger-grid article,
  .bar-style,
  .faq-grid article,
  .proof-list article,
  .badge-card,
  .event-map-grid article,
  .story-card,
  .capability-card,
  .standard-card,
  .about-faq article {
    width: 100% !important;
    max-width: 100% !important;
  }

  h1,
  h2,
  h3,
  p,
  li,
  blockquote {
    max-width: 100% !important;
  }

  .hero h1,
  .page-hero h1 {
    max-width: min(100%, 270px) !important;
    font-size: clamp(2.05rem, 9.2vw, 2.85rem);
    text-wrap: balance;
  }

  .section-heading h2,
  .dock-copy h2,
  .split-tide h2,
  .package-preview h2,
  .trust-copy h2,
  .quote-copy h2,
  .story-card h2,
  .local-copy h2,
  .insurance-statement h2 {
    max-width: min(100%, 270px) !important;
    font-size: clamp(1.85rem, 8vw, 2.35rem) !important;
    text-wrap: balance;
  }

  .hero p,
  .page-hero p,
  .section-heading p:not(.eyebrow),
  .dock-copy p:not(.eyebrow),
  .split-tide p:not(.eyebrow),
  .quote-copy p,
  .trust-copy p:not(.eyebrow),
  .service-rail p,
  .price-card li,
  .ledger-grid p,
  .faq-grid p,
  .proof-list p,
  .badge-card p,
  .event-map-grid p,
  .story-card p,
  .capability-card p,
  .standard-card p,
  .about-faq p {
    max-width: min(100%, 270px) !important;
  }

  .review-slide blockquote {
    max-width: min(100%, 270px) !important;
    font-size: clamp(1.18rem, 6.2vw, 1.55rem);
    line-height: 1.22;
  }

  .dock-copy,
  .trust-copy,
  .review-card,
  .quote-form,
  .local-copy,
  .price-card,
  .faq-grid article,
  .capability-card,
  .standard-card,
  .about-faq article {
    padding: 24px;
  }

  .quote-section {
    gap: 24px;
  }

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

@media (max-width: 560px) {
  p,
  li,
  blockquote {
    max-width: min(100%, 270px) !important;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .dock-copy li {
    max-width: min(100%, 250px) !important;
    font-size: 0.92rem;
  }
}

/* Final responsive repair: keep mobile first screens readable and not over-tall. */
@media (max-width: 620px) {
  .hero {
    min-height: 720px;
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .hero__inner {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  .hero h1,
  .page-hero h1,
  .about-hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.35rem, 10.5vw, 3.15rem) !important;
    line-height: 1.08;
  }

  .hero p,
  .page-hero p,
  .about-hero p {
    max-width: 100% !important;
  }

  .hero__actions {
    gap: 12px;
  }
}
