:root {
  color-scheme: light;
  --ink: #211714;
  --soft-ink: #4c3831;
  --muted: #7b6259;
  --paper: #fff8f4;
  --blush: #f4c8b8;
  --rose: #b76556;
  --rose-deep: #8d4438;
  --berry: #bf0f5f;
  --magenta: #e01874;
  --fuchsia: #d414a2;
  --champagne: #f8e8d5;
  --gold: #c99647;
  --cream: #fffdf9;
  --line: rgba(95, 57, 48, 0.16);
  --shadow: 0 22px 70px rgba(86, 45, 36, 0.16);
  --script: "Snell Roundhand", "Apple Chancery", "Segoe Script", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff6f4 48%, #fffaf7 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf6;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 244, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 18px rgba(64, 31, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: currentColor;
  font-size: 0.94rem;
}

.site-nav a,
.header-action {
  opacity: 0.92;
}

.site-nav a:hover,
.header-action:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0.86;
}

.social-links a:hover {
  opacity: 1;
}

.header-action {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(224, 24, 116, 0.78), rgba(191, 15, 95, 0.86));
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--rose);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/diamonn-rose-banner.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 21, 17, 0.66) 0%, rgba(87, 43, 35, 0.36) 38%, rgba(238, 177, 154, 0.05) 76%),
    linear-gradient(0deg, rgba(52, 25, 19, 0.5), rgba(52, 25, 19, 0.02) 48%);
}

.hero-content {
  position: relative;
  width: min(540px, calc(100% - 36px));
  margin-left: clamp(18px, 4vw, 58px);
  padding-top: 72px;
  color: #fffaf6;
}

.eyebrow,
.section-kicker,
.offer-type {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fffaf6;
}

.hero-brand-trio {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-brand-trio span:first-child {
  color: #fffaf6;
}

.hero-brand-trio span:nth-child(2) {
  color: #f7d8df;
}

.hero-brand-trio span:nth-child(3) {
  color: #f1c26e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.3vw, 5rem);
  line-height: 0.96;
  font-weight: 500;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.55rem;
  line-height: 1.02;
  font-weight: 500;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(255, 250, 246, 0.9);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
}

.button.primary {
  background: linear-gradient(135deg, var(--magenta), var(--berry), #8f104c);
  color: #fffaf6;
  box-shadow: 0 16px 34px rgba(191, 15, 95, 0.22);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 246, 0.75);
  color: #fffaf6;
}

.affirmation-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  padding: 18px clamp(18px, 6vw, 80px);
  background: linear-gradient(90deg, #f8c4dc, #fff4fb 44%, #ea7fb7);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
  text-transform: uppercase;
  text-align: center;
}

.affirmation-strip span:last-child {
  color: var(--rose-deep);
}

.band,
.section,
.booking {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 6vw, 80px);
}

.intro {
  background:
    linear-gradient(180deg, rgba(255, 253, 251, 0.94), rgba(255, 246, 244, 0.82)),
    var(--cream);
}

.intro-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.98), rgba(255, 228, 243, 0.58)),
    var(--cream);
  box-shadow: var(--shadow);
}

.script {
  margin: 0 0 4px;
  color: var(--fuchsia);
  font-family: var(--script);
  font-size: 2.4rem;
}

.role {
  color: var(--berry);
}

.intro-copy p:not(.script, .role) {
  max-width: 560px;
  color: var(--soft-ink);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.9), rgba(255, 228, 243, 0.52)),
    var(--champagne);
}

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

.story-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.story-copy p,
.booking-copy p {
  margin-bottom: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.portrait-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 68, 56, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.portrait-card img {
  width: 100%;
  height: auto;
  max-height: min(760px, 82svh);
  object-fit: contain;
  object-position: center center;
}

.story-panels {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 80px);
  background: var(--cream);
}

.script-heading {
  max-width: 980px;
  color: var(--fuchsia);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 3.15rem);
  font-style: italic;
  line-height: 1.12;
}

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

.story-grid article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.94), rgba(255, 228, 243, 0.38)),
    var(--paper);
  box-shadow: 0 16px 44px rgba(86, 36, 39, 0.06);
}

.story-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.story-grid p {
  color: var(--muted);
}

.story-grid p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

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

.message-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 40px rgba(86, 45, 36, 0.06);
}

.message-card p,
.offer-item p,
.process-steps p {
  color: var(--muted);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
}

.quote-band {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: clamp(48px, 8vw, 84px) 18px;
  background:
    linear-gradient(90deg, rgba(23, 17, 16, 0.96), rgba(88, 17, 55, 0.96), rgba(23, 17, 16, 0.96)),
    var(--ink);
  color: #fffaf6;
  text-align: center;
}

.private-method {
  padding: clamp(48px, 6vw, 76px) clamp(18px, 6vw, 80px);
  background:
    radial-gradient(circle at top left, rgba(224, 24, 116, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 251, 0.98), rgba(255, 225, 243, 0.68)),
    var(--cream);
  text-align: center;
}

.private-method .section-heading {
  max-width: 860px;
  margin: 0 auto 28px;
}

.private-method .section-heading p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.private-method-card {
  max-width: 780px;
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.96), rgba(255, 232, 245, 0.86)),
    var(--paper);
  box-shadow: 0 18px 52px rgba(86, 36, 39, 0.08);
}

.private-method-card p {
  max-width: 640px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.quote-band p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.05;
}

.quote-band span {
  color: #ffe2b0;
  font-weight: 800;
}

.shop {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding-top: clamp(46px, 6vw, 74px);
  padding-bottom: clamp(46px, 6vw, 74px);
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.96), rgba(255, 225, 243, 0.66), rgba(255, 246, 250, 0.92)),
    var(--paper);
}

.gold-title {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.product-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.product-copy {
  max-width: 780px;
}

.product-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-ink);
  font-weight: 700;
}

.product-points li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "DR";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary.dark {
  background: linear-gradient(135deg, #171110, #4d1834);
  color: #fffaf6;
}

.button.secondary.dark {
  border: 1px solid var(--rose-deep);
  color: var(--rose-deep);
}

.bold-room {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 80px);
  background: var(--ink);
  color: #fffaf6;
}

.bold-room-media {
  position: relative;
  min-height: 520px;
  margin: 0;
  isolation: isolate;
}

.bold-room-media::before {
  content: "";
  position: absolute;
  inset: 22px -18px -20px 24px;
  z-index: -1;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 46% 54% 48% 52% / 42% 40% 60% 58%;
  background:
    radial-gradient(circle at 22% 18%, rgba(224, 24, 116, 0.3), transparent 32%),
    linear-gradient(135deg, rgba(224, 24, 116, 0.2), rgba(241, 194, 110, 0.12));
  transform: rotate(-3deg);
}

.bold-room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  min-height: 520px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 42% 58% 45% 55% / 52% 42% 58% 48%;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.bold-room-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.bold-room-copy .section-kicker {
  color: #f1c26e;
}

.bold-room-copy p:not(.section-kicker) {
  margin: 14px 0 0;
  color: rgba(255, 250, 246, 0.78);
  font-size: 1.08rem;
}

.bold-room-copy .button {
  margin-top: 28px;
}

.offerings-section {
  background: #fffdf9;
}

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

.offer-item {
  display: grid;
  grid-template-columns: 0.72fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.offer-item h3 {
  margin-bottom: 0;
}

.offer-item p {
  margin-bottom: 0;
}

.offer-item a {
  color: var(--rose-deep);
  font-weight: 850;
  white-space: nowrap;
}

.testimonials {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 253, 251, 0.96), rgba(255, 225, 243, 0.56)),
    var(--cream);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(86, 45, 36, 0.06);
}

.testimonial-card {
  display: none;
  min-height: 300px;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 7vw, 74px);
  text-align: center;
}

.testimonial-card.is-active {
  display: grid;
}

.testimonial-quote {
  max-width: 980px;
  margin-bottom: 22px;
  color: var(--berry);
  font-family: var(--script);
  font-size: 2.45rem;
  line-height: 1.18;
}

.testimonial-card span {
  color: var(--muted);
  font-weight: 850;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 22px 28px;
}

.testimonial-controls button {
  border: 0;
  background: transparent;
  color: var(--berry);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.testimonial-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf9;
  font-size: 1.7rem;
  line-height: 1;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(141, 68, 56, 0.28);
}

.testimonial-dots button.is-active {
  background: var(--berry);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  background: #f7ded3;
}

.process-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-steps li {
  position: relative;
  padding: 26px 0 26px 72px;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.process-steps li:first-child {
  border-top: 1px solid var(--line);
}

.process-steps li::before {
  position: absolute;
  left: 0;
  top: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 68, 56, 0.32);
  border-radius: 50%;
  content: counter(steps);
  color: var(--rose-deep);
  font-weight: 900;
}

.process-steps span {
  display: block;
  margin-bottom: 7px;
  font-size: 1.3rem;
  font-weight: 850;
}

.process-steps p {
  margin-bottom: 0;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(33, 23, 20, 0.96), rgba(93, 43, 35, 0.92)),
    var(--ink);
  color: #fffaf6;
}

.booking .section-kicker {
  color: #ffe2b0;
}

.booking-copy p {
  color: rgba(255, 250, 246, 0.76);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.path-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255, 250, 246, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.07);
}

.path-grid span {
  color: #fffaf6;
  font-weight: 900;
}

.path-grid small {
  color: rgba(255, 250, 246, 0.72);
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 250, 246, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.07);
}

.signature-note {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 6vw, 80px);
  background:
    radial-gradient(circle at 82% 28%, rgba(224, 24, 116, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 251, 0.98), rgba(255, 225, 243, 0.56)),
    var(--cream);
  text-align: center;
}

.signature-note h2 {
  max-width: 760px;
  color: var(--ink);
}

.signature-note p:not(.section-kicker, .signature-line) {
  max-width: 660px;
  margin-bottom: 22px;
  color: var(--soft-ink);
  font-size: 1.1rem;
  line-height: 1.65;
}

.signature-line {
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(191, 15, 95, 0.3);
  color: var(--ink);
  line-height: 1;
}

.signature-prefix {
  display: block;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signature-line strong {
  color: #7d173f;
  font-family: var(--script);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 400;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 34px clamp(18px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(90deg, #9b0c4d, #e01874 48%, #f08ab8);
  color: #fffdf9;
}

.contact-strip h2 {
  font-size: 2rem;
}

.contact-strip p {
  margin-bottom: 0;
}

.contact-strip .section-kicker {
  color: #fffdf9;
}

.contact-strip .contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-strip .contact-form label {
  color: rgba(255, 253, 249, 0.8);
  font-size: 0.8rem;
  font-weight: 850;
}

.contact-strip .contact-form input {
  min-height: 48px;
  border: 1px solid rgba(255, 253, 249, 0.55);
  border-radius: 3px;
  background: rgba(255, 253, 249, 0.12);
  color: #fffdf9;
}

.contact-strip .contact-form input::placeholder {
  color: rgba(255, 253, 249, 0.8);
}

.contact-strip .contact-form button {
  align-self: end;
  background: linear-gradient(135deg, #171110, #4d1834);
  color: #fffdf9;
}

.contact-strip .form-note {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 246, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 246, 0.2);
  border-radius: 6px;
  background: rgba(255, 250, 246, 0.94);
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f1c26e;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  min-height: 1.5em;
  margin-bottom: 0;
  color: rgba(255, 250, 246, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 80px);
  background: #160e0c;
  color: rgba(255, 250, 246, 0.72);
}

.site-footer div:first-child {
  display: grid;
  gap: 4px;
}

.site-footer div:first-child span:first-child {
  color: #fffaf6;
  font-weight: 900;
}

.footer-socials a {
  color: rgba(255, 250, 246, 0.82);
}

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

  .site-nav,
  .header-socials {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-content {
    margin-left: 18px;
  }

  .about,
  .shop,
  .bold-room,
  .process,
  .booking,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .bold-room-media {
    min-height: 460px;
  }

  .bold-room-media img {
    min-height: 460px;
  }

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

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

  .offer-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .quote-band p {
    font-size: 2.35rem;
  }

  .portrait-card img {
    height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    background-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(42, 21, 17, 0.84), rgba(87, 43, 35, 0.48)),
      linear-gradient(0deg, rgba(52, 25, 19, 0.58), rgba(52, 25, 19, 0.12));
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .message-card {
    min-height: 240px;
  }

  .bold-room-media {
    min-height: 360px;
  }

  .affirmation-strip {
    justify-content: flex-start;
    text-align: left;
  }

  .quote-band p {
    font-size: 2rem;
  }

  .testimonial-quote {
    font-size: 1.8rem;
  }

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

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

  .bold-room-media img {
    min-height: 360px;
    border-radius: 26% 74% 34% 66% / 46% 36% 64% 54%;
  }

  .site-footer {
    flex-direction: column;
  }
}
