:root {
  --white: #FFFFFF;
  --clean-white: #FBF7F4;
  --soft-white: #F8F8F6;
  --ink: #080808;
  --ink-soft: #34302D;
  --crimson: #8B0015;
  --dark-crimson: #5E000E;
  --gold: #CBA24A;
  --gold-soft: #D6B766;
  --gold-pale: #E8D7AE;
  --line: rgba(203, 162, 74, 0.28);
  --shadow: 0 8px 24px rgba(8, 8, 8, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: default;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.announcement,
.site-header,
main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 360px;
  min-height: 36px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.16);
  color: var(--ink);
  background: var(--clean-white);
  font-size: 13px;
  font-weight: 300;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.announcement svg {
  width: 16px;
  height: 16px;
  color: #B4640A;
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 16px 36px 8px;
  background: var(--white);
}

.brand {
  display: grid;
  width: 136px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-rule {
  width: 104px;
  height: 1px;
  margin: -2px 0 4px;
  background: var(--gold-soft);
}

.brand-sub {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.18);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button svg {
  width: 16px;
  height: 16px;
}

.book-short {
  display: none;
}

.icon-link {
  position: relative;
  display: grid;
  width: 24px;
  height: 48px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bag-count {
  position: absolute;
  top: 4px;
  right: -8px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 10px;
  line-height: 1;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.breadcrumb-row strong {
  color: var(--ink);
  font-weight: 400;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(500px, 570px) minmax(310px, 344px) minmax(280px, 280px);
  align-items: start;
  gap: 32px;
  padding: 0 36px 24px;
}

.gallery {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 18px;
}

.thumb-strip {
  display: grid;
  gap: 12px;
}

.thumb {
  width: 102px;
  height: 94px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--soft-white);
}

.thumb.active {
  border-color: var(--gold);
}

.thumb img,
.hero-service img,
.recent-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-service {
  height: 424px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-white);
}

.hero-service img {
  object-position: center;
}

.detail-column {
  padding-top: 2px;
}

.kicker,
.price-block span,
.info-card h2,
.recent-work h2,
.footer-links h2,
.newsletter h2 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 10px;
  color: var(--dark-crimson);
}

.detail-column h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.service-script {
  margin: 4px 0 18px;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.description {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.service-facts {
  display: grid;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.34);
}

.fact {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: center;
}

.fact-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #B4640A;
}

.fact-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.fact strong,
.fact span,
.trust-strip strong,
.trust-strip small {
  display: block;
}

.fact strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.fact div span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 300;
}

.price-block {
  margin-top: 18px;
}

.price-block span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.price-block strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.purchase-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
  margin-top: 14px;
}

.primary-btn,
.outline-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-btn {
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 8px 18px rgba(139, 0, 21, 0.18);
}

.outline-btn {
  border: 1px solid rgba(139, 0, 21, 0.58);
  color: var(--dark-crimson);
  background: var(--white);
}

.primary-btn svg,
.light-btn svg {
  width: 17px;
  height: 17px;
}

.save-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.save-link svg {
  width: 18px;
  height: 18px;
  color: var(--crimson);
}

.info-rail {
  display: grid;
  gap: 16px;
}

.info-card,
.details-panel,
.booking-card,
.trust-strip {
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 8, 8, 0.05);
}

.info-card {
  padding: 22px 26px;
}

.info-card h2,
.recent-work h2,
.footer-links h2,
.newsletter h2 {
  margin: 0 0 18px;
  color: var(--ink);
}

.check-list,
.addon-list,
.details-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--crimson);
  border-radius: 50%;
  color: var(--crimson);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--crimson);
  border-left: 1.5px solid var(--crimson);
  content: "";
  transform: rotate(-45deg);
}

.addon-list {
  display: grid;
  gap: 15px;
}

.addon-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.addon-list span {
  position: relative;
  padding-left: 26px;
}

.addon-list span::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 1px solid #B4640A;
  border-radius: 2px;
  content: "";
}

.addon-list strong {
  font-weight: 400;
}

.help-card p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.help-card a,
.portfolio-link,
.call-link {
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 3px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 36px 16px;
  padding: 18px 24px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 54px;
}

.trust-strip div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.trust-strip span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #B4640A;
}

.trust-strip svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.15;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-strip small {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
}

.lower-layout {
  display: grid;
  grid-template-columns: minmax(0, 942px) minmax(280px, 340px);
  gap: 16px;
  padding: 0 36px 24px;
}

.details-panel {
  overflow: hidden;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 56px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.22);
}

.tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tabs .active {
  color: var(--dark-crimson);
}

.tabs .active::after {
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.details-content {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  min-height: 242px;
}

.details-copy {
  padding: 26px 28px 28px;
  border-right: 1px solid rgba(203, 162, 74, 0.22);
}

.details-copy p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.details-copy ul {
  display: grid;
  gap: 10px;
}

.details-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.details-copy li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #B4640A;
  border-radius: 50%;
  content: "";
}

.details-copy li::after {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 6px;
  height: 3px;
  border-bottom: 1.3px solid #B4640A;
  border-left: 1.3px solid #B4640A;
  content: "";
  transform: rotate(-45deg);
}

.recent-work {
  padding: 26px 28px 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 24px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--dark-crimson);
  background: var(--clean-white);
  font-size: 12px;
  font-weight: 300;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.recent-grid a {
  display: block;
  height: 91px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft-white);
}

.booking-card {
  position: relative;
  align-self: start;
  min-height: 250px;
  margin-top: 26px;
  padding: 46px 40px 34px;
  text-align: center;
}

.booking-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark-crimson);
  transform: translateX(-50%);
}

.booking-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.4;
}

.booking-card h2,
.cta-band h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.booking-card p {
  margin: 0 auto 22px;
  max-width: 230px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.booking-card .primary-btn {
  width: 100%;
  margin-bottom: 24px;
}

.booking-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
}

.cta-band {
  display: grid;
  grid-template-columns: 176px 1fr auto 244px;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  margin: 0 36px 24px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--crimson);
}

.cta-band img {
  width: 176px;
  height: 116px;
  object-fit: cover;
}

.cta-band h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 29px;
}

.cta-band p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
}

.light-btn {
  min-width: 240px;
  color: var(--dark-crimson);
  background: var(--white);
}

.question {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  line-height: 1.5;
}

.question a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  gap: 48px;
  padding: 24px 36px 20px;
  overflow: hidden;
  background: var(--clean-white);
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 10px;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-links a {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.newsletter {
  position: relative;
  min-height: 208px;
  padding-left: 32px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 240px;
  height: 40px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 4px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 48px 0 16px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 300;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  color: var(--crimson);
  background: transparent;
}

.newsletter button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.newsletter img {
  position: absolute;
  right: -14px;
  bottom: -24px;
  width: 220px;
  height: 176px;
  object-fit: cover;
}

.footer-bridge {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-bridge::before,
.footer-bridge::after {
  width: min(120px, 18vw);
  height: 1px;
  background: var(--gold-pale);
  content: "";
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
}

.legal nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1320px) {
  .announcement {
    gap: 96px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 16px 24px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .breadcrumb-row,
  .service-detail,
  .lower-layout {
    padding-right: 24px;
    padding-left: 24px;
  }

  .service-detail {
    grid-template-columns: minmax(460px, 1.35fr) minmax(300px, 0.9fr);
  }

  .info-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

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

  .booking-card {
    margin-top: 28px;
  }

  .trust-strip,
  .cta-band {
    margin-right: 24px;
    margin-left: 24px;
  }

  .cta-band {
    grid-template-columns: 144px 1fr auto;
  }

  .cta-band img {
    width: 144px;
  }

  .question {
    grid-column: 2 / 4;
    padding: 0 0 24px;
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 200px 1fr;
    padding: 40px 24px 24px;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding: 32px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.24);
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .announcement {
    gap: 12px;
    padding: 8px 16px;
    flex-wrap: wrap;
    font-size: 12px;
  }

  .announce-item {
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .gallery {
    max-width: 650px;
  }

  .detail-column {
    max-width: 620px;
  }

  .info-rail {
    grid-template-columns: 1fr;
  }

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

  .trust-strip div + div {
    padding-left: 0;
    border-left: 0;
  }

  .cta-band {
    grid-template-columns: 128px 1fr;
    padding-right: 24px;
  }

  .light-btn,
  .question {
    grid-column: 2;
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .details-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.22);
  }
}

@media (max-width: 860px) {
  .announcement {
    min-height: 40px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    max-width: 100vw;
    gap: 16px;
    padding: 16px;
    overflow: visible;
    padding-top: 16px;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .brand-main {
    font-size: 48px;
  }

  .header-actions {
    position: absolute;
    top: 20px;
    right: auto;
    left: min(72vw, 272px);
    margin-left: 0;
    gap: 8px;
  }

  .header-actions .icon-link {
    display: none;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    width: 100%;
    max-width: calc(100vw - 32px);
    gap: 8px 16px;
    min-width: 0;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.4px;
    overflow-x: visible;
    scrollbar-width: none;
    white-space: normal;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    display: inline-block;
  }

  .book-button {
    min-width: 80px;
    padding: 0;
  }

  .book-button svg,
  .book-full {
    display: none;
  }

  .book-short {
    display: inline;
  }

  .breadcrumb-row {
    flex-wrap: wrap;
    padding: 16px;
    gap: 8px;
    font-size: 11px;
  }

  .service-detail,
  .lower-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-right: auto;
    margin-left: auto;
    padding: 0 0 24px;
  }

  .gallery {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: 100%;
  }

  .thumb-strip {
    display: flex;
    order: 2;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
  }

  .thumb {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 1;
  }

  .hero-service {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 0.72;
  }

  .detail-column,
  .info-rail,
  .lower-layout > *,
  .details-panel {
    min-width: 0;
    max-width: 100%;
  }

  .detail-column h1 {
    font-size: 46px;
  }

  .service-script {
    font-size: 24px;
  }

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

  .primary-btn,
  .outline-btn {
    width: 100%;
    min-width: 0;
  }

  .trust-strip,
  .cta-band {
    grid-template-columns: 1fr;
    margin-right: 16px;
    margin-left: 16px;
  }

  .trust-strip div {
    padding: 12px 0;
  }

  .trust-strip div + div {
    border-top: 1px solid rgba(203, 162, 74, 0.24);
  }

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

  .tabs button {
    min-height: 44px;
    padding: 0 20px;
    text-align: left;
  }

  .tabs .active::after {
    right: auto;
    left: 20px;
    width: 74px;
  }

  .recent-grid {
    gap: 8px;
  }

  .recent-grid a {
    height: auto;
    aspect-ratio: 1;
  }

  .booking-card {
    margin-top: 28px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .cta-band {
    gap: 18px;
    padding: 0 20px 24px;
  }

  .cta-band img {
    width: calc(100% + 40px);
    height: 96px;
    margin: 0 -20px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .light-btn,
  .question {
    grid-column: auto;
  }

  .light-btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 24px;
  }

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

  .newsletter {
    min-height: 256px;
  }

  .legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .announcement {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 11px;
  }

  .service-detail,
  .lower-layout {
    width: min(343px, calc(100vw - 48px));
    max-width: min(343px, calc(100vw - 48px));
  }

  .breadcrumb-row {
    padding-right: 24px;
    font-size: 10px;
  }

  .detail-column h1 {
    font-size: 42px;
  }

  .service-script {
    font-size: 22px;
  }
}

/* Polish pass #21 — midsection breathing room (service panel + lower right rail).
   Additive, reversible: only loosens vertical spacing/line-height. */
.details-copy p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.details-copy ul {
  gap: 16px;
}

.details-copy li {
  line-height: 1.5;
}

.booking-card p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.booking-card small {
  margin-bottom: 16px;
}
