:root {
  --ink: #111827;
  --charcoal: #1c2430;
  --blue: #004f9e;
  --blue-deep: #001f5b;
  --ivory: #f7f3ea;
  --white: #ffffff;
  --mist: #f6f7f8;
  --sage: #65745f;
  --gold: #b88a3b;
  --muted: #667085;
  --line: #e6e2d8;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px 64px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(230, 226, 216, 0.95);
  backdrop-filter: blur(22px);
}

.brand img {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover {
  background: var(--ivory);
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 74px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 70px 64px 72px;
  background:
    linear-gradient(90deg, var(--blue-deep) 0 44%, var(--ivory) 44% 100%);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 64px;
  bottom: 44px;
  width: 180px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: 7rem;
  font-weight: 850;
  line-height: 0.92;
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.contact-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.15);
}

.button.primary {
  background: var(--gold);
  color: #121824;
}

.button.secondary,
.contact-actions a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-actions a {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-deep);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-auto-rows: 235px;
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  object-fit: cover;
  object-position: center 22%;
  transition: box-shadow 180ms ease;
}

.hero-photo.tall {
  grid-row: span 2;
}

.hero-photo:hover {
  box-shadow: 0 30px 72px rgba(17, 24, 39, 0.16);
}

.vibe-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.vibe-strip span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

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

.coming-soon-band {
  margin: 26px 64px 0;
  padding: 30px 32px;
  border: 1px solid rgba(184, 138, 59, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(0, 31, 91, 0.95) 0%, rgba(0, 79, 158, 0.92) 64%, rgba(184, 138, 59, 0.92) 100%);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.16);
}

.coming-soon-band .eyebrow {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 8px;
}

.coming-soon-band h2 {
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1.05;
}

.coming-soon-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 660px;
}

.coming-soon-band .button.secondary {
  margin-top: 16px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.stats div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 2.1rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 104px 64px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.price-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.price-menu article {
  display: grid;
  gap: 12px;
  min-height: 168px;
  padding: 22px;
  background: var(--white);
}

.price-menu span {
  color: var(--charcoal);
  font-weight: 850;
}

.price-menu strong {
  color: var(--blue);
  font-size: 1.9rem;
  line-height: 1;
}

.cart-add,
.price-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
}

.cart-add.is-added {
  background: var(--gold);
  color: #121824;
}

.price-note {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-cart {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

.service-cart h3 {
  font-size: 1.35rem;
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 78px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.cart-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cart-items .cart-empty {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.cart-item-name {
  color: var(--charcoal);
  font-weight: 800;
}

.cart-item-price {
  color: var(--blue);
  font-weight: 850;
}

.cart-remove {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 0;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: var(--blue-deep);
  font-size: 2rem;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cart-actions a,
.cart-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 850;
}

.cart-actions a {
  background: var(--gold);
  color: #121824;
}

.cart-clear {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
}

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

.service-card {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.1);
}

.service-card p {
  color: var(--muted);
  line-height: 1.58;
}

.service-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 64px;
  padding: 48px;
  border-radius: 8px;
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.booking-band h2 {
  color: var(--white);
}

.booking-band p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.booking-band .button.primary {
  flex: 0 0 auto;
}

.growth-section {
  padding: 104px 64px;
  background: var(--ivory);
}

.referral-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.referral-copy,
.referral-tools,
.referral-stats {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
}

.referral-copy {
  padding: 28px;
}

.referral-copy strong {
  display: inline-flex;
  margin: 18px 0;
  padding: 12px 14px;
  border: 1px solid rgba(184, 138, 59, 0.38);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 1.4rem;
  font-weight: 900;
}

.referral-copy p,
.growth-note {
  color: var(--muted);
  line-height: 1.58;
}

.referral-tools {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
}

.referral-tools label {
  color: var(--charcoal);
  font-weight: 850;
}

.referral-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.referral-link-row input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font: inherit;
}

.referral-link-row button {
  min-height: 46px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.referral-link-row button:last-child {
  background: var(--gold);
  color: #121824;
}

.referral-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.referral-stats div {
  padding: 22px;
  background: var(--white);
  text-align: center;
}

.referral-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.9rem;
  line-height: 1;
}

.referral-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.growth-note {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-section {
  padding: 104px 64px;
  background: var(--white);
}

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

.testimonial-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.testimonial-grid p {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.62;
}

.testimonial-grid span {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 8px solid var(--white);
  border-radius: 8px;
  grid-row: span 2;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(17, 24, 39, 0.13);
}

.gallery-grid .feature {
  grid-column: span 2;
  grid-row: span 4;
}

.gallery-grid .feature-alt,
.gallery-grid .tall-shot {
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 1;
}

.gallery-grid img:nth-child(2) {
  object-position: center 42%;
}

.gallery-grid img:nth-child(3) {
  object-position: center 35%;
}

.gallery-grid img:nth-child(6),
.gallery-grid img:nth-child(7) {
  object-position: center 38%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  padding: 104px 64px;
  background: var(--ivory);
}

.contact-info,
.hours {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
}

.former {
  color: var(--gold);
  font-weight: 850;
}

address {
  margin-top: 24px;
  color: var(--charcoal);
  font-style: normal;
  line-height: 1.65;
}

.hours dl {
  margin: 20px 0 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  font-weight: 850;
}

.hours dd {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 34px 18px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  color: var(--blue-deep);
}

.site-footer img {
  width: 170px;
  filter: none;
  opacity: 1;
}

.site-footer > p {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(184, 138, 59, 0.35);
}

.site-footer .footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 4px 0;
}

.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fffaf0;
  border: 1.5px solid var(--gold);
  color: var(--blue-deep);
  box-shadow: inset 0 0 0 1px rgba(184, 138, 59, 0.26);
  transition: transform 160ms ease, background 160ms ease;
}

.site-footer .footer-social a:hover {
  transform: translateY(-1px);
  background: #fff3d6;
}

.site-footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.site-footer .footer-links a {
  color: var(--blue-deep);
  font-size: 0.84rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 138, 59, 0.55);
  padding-bottom: 1px;
}

.sticky-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.22);
  font-weight: 850;
}

.booking-popup {
  position: fixed;
  left: 50%;
  top: 96px;
  z-index: 60;
  width: min(560px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(184, 138, 59, 0.5);
  border-radius: 12px;
  background: linear-gradient(132deg, rgba(0, 31, 91, 0.97) 0%, rgba(0, 79, 158, 0.95) 70%, rgba(184, 138, 59, 0.94) 100%);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.3);
  transform: translate(-50%, -20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.booking-popup.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.booking-popup-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.booking-popup-copy strong {
  display: block;
  font-size: 1.02rem;
}

.booking-popup-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.booking-popup-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.booking-popup-actions a,
.booking-popup-actions button {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 850;
  cursor: pointer;
}

.booking-popup-actions a {
  background: var(--gold);
  color: #121824;
}

.booking-popup-actions button {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.ai-chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.3);
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
}

.ai-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 51;
  display: none;
  width: min(360px, calc(100vw - 24px));
  max-height: min(560px, calc(100vh - 120px));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.24);
}

body.ai-chat-open .ai-chat-panel {
  display: flex;
  flex-direction: column;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.ai-chat-header strong {
  color: var(--blue-deep);
  font-size: 0.94rem;
}

.ai-chat-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ai-chat-status.open {
  border-color: rgba(70, 140, 85, 0.25);
  background: rgba(70, 140, 85, 0.14);
  color: #356a40;
}

.ai-chat-status.closed {
  border-color: rgba(184, 138, 59, 0.35);
  background: rgba(184, 138, 59, 0.16);
  color: #7a5a20;
}

.ai-chat-log {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px;
  overflow: auto;
  background: #fbfcfe;
}

.ai-chat-msg {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.ai-chat-msg.bot {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
}

.ai-chat-msg.user {
  align-self: flex-end;
  background: var(--blue-deep);
  color: var(--white);
}

.ai-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.ai-chat-options button {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 79, 158, 0.3);
  border-radius: 8px;
  background: rgba(0, 79, 158, 0.06);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.ai-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.ai-chat-input-row input {
  flex: 1;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
}

.ai-chat-input-row button {
  min-width: 74px;
  min-height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 18px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 58px 18px 44px;
    background: linear-gradient(180deg, var(--blue-deep) 0 53%, var(--ivory) 53% 100%);
  }

  .hero::after {
    right: 18px;
    bottom: 26px;
    width: 138px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-media {
    grid-auto-rows: 300px;
  }

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

  .price-menu,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-rows: 145px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section,
  .growth-section,
  .testimonial-section,
  .contact-section {
    padding: 74px 18px;
  }

  .referral-panel {
    grid-template-columns: 1fr;
  }

  .referral-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 18px;
    padding: 34px;
  }

  .coming-soon-band {
    margin: 20px 18px 0;
    padding: 28px;
  }

  .coming-soon-band h2 {
    font-size: 2rem;
  }

  .sticky-book {
    display: none;
  }

  .booking-popup {
    top: 88px;
    width: min(560px, calc(100vw - 20px));
    padding: 14px;
  }

  .booking-popup-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-popup-actions {
    width: 100%;
  }

  .booking-popup-actions a,
  .booking-popup-actions button {
    flex: 1 1 0;
  }

  .ai-chat-launcher {
    right: 14px;
    bottom: 14px;
  }

  .ai-chat-panel {
    right: 12px;
    bottom: 74px;
    width: min(380px, calc(100vw - 20px));
  }
}

@media (max-width: 560px) {
  .hero-media,
  .estimate-layout,
  .price-menu,
  .service-grid,
  .referral-stats,
  .testimonial-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-auto-rows: 340px;
  }

  .referral-link-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .coming-soon-band {
    padding: 22px 20px;
  }

  .coming-soon-band h2 {
    font-size: 1.7rem;
  }

  .coming-soon-band p {
    font-size: 0.92rem;
  }

  .coming-soon-band .button.secondary {
    width: 100%;
  }

  .hero-photo.tall {
    grid-row: auto;
  }

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

  .vibe-strip span:nth-child(2) {
    border-right: 0;
  }

  .stats {
    border-right: 0;
    border-left: 0;
  }

  .stats div,
  .stats div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .gallery-grid .feature,
  .gallery-grid .feature-alt,
  .gallery-grid .tall-shot,
  .gallery-grid .wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours dd {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 86px;
    flex-direction: column;
    text-align: center;
  }

  .booking-popup {
    top: 80px;
    border-radius: 10px;
  }

  .sticky-book {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}

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