:root {
  --black: #100d0b;
  --espresso: #2b1d16;
  --cacao: #4a3327;
  --brown: #76553f;
  --cream: #f7efe3;
  --ivory: #fffaf1;
  --linen: #eadccb;
  --gold: #c9a35b;
  --champagne: #e7c986;
  --smoke: rgba(16, 13, 11, 0.68);
  --line: rgba(74, 51, 39, 0.18);
  --shadow: 0 28px 90px rgba(43, 29, 22, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 163, 91, 0.18), transparent 25rem),
    linear-gradient(180deg, var(--ivory), var(--cream) 46%, #f2e6d6);
  color: var(--black);
  font: 400 15px/1.7 var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 13, 11, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 13, 11, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent);
  z-index: -1;
}

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

img {
  max-width: 100%;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.topbar {
  background: var(--black);
  color: var(--champagne);
  padding: 10px 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 82px;
  padding: 0 clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 250, 241, 0.3);
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo name"
    "logo sub";
  align-items: center;
  column-gap: 12px;
  row-gap: 3px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 0.96;
}

.brand-logo {
  grid-area: logo;
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 8px 16px rgba(16, 13, 11, 0.16));
}

.brand span,
.brand small {
  display: block;
}

.brand span {
  grid-area: name;
  min-width: max-content;
  letter-spacing: 0.04em;
}

.brand small {
  grid-area: sub;
  color: var(--gold);
  font: 700 0.55rem/1.3 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--cacao);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.links a:not(.btn) {
  position: relative;
  padding: 12px 0;
}

.links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.links a:hover::after,
.links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.88);
}

.menu span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 14px 34px rgba(16, 13, 11, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--espresso);
  border-color: var(--espresso);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--champagne));
  border-color: rgba(74, 51, 39, 0.12);
  color: var(--black);
}

.text-link {
  color: var(--espresso);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: min(10vh, 88px) clamp(18px, 5vw, 64px) clamp(28px, 7vh, 70px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.78), rgba(16, 13, 11, 0.3) 47%, rgba(247, 239, 227, 0.08)),
    url("sv-luxe-hero.png") center / cover;
}

.hero-panel {
  position: relative;
  max-width: 760px;
  padding: clamp(24px, 4vw, 54px);
  color: var(--ivory);
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(16, 13, 11, 0.38);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  max-width: 980px;
}

.hero-panel .lede {
  color: rgba(255, 250, 241, 0.82);
  margin: 28px 0 34px;
}

.hero-panel .text-link {
  color: var(--champagne);
}

.hero-note {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(22px, 6vh, 66px);
  width: min(270px, calc(100% - 36px));
  padding: 22px;
  color: var(--black);
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(255, 250, 241, 0.5);
  box-shadow: var(--shadow);
}

.hero-note span,
.eyebrow,
.service-row span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.05;
}

.lede {
  color: var(--smoke);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 680px;
}

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

.ticker {
  display: flex;
  gap: 42px;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cacao);
  background: rgba(255, 250, 241, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.image-card,
.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 250, 241, 0.38);
  background: var(--espresso);
  box-shadow: 0 24px 70px rgba(43, 29, 22, 0.12);
}

.image-card::after,
.service-tile::after,
.gallery-grid img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-card img,
.service-tile img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-card:hover img,
.service-tile:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}

.image-card::before,
.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.02), rgba(16, 13, 11, 0.76)),
    radial-gradient(circle at 80% 18%, rgba(231, 201, 134, 0.18), transparent 16rem);
}

.glass-label,
.tile-glass {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  background: rgba(16, 13, 11, 0.44);
  backdrop-filter: blur(18px);
  color: var(--ivory);
}

.glass-label span,
.tile-glass span {
  display: block;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  font-weight: 800;
}

.glass-label strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.ticker span {
  animation: drift 18s linear infinite;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-260px); }
}

.section {
  padding: clamp(74px, 10vw, 128px) 0;
}

.intro-grid,
.band-grid,
.booking-grid,
.contact-grid,
.approach-grid,
.service-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-head {
  max-width: 980px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.service-layout {
  padding-top: clamp(48px, 6vw, 76px);
}

.intro h2,
.section-head h2,
.split-copy h2,
.cta h2,
.page-hero h1,
.service-aside h2,
.booking-copy h2,
.contact-panel h2,
.approach-grid h2,
.cream-band h2,
.map-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 5.7rem);
  font-weight: 600;
  line-height: 0.95;
}

.intro p:not(.eyebrow),
.service-aside p,
.booking-copy p,
.approach-grid p,
.split-copy p,
.cream-band p,
.contact-panel dd,
.map-panel span {
  color: var(--smoke);
  font-size: 1.02rem;
}

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

.card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(234, 220, 203, 0.68)),
    var(--ivory);
  box-shadow: 0 20px 60px rgba(43, 29, 22, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 163, 91, 0.52);
}

.card .num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.card h3 {
  margin: auto 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.94;
}

.card p {
  margin: 0;
  color: var(--smoke);
}

.card a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 800;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--smoke);
}

.featured {
  background: linear-gradient(145deg, var(--black), var(--espresso));
  color: var(--ivory);
}

.featured p,
.featured ul {
  color: rgba(255, 250, 241, 0.74);
}

.featured a {
  color: var(--champagne);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
  background: var(--black);
  color: var(--ivory);
}

.split-section.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-image {
  min-height: 520px;
  background:
    linear-gradient(rgba(16, 13, 11, 0.08), rgba(16, 13, 11, 0.48)),
    url("sv-luxe-hero.png") center / cover;
}

.split-copy {
  align-self: center;
  padding: clamp(46px, 8vw, 110px);
}

.split-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.steps div,
.booking-card,
.map-panel {
  border: 1px solid rgba(201, 163, 91, 0.28);
  background: rgba(255, 250, 241, 0.08);
  padding: 18px;
}

.steps strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.steps span {
  color: rgba(255, 250, 241, 0.72);
}

.quote {
  padding: clamp(82px, 11vw, 140px) 0;
  text-align: center;
}

.quote blockquote {
  max-width: 980px;
  margin: 14px auto 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
}

.quote cite {
  color: var(--brown);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.cta {
  margin-bottom: clamp(70px, 9vw, 120px);
  padding: clamp(34px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(201, 163, 91, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(234, 220, 203, 0.76)),
    var(--ivory);
  box-shadow: 0 24px 70px rgba(43, 29, 22, 0.1);
}

.footer {
  padding: 68px 0 24px;
  background: var(--black);
  color: rgba(255, 250, 241, 0.76);
}

.footer.compact {
  padding-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer a.footer-brand {
  display: inline-grid;
  align-items: center;
  color: var(--ivory);
  margin: 0 0 18px;
}

.footer-brand .brand-logo {
  width: 76px;
  height: 76px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer a,
.footer p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 250, 241, 0.68);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.48);
  font-size: 0.72rem;
}

.page-hero {
  padding: clamp(74px, 11vw, 138px) 0 clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--espresso);
}

.page-hero .lede {
  margin-top: 28px;
}

.service-aside {
  position: sticky;
  top: 112px;
}

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

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

.service-tile {
  min-height: 540px;
}

.tile-glass {
  padding: 20px;
}

.tile-glass h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.95;
}

.tile-glass p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
}

.line-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(231, 201, 134, 0.36);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.08);
}

.line-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--champagne);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.72);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-row:hover {
  transform: translateX(6px);
  border-color: rgba(201, 163, 91, 0.55);
}

.service-row h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.service-row p {
  margin: 0;
  color: var(--smoke);
}

.service-row strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  white-space: nowrap;
}

.cream-band {
  padding: clamp(66px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--espresso), var(--black));
  color: var(--ivory);
}

.cream-band p,
.cream-band h2 {
  color: var(--ivory);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-section {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-grid img {
  height: clamp(320px, 36vw, 510px);
  border: 1px solid rgba(255, 250, 241, 0.5);
  box-shadow: 0 24px 70px rgba(43, 29, 22, 0.12);
}

.gallery-grid img:nth-child(2) {
  margin-top: 44px;
}

.mini-grid span {
  padding: 18px;
  border: 1px solid rgba(231, 201, 134, 0.28);
  background: rgba(255, 250, 241, 0.08);
}

.portrait-panel {
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(16, 13, 11, 0.18), rgba(16, 13, 11, 0.35)),
    url("sv-luxe-hero.png") center / cover;
}

.monogram {
  width: 168px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.48);
  border-radius: 50%;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 4.4rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.value {
  padding: 28px;
  border-top: 1px solid var(--gold);
}

.value span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.value h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.value p {
  color: var(--smoke);
}

.booking-grid,
.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
}

.booking-card {
  margin-top: 28px;
  background: var(--espresso);
  color: var(--ivory);
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-actions a {
  display: block;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.72);
  color: var(--espresso);
  font-weight: 800;
}

.booking-card strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.booking-card span {
  display: block;
  color: rgba(255, 250, 241, 0.72);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.76);
  box-shadow: 0 24px 70px rgba(43, 29, 22, 0.08);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label {
  color: var(--cacao);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(74, 51, 39, 0.22);
  background: rgba(255, 250, 241, 0.9);
  color: var(--black);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 163, 91, 0.16);
}

.field textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--brown);
  font-size: 0.9rem;
}

.contact-panel {
  padding: clamp(22px, 3vw, 34px);
  background: var(--black);
  color: var(--ivory);
}

.contact-panel h2 {
  color: var(--ivory);
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.contact-panel dt {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: rgba(255, 250, 241, 0.72);
}

.map-panel {
  margin-bottom: 96px;
  min-height: 280px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(16, 13, 11, 0.74), rgba(74, 51, 39, 0.5)),
    url("sv-luxe-hero.png") center / cover;
  color: var(--ivory);
}

.map-panel h2,
.map-panel span {
  color: var(--ivory);
}

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

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

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

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

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

  .menu {
    display: block;
  }

  .links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 54px rgba(43, 29, 22, 0.16);
  }

  .links.open {
    display: flex;
  }

  .links a {
    padding: 14px 0;
  }

  .hero {
    min-height: 740px;
    align-items: center;
  }

  .hero-note {
    display: none;
  }

  .intro.section {
    padding-bottom: 42px;
  }

  .intro.section + .section {
    padding-top: 42px;
  }

  .intro-grid,
  .band-grid,
  .booking-grid,
  .contact-grid,
  .approach-grid,
  .service-layout,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .cards,
  .values,
  .service-image-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .image-card,
  .service-tile {
    min-height: 440px;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: clamp(260px, 44vw, 360px);
    max-height: none;
    margin-top: 0;
    object-fit: cover;
    background: rgba(255, 250, 241, 0.8);
  }

  .service-aside {
    position: static;
  }

  .cta,
  .map-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (min-width: 521px) and (max-width: 920px) {
  .service-preview-grid,
  .service-image-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card,
  .service-tile {
    min-height: 360px;
  }

  .image-card img,
  .service-tile img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: auto;
    object-fit: contain;
  }
}

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

  .section {
    padding: 58px 0;
  }

  .intro.section {
    padding-bottom: 34px;
  }

  .intro.section + .section {
    padding-top: 34px;
  }

  .topbar {
    letter-spacing: 0.14em;
  }

  .brand {
    font-size: 1.45rem;
    column-gap: 8px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

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

  .hero {
    min-height: 680px;
    padding-inline: 14px;
  }

  .hero-media {
    transform: none;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel h1,
  .page-hero h1 {
    font-size: 3.18rem;
    line-height: 0.9;
  }

  .hero-panel .lede {
    margin: 20px 0 26px;
    font-size: 0.96rem;
  }

  .hero-panel .eyebrow {
    letter-spacing: 0.16em;
  }

  .actions {
    gap: 18px;
  }

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

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

  .image-card,
  .service-tile {
    min-height: 470px;
  }

  .glass-label,
  .tile-glass {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .service-preview-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .image-card {
    min-height: 0;
    background: transparent;
  }

  .image-card img {
    height: auto;
    min-height: 390px;
    object-fit: cover;
  }

  .image-card::before {
    background: linear-gradient(180deg, rgba(16, 13, 11, 0.03), rgba(16, 13, 11, 0.48));
  }

  .glass-label {
    padding: 14px;
    background: rgba(16, 13, 11, 0.36);
    backdrop-filter: blur(14px);
  }

  .glass-label strong {
    font-size: 1.2rem;
  }

  .service-tile {
    min-height: 0;
    display: grid;
    background: rgba(255, 250, 241, 0.84);
  }

  .service-tile img {
    height: auto;
    min-height: 420px;
    object-fit: cover;
  }

  .service-tile::before {
    background: linear-gradient(180deg, rgba(16, 13, 11, 0.01), rgba(16, 13, 11, 0.38));
  }

  .tile-glass {
    padding: 16px;
    background: rgba(16, 13, 11, 0.42);
    backdrop-filter: blur(14px);
  }

  .tile-glass h3 {
    font-size: 2rem;
  }

  .tile-glass p {
    font-size: 0.94rem;
  }

  .line-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .line-icon svg {
    width: 28px;
    height: 28px;
  }

  .gallery-section {
    padding-top: 58px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: var(--ivory);
  }

  .legal {
    flex-direction: column;
  }
}
