:root {
  --ink: #173f5f;
  --muted: #5d6f79;
  --cream: #fff8f2;
  --paper: #fffdf8;
  --blue: #4aa9df;
  --deep-blue: #173f5f;
  --navy: #102d42;
  --yellow: #ff7f73;
  --soft-yellow: #ffe2df;
  --soft-blue: #dff3ff;
  --pink: #ff7f73;
  --soft-pink: #ffe2df;
  --sage: #78937a;
  --moss: #355f52;
  --rose: var(--pink);
  --clay: #c98f5b;
  --sky: #d6e4e7;
  --line: rgba(31, 39, 34, 0.16);
  --shadow: 0 20px 60px rgba(31, 39, 34, 0.15);
  --premium-shadow: 0 18px 44px rgba(16, 45, 66, 0.1);
  --display-font: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans-font: "Raleway", sans-serif;
  --sky-gradient:
    linear-gradient(180deg, #f7fbfd 0%, #eef7fb 54%, #fffdf8 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans-font);
  line-height: 1.55;
}

body.is-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 242, 0.94);
  border-bottom: 1px solid rgba(23, 63, 95, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep-blue);
}

.site-header > .brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand span {
  font-family: "Bookman Old Style", Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-header .brand-logo {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 18vw, 360px);
  width: 100%;
}

.site-nav__group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav__group--left {
  justify-content: flex-start;
}

.site-nav__group--right {
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--deep-blue);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: var(--paper);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  container-type: inline-size;
  padding: clamp(96px, 13vw, 180px) clamp(18px, 5vw, 72px) clamp(72px, 8vw, 112px);
  color: var(--paper);
  background-color: rgba(16, 45, 66, 0.78);
  background-image: url("assets/cottage616_hero_fast.webp");
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 860px;
}

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

.hero .eyebrow {
  color: var(--soft-yellow);
}

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

h1,
h2,
h3 {
  font-family: var(--display-font);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.8vw, 5.2rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.section .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.primary {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.secondary {
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.7);
  background: rgba(16, 45, 66, 0.22);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 68, 97, 0.2);
}

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

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

main section[id] {
  scroll-margin-top: 92px;
}

.intro,
.vendor {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 52px);
  background-color: var(--paper);
}

.intro {
  position: relative;
  z-index: 1;
  padding-block: clamp(54px, 7vw, 92px) clamp(42px, 6vw, 76px);
  gap: clamp(14px, 2.4vw, 24px);
  border-bottom: 1px solid rgba(23, 63, 95, 0.1);
}

.intro::after {
  display: none;
}

.intro > * {
  position: relative;
  z-index: 2;
}

.intro-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.intro h2 {
  margin-bottom: 0;
  color: var(--deep-blue);
}

.intro p:last-child,
.vendor p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.icon-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 4vw, 54px);
}

.icon-story article {
  display: grid;
  grid-template-rows: auto 42px auto;
  text-align: center;
}

.sketch-icon {
  --icon-size: clamp(142px, 14vw, 176px);
  position: relative;
  display: grid;
  width: min(100%, var(--icon-size));
  height: var(--icon-size);
  margin: 0 auto 18px;
  place-items: center;
}

.sketch-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 63, 95, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--soft-pink), rgba(255, 253, 248, 0.96));
  box-shadow: var(--premium-shadow);
}

.sketch-icon img {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.icon-story article:nth-of-type(1) .sketch-icon img {
  width: 60%;
  height: 84%;
}

.icon-story article:nth-of-type(2) .sketch-icon::before {
  border-radius: 8px;
}

.icon-story article:nth-of-type(2) .sketch-icon img {
  width: 82%;
  height: 64%;
}

.icon-story article:nth-of-type(3) .sketch-icon::before {
  border-radius: 8px;
}

.icon-story article:nth-of-type(3) .sketch-icon img {
  width: 78%;
  height: 78%;
}

.icon-story h3 {
  align-self: end;
  margin-bottom: 6px;
  color: var(--deep-blue);
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.icon-story h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: var(--pink);
}

.icon-story p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--muted);
}

.split,
.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 98px;
}

.section-copy p {
  color: var(--muted);
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  background: #e4dfd3;
}

.event-showcase__content {
  display: grid;
  align-content: center;
  gap: 22px;
}

.event-showcase__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.event-showcase__header h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.event-showcase__intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.event-showcase__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(23, 63, 95, 0.16);
  border-radius: 2px;
  color: var(--deep-blue);
  background: rgba(255, 253, 248, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(31, 39, 34, 0.08);
}

.event-showcase__feature {
  position: relative;
  min-height: clamp(420px, 45vw, 620px);
  margin: calc(clamp(58px, 8vw, 112px) * -1) 0 calc(clamp(58px, 8vw, 112px) * -1) calc(clamp(18px, 5vw, 70px) * -1);
  overflow: hidden;
  background: #161612;
}

.event-showcase__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 14, 0.08), rgba(16, 16, 14, 0.42)),
    linear-gradient(90deg, rgba(16, 16, 14, 0.08), rgba(16, 16, 14, 0.24));
}

.event-showcase__feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.event-showcase__feature figcaption {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(28px, 5vw, 64px);
  z-index: 1;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(3.1rem, 7vw, 7.5rem);
  font-style: italic;
  line-height: 0.92;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: clamp(56px, 7vw, 82px);
}

.event-card-grid {
  gap: clamp(10px, 1.8vw, 16px);
  padding-top: 8px;
}

.service-card,
.team article {
  position: relative;
  border: 1px solid rgba(23, 63, 95, 0.14);
  border-top: 3px solid rgba(255, 127, 115, 0.54);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--premium-shadow);
}

.service-card {
  display: grid;
  align-content: start;
  overflow: visible;
  padding-top: clamp(54px, 6vw, 74px);
}

#events .service-card {
  border: 0;
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 36px rgba(31, 39, 34, 0.08);
}

.event-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  padding-top: 0;
}

.event-card .event-card__media {
  width: 100%;
  aspect-ratio: 1.1;
  margin: 0;
  overflow: hidden;
  background: #d8d2c6;
}

.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.event-card__body {
  display: grid;
  gap: 10px;
  padding: 14px 14px 16px;
}

.event-card .event-card__body h3 {
  margin: 0;
  padding: 0;
  color: #1f2930;
  font-family: var(--sans-font);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.22;
}

.event-card .event-card__body p {
  margin: 0;
  padding: 0;
  color: #53646c;
  font-size: 0.78rem;
  line-height: 1.35;
}

.event-card__button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 12px;
  border: 1px solid rgba(23, 63, 95, 0.16);
  border-radius: 2px;
  color: var(--deep-blue);
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.event-card__button:hover,
.event-card__button:focus-visible {
  color: var(--paper);
  background: var(--deep-blue);
  outline: 0;
}

.team article {
  display: grid;
  align-content: start;
  overflow: visible;
  padding-top: clamp(44px, 5vw, 58px);
}

.service-media {
  position: relative;
  width: min(62%, 158px);
  aspect-ratio: 1;
  margin: calc((clamp(54px, 6vw, 74px) + clamp(50px, 4vw, 62px)) * -1) auto 14px;
}

.service-photo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(23, 63, 95, 0.12);
  border-radius: 8px;
  background: var(--soft-pink);
  box-shadow: 0 12px 28px rgba(23, 63, 95, 0.12);
}

#events .service-photo {
  background: var(--pink);
}

.event-icon {
  width: 54%;
  height: 54%;
  background: var(--deep-blue);
  mask: var(--event-icon-url) center / contain no-repeat;
  -webkit-mask: var(--event-icon-url) center / contain no-repeat;
}

.event-icon-cake {
  --event-icon-url: url("assets/images/events/birthday-cake.svg");
}

.event-icon-rings {
  --event-icon-url: url("assets/images/events/wedding-rings.svg");
  width: 60%;
  height: 60%;
}

.event-icon-bear {
  --event-icon-url: url("assets/images/events/baby-bear.svg");
  width: 56%;
  height: 56%;
}

.service-card:nth-child(3) .event-icon {
  width: 56%;
  height: 56%;
}

.service-card:nth-child(2) .service-photo {
  border-radius: 8px;
}

.service-card:nth-child(3) .service-photo {
  border-radius: 8px;
}

.service-card h3,
.service-card p {
  padding-inline: 18px;
}

.service-card h3 {
  padding-top: 0;
  color: var(--deep-blue);
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.service-card p {
  padding-bottom: 20px;
  color: var(--muted);
}

.text-link {
  color: var(--deep-blue);
  font-weight: 800;
  text-underline-offset: 5px;
}

.venue-strip {
  position: relative;
  display: grid;
  min-height: clamp(430px, 48vw, 600px);
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) 0;
  color: var(--paper);
  background: #101014;
}

.venue-strip__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  pointer-events: none;
}

.venue-strip__copy span {
  display: block;
  width: min(100%, 980px);
  color: var(--paper);
  font-family: var(--sans-font);
  font-size: clamp(3.8rem, 8.4vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-align: center;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.48);
  transition: opacity 420ms ease, transform 420ms ease;
}

.venue-strip__copy span:first-child {
  transform: translateY(-0.18em);
}

.venue-strip__copy span:last-child {
  transform: translateY(0.18em);
}

.venue-strip.is-browsing .venue-strip__copy span:first-child {
  opacity: 0.76;
  transform: translateY(-1.08em);
}

.venue-strip.is-browsing .venue-strip__copy span:last-child {
  opacity: 0.76;
  transform: translateY(1.08em);
}

.venue-strip__rail {
  position: relative;
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  width: max-content;
  padding-block: clamp(14px, 1.8vw, 22px) clamp(20px, 2.4vw, 30px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  align-items: center;
}

.venue-strip__rail::-webkit-scrollbar {
  display: none;
}

.venue-strip__rail:focus-visible {
  outline: 2px solid rgba(255, 253, 248, 0.64);
  outline-offset: 8px;
}

.venue-strip__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.venue-strip__image {
  flex: 0 0 clamp(198px, 19.8vw, 286px);
  height: clamp(297px, 30.8vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  contain: paint;
}

.venue-strip__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.venue-strip__control {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  width: clamp(54px, 8vw, 118px);
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 250;
  line-height: 1;
  opacity: 0.62;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.venue-strip__control:hover,
.venue-strip__control:focus-visible {
  opacity: 1;
  outline: 0;
}

.venue-strip__control--prev {
  left: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.62) 0%, rgba(16, 16, 20, 0.24) 54%, rgba(16, 16, 20, 0) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0));
}

.venue-strip__control--next {
  right: 0;
  background:
    linear-gradient(270deg, rgba(16, 16, 20, 0.62) 0%, rgba(16, 16, 20, 0.24) 54%, rgba(16, 16, 20, 0) 100%),
    linear-gradient(270deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0));
}

.venue-strip__control span {
  display: block;
  transform: translateY(-0.03em);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.team {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 242, 0.98)),
    var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.profile-testimonials {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 242, 0.98)),
    var(--paper);
  border-top: 1px solid rgba(23, 63, 95, 0.1);
  border-bottom: 1px solid rgba(23, 63, 95, 0.1);
}

.profile-testimonials[hidden] {
  display: none;
}

.profile-testimonials .section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.profile-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.profile-testimonial-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 280px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(23, 63, 95, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--premium-shadow);
}

.profile-testimonial-card__stars {
  color: var(--pink);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.profile-testimonial-card > p {
  margin: 0;
  color: var(--deep-blue);
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.35;
}

.profile-testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-blue);
}

.profile-testimonial-card__avatar {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--soft-pink);
  color: var(--deep-blue);
  font-weight: 800;
}

.profile-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-testimonial-card__person span:last-child {
  display: grid;
  min-width: 0;
}

.profile-testimonial-card__person strong,
.profile-testimonial-card__person small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-testimonial-card__person small {
  color: var(--muted);
  font-size: 0.88rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.team article {
  display: grid;
  align-content: start;
  padding: 12px 12px 22px;
  border: 1px solid rgba(23, 63, 95, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--premium-shadow);
}

.team article:nth-child(2) {
  transform: none;
}

.team article:nth-child(3) {
  transform: none;
}

.team article:nth-child(4) {
  transform: none;
}

.team img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  margin: 0 0 16px;
  border: 0;
  border-radius: 2px;
  box-shadow: none;
}

.team h3,
.team p {
  padding-inline: 8px;
}

.team h3 {
  padding-top: 0;
  color: var(--deep-blue);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.team p {
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.vendor {
  position: relative;
  overflow: hidden;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
  padding-top: clamp(54px, 7vw, 88px);
  background-color: #fff8f2;
  background-image: linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 248, 242, 0.98) 100%);
  color: var(--deep-blue);
  border-top: 1px solid rgba(23, 63, 95, 0.12);
  border-bottom: 1px solid rgba(23, 63, 95, 0.12);
  align-items: center;
  text-align: center;
}

.vendor .eyebrow {
  color: var(--pink);
}

.vendor-showcase__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 800px);
}

.vendor-showcase__copy h2 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-family: var(--display-font);
  font-size: clamp(3.2rem, 7vw, 6.25rem);
  font-weight: 400;
  line-height: 0.95;
  text-shadow: none;
}

.vendor-showcase__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(37, 40, 61, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.vendor-showcase__photo {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  opacity: 0.86;
  box-shadow: var(--premium-shadow);
  pointer-events: none;
}

.vendor-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-showcase__photo--left {
  z-index: 1;
  width: clamp(340px, 38vw, 620px);
  height: clamp(390px, 46vw, 700px);
  left: clamp(-280px, -15vw, -118px);
  bottom: clamp(-96px, -8vw, -46px);
  opacity: 0.88;
  border-radius: 8px;
  transform: none;
}

.vendor-showcase__photo--left img {
  object-position: 50% center;
  transform: scale(1.03);
}

.vendor-showcase__photo--right {
  z-index: 1;
  width: clamp(290px, 31vw, 500px);
  height: clamp(360px, 40vw, 620px);
  right: clamp(-270px, -15vw, -128px);
  top: clamp(-36px, -2vw, -8px);
  opacity: 0.88;
  border-radius: 8px;
  transform: none;
}

.vendor-showcase__photo--right img {
  object-position: 49% 30%;
  transform: scale(1.03);
}

.vendor-showcase__photo--upper {
  z-index: 0;
  width: clamp(270px, 29vw, 470px);
  height: clamp(190px, 21vw, 330px);
  left: clamp(-42px, 1vw, 48px);
  top: clamp(-78px, -5vw, -34px);
  opacity: 0.34;
  border-radius: 8px;
  transform: none;
}

.vendor-showcase__photo--upper img {
  object-position: 47% 58%;
  transform: scale(1.03);
}

.vendor-showcase__photo--lower {
  z-index: 0;
  width: clamp(270px, 28vw, 450px);
  height: clamp(180px, 20vw, 310px);
  right: clamp(-36px, 2vw, 56px);
  bottom: clamp(-82px, -6vw, -36px);
  opacity: 0.34;
  border-radius: 8px;
  transform: none;
}

.vendor-showcase__photo--lower img {
  object-position: 55% 44%;
  transform: scale(1.03);
}

.vendor-categories {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin-bottom: 0;
  color: rgba(37, 40, 61, 0.72);
  font-family: inherit;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-shadow: none;
}

.vendor-button {
  justify-self: center;
  min-height: 72px;
  min-width: min(100%, 430px);
  gap: 14px;
  padding: 16px 28px;
  border-radius: 4px;
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.vendor-button i {
  font-size: 1.8rem;
  line-height: 1;
}

.vendor-button .bx-right-arrow-alt {
  margin-left: 4px;
  font-size: 2.15rem;
}

.subpage-hero {
  position: relative;
  z-index: 1;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--deep-blue);
  background-color: var(--cream);
  background-image: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 242, 0.96));
  border-bottom: 1px solid rgba(23, 63, 95, 0.12);
  text-align: center;
}

.subpage-hero::after {
  display: none;
}

.subpage-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.vendor-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 24px);
  justify-items: center;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px) clamp(18px, 4vw, 36px);
  background: var(--paper);
  text-align: center;
}

.vendor-intro img {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.vendor-intro p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
}

.vendor-intro::after {
  content: "";
  display: block;
  width: min(100%, 780px);
  height: 4px;
  margin-top: clamp(4px, 1vw, 10px);
  border-radius: 0;
  background: rgba(23, 63, 95, 0.18);
}

.vendor-list {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  padding-top: clamp(20px, 4vw, 42px);
  background: var(--paper);
  background-image: url("assets/textures/natural-paper.png");
}

.vendor-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(224px, 21vw, 292px) minmax(280px, 1fr) minmax(238px, 0.44fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  min-height: clamp(178px, 17vw, 224px);
  overflow: visible;
  padding: clamp(14px, 2vw, 20px) clamp(18px, 3vw, 34px) clamp(14px, 2vw, 20px) 0;
}

.vendor-card::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2vw, 20px) 0 clamp(14px, 2vw, 20px) clamp(128px, 12vw, 174px);
  z-index: 0;
  border: 1px solid rgba(23, 63, 95, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--premium-shadow);
  pointer-events: none;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.vendor-logo-frame {
  z-index: 1;
  display: block;
  width: clamp(224px, 21vw, 292px);
  max-width: 100%;
  height: auto;
  justify-self: start;
  filter: drop-shadow(7px 9px 7px rgba(23, 63, 95, 0.13));
}

.vendor-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-block: clamp(18px, 3vw, 30px);
}

.vendor-card .eyebrow {
  display: block;
  width: fit-content;
  min-height: 0;
  margin-bottom: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--deep-blue);
  background: transparent;
  letter-spacing: 0.08em;
}

.vendor-main h2 {
  margin-bottom: 10px;
  color: var(--deep-blue);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
}

.vendor-main p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.vendor-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.vendor-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 170px);
  gap: 0;
  justify-content: end;
  justify-items: stretch;
  min-width: 0;
  padding-block: clamp(18px, 3vw, 30px);
}

.vendor-contact-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  padding: 12px 22px;
  border: 1px solid var(--deep-blue);
  border-radius: 999px;
  color: var(--deep-blue);
  background: var(--pink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 4px 5px 0 rgba(23, 63, 95, 0.12);
}

.vendor-contact-button:hover,
.location-link:hover,
.icon-link:hover {
  transform: translateY(-1px);
  box-shadow: 4px 7px 0 rgba(23, 63, 95, 0.13);
}

.vendor-links {
  display: contents;
}

.location-link,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 63, 95, 0.2);
  border-radius: 50%;
  color: var(--deep-blue);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 4px 0 rgba(23, 63, 95, 0.07);
}

.location-link {
  max-width: none;
  justify-self: stretch;
  color: var(--deep-blue);
  font-weight: 800;
}

.location-link span,
.icon-link span:not(.facebook-mark) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.location-link svg,
.icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facebook-mark {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep-blue);
  font-family: var(--sans-font);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.vendor-offer,
.vendor-status,
.vendor-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.vendor-offer {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: inset 0 -2px 0 rgba(23, 63, 95, 0.1);
}

.vendor-status {
  justify-self: end;
  color: var(--deep-blue);
  background: var(--soft-yellow);
}

.vendor-note {
  color: var(--muted);
  background: rgba(23, 63, 95, 0.08);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 45, 66, 0.68);
}

.modal-overlay[hidden],
.vendor-contact-data[hidden] {
  display: none;
}

.contact-modal {
  position: relative;
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 36px);
  border: 2px solid rgba(23, 63, 95, 0.18);
  border-top: 8px solid var(--deep-blue);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-modal .eyebrow {
  color: var(--pink);
}

.contact-modal h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(23, 63, 95, 0.18);
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep-blue);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.modal-contact-links {
  display: grid;
  gap: 10px;
}

.modal-contact-links > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(23, 63, 95, 0.18);
  border-radius: 8px;
  color: var(--deep-blue);
  background: var(--paper);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.vendor-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 63, 95, 0.14);
}

.booking {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  padding-block: clamp(34px, 5vw, 58px);
  background: linear-gradient(180deg, var(--soft-pink), rgba(255, 253, 248, 0.96));
  border-block: 1px solid rgba(23, 63, 95, 0.1);
  text-align: center;
}

.booking h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.booking .button {
  min-height: 54px;
  padding-inline: 26px;
  box-shadow: none;
}

.booking-card {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 63, 95, 0.16);
  border-top: 3px solid var(--yellow);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--premium-shadow);
}

.booking-card h3 {
  margin-bottom: 0;
  color: var(--deep-blue);
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.booking-card p {
  margin-bottom: 6px;
  color: var(--muted);
}

.booking-card .button {
  justify-self: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(23, 63, 95, 0.16);
  border-top: 3px solid var(--yellow);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--premium-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(223, 127, 158, 0.25);
  border-color: var(--pink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 32px);
  padding: clamp(46px, 7vw, 72px) clamp(18px, 5vw, 72px) 34px;
  color: var(--paper);
  background: #102d42;
  text-align: center;
}

.site-footer .brand {
  color: var(--paper);
  justify-content: center;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.site-credit {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.62;
}

address .site-credit {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.68);
  font-style: normal;
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(16px, 3vw, 28px);
  font-style: normal;
  justify-content: center;
  text-align: center;
}

address a {
  text-decoration: none;
}

address > * {
  white-space: nowrap;
}

.site-footer address .site-credit {
  flex-basis: 100%;
}

.hive-updates {
  justify-self: center;
  width: min(100%, 560px);
  margin: 0 auto clamp(26px, 5vw, 48px);
  text-align: center;
}

.site-footer .hive-updates h2 {
  max-width: 560px;
  margin-right: auto;
  margin-bottom: 6px;
  margin-left: auto;
  color: var(--paper);
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  text-align: center;
}

.site-footer .hive-updates p {
  margin: 0 auto 16px;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 700;
  text-align: center;
}

.hive-updates__form {
  display: grid;
  gap: 8px;
}

.hive-updates__form label {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hive-updates__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  width: min(100%, 392px);
  margin: 0 auto;
}

.hive-updates__field input {
  min-width: 0;
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
}

.hive-updates__field input::placeholder {
  color: rgba(255, 253, 248, 0.46);
}

.hive-updates__field input:focus {
  outline: 0;
  border-color: var(--yellow);
}

.hive-updates__field button {
  min-height: 40px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.hive-updates__field button:hover,
.hive-updates__field button:focus-visible {
  color: var(--paper);
  outline: 0;
}

.site-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 28px);
}

.site-footer__logos .brand {
  flex: 0 0 auto;
}

.site-footer__logo-separator {
  color: rgba(255, 253, 248, 0.44);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.site-footer__hive-wordmark {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  row-gap: 0;
  align-items: end;
  justify-items: center;
  color: var(--paper);
  text-decoration: none;
}

.site-footer__hive-icon {
  display: block;
  width: clamp(20px, 2vw, 28px);
  height: clamp(22px, 2.2vw, 31px);
  margin-bottom: 2px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  object-fit: contain;
}

.site-footer__hive-wordmark .brand--hive__script {
  justify-self: start;
  color: var(--paper);
  font-family: "Great Vibes", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 0.78;
}

.site-footer__hive-wordmark .brand--hive__tagline {
  grid-column: 1 / 3;
  justify-self: stretch;
  box-sizing: border-box;
  padding-left: 5px;
  color: rgba(255, 253, 248, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.44em;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .vendor,
  .vendor-intro,
  .vendor-card,
  .event-showcase,
  .split,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .event-showcase__feature {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: calc(clamp(58px, 8vw, 112px) * -1) calc(clamp(18px, 5vw, 70px) * -1) 0;
  }

  .event-showcase__feature figcaption {
    left: clamp(18px, 6vw, 42px);
    right: clamp(18px, 6vw, 42px);
    bottom: clamp(20px, 6vw, 38px);
    font-size: clamp(3rem, 13vw, 5.25rem);
    text-align: right;
  }

  .section-copy {
    position: static;
  }

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

  .vendor-showcase__copy h2 {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .icon-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-arrow {
    display: none;
  }

  address {
    justify-items: start;
  }

  .vendor-contact-button {
    justify-self: start;
  }

  .vendor-status {
    justify-self: start;
  }

  .vendor-card {
    gap: 0;
    min-height: 0;
    padding: 0 clamp(18px, 5vw, 28px) clamp(24px, 5vw, 34px);
  }

  .hive-updates__field {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .vendor-card::before {
    inset: clamp(82px, 19vw, 110px) 0 0;
  }

  .vendor-logo-frame {
    width: clamp(176px, 46vw, 224px);
    justify-self: center;
    margin-bottom: -4px;
  }

  .vendor-main {
    padding-block: 10px 0;
  }

  .vendor-details {
    justify-content: center;
    justify-items: stretch;
    padding-block: 20px 0;
  }

  .location-link {
    justify-self: stretch;
  }

  .vendor-links {
    justify-content: flex-start;
  }

  .venue-strip {
    min-height: 500px;
  }

  .venue-strip__rail {
    gap: 10px;
  }

  .venue-strip__copy span {
    font-size: clamp(3.6rem, 11vw, 6.4rem);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 78px;
    align-items: center;
    justify-content: center;
  }

  .site-header > .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    position: absolute;
    left: clamp(18px, 5vw, 28px);
    display: grid;
    width: 34px;
    height: 34px;
    padding: 7px;
    place-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 3px 0;
  }

  .site-nav {
    position: absolute;
    inset: 74px 18px auto;
    display: none;
    width: auto;
    justify-content: flex-start;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav__group {
    display: grid;
    gap: 4px;
    justify-content: stretch;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::after {
    display: none;
  }

  .service-grid,
  .profile-testimonials__grid,
  .team-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .event-showcase {
    gap: 28px;
  }

  .event-showcase__header {
    display: grid;
  }

  .event-showcase__button {
    justify-self: start;
  }

  .event-card-grid {
    gap: 12px;
  }

  .event-card {
    grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
    min-height: 148px;
  }

  .event-card .event-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .event-card .event-card__body p {
    min-height: 0;
  }

  .event-showcase__feature {
    min-height: 0;
  }

  .vendor-showcase__photo {
    display: none;
  }

  .vendor-showcase__copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .vendor-button {
    min-width: 0;
    width: min(100%, 360px);
  }

  .vendor-categories {
    max-width: 360px;
    font-size: 0.96rem;
  }

  .venue-strip {
    min-height: 370px;
    padding-block: 28px;
  }

  .venue-strip__rail {
    gap: 8px;
  }

  .venue-strip__image {
    flex-basis: clamp(185px, 62vw, 255px);
  }

  .venue-strip__image {
    height: 308px;
  }

  .venue-strip__copy span {
    width: min(100%, 92vw);
    font-size: clamp(2.9rem, 13vw, 4.65rem);
    letter-spacing: -0.055em;
  }

  .venue-strip__control {
    width: 42px;
    font-size: 1.8rem;
  }

  .venue-strip__control--prev {
    left: 0;
  }

  .venue-strip__control--next {
    right: 0;
  }
}

/* Showrunner canvas hero: the modular header is the only JS-enabled hero.
   Static background/copy remain only for no-JS fallback, so there is no
   hard-coded hero flash while the content module loads. */
.showrunner-js .hero[data-showrunner-profile] {
  background-color: var(--navy);
  background-image: none;
  background-blend-mode: normal;
}

.showrunner-js .hero[data-showrunner-profile] .hero-copy {
  display: none;
}

.hero.sr-canvas-active .hero-copy {
  display: none;
}

.sr-hero-screens,
.sr-hero-screen,
.sr-hero-bg,
.sr-hero-layers {
  position: absolute;
  inset: 0;
}

.sr-hero-screen {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.sr-hero-screen.is-active {
  opacity: 1;
}

.sr-hero-bg {
  background-position: center;
  background-size: cover;
}

.sr-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 32, 48, 0.45), rgba(12, 32, 48, 0.16) 48%, rgba(12, 32, 48, 0.38));
}

.sr-hero-layers {
  inset: 0 clamp(18px, 5cqw, 72px);
  z-index: 1;
}

.sr-hero-layer {
  overflow: visible;
  position: absolute;
  margin: 0;
  width: max-content;
  color: var(--paper);
}

.sr-hero-headline {
  font-size: clamp(2.65rem, 5.8cqw, 5.2rem);
  line-height: 1.16;
  margin-bottom: 0;
  padding-bottom: 0.08em;
}

.sr-hero-caption {
  font-size: clamp(1.05rem, 2cqw, 1.35rem);
  max-width: 660px;
  overflow: visible;
  white-space: pre-wrap;
}

.sr-hero-cta {
  margin-top: 0;
}

.sr-hero-nav {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(16, 45, 66, 0.34);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  bottom: clamp(16px, 2.4cqw, 26px);
  box-shadow: 0 8px 24px rgba(7, 21, 31, 0.18);
  display: flex;
  gap: 0;
  left: 50%;
  padding: 4px 6px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.sr-hero-nav-dot {
  appearance: none;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  padding: 0;
  width: 30px;
}

.sr-hero-nav-dot::before {
  background: rgba(255, 253, 248, 0.58);
  border-radius: 999px;
  content: "";
  height: 7px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: 7px;
}

.sr-hero-nav-dot:hover::before {
  background: rgba(255, 253, 248, 0.84);
  transform: scale(1.18);
}

.sr-hero-nav-dot[aria-current="true"]::before {
  background: var(--paper);
  box-shadow: 0 1px 8px rgba(255, 253, 248, 0.24);
  transform: scale(1.35);
}

.sr-hero-nav-dot:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 1px;
}

@media (max-width: 720px) {
  .sr-hero-layers {
    position: relative;
    inset: auto;
    display: grid;
    gap: 18px;
    align-content: center;
    justify-items: start;
    min-height: 78svh;
    padding: 24px 18px 48px;
  }

  .sr-hero-layer {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .sr-hero-nav {
    bottom: 14px;
  }
}
