*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-ivory);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  background: var(--color-gold);
  color: var(--color-navy);
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 166, 76, 0.08), transparent 24rem),
    linear-gradient(135deg, var(--color-navy-900), var(--color-navy-logo) 46%, var(--color-navy));
  color: var(--color-white);
}

.section-ivory {
  background:
    linear-gradient(rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.92)),
    url("../images/backgrounds/hibiscus-line-bg.png") right center / 44rem auto no-repeat;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 46px;
  padding: 15px 24px;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button svg {
  width: 20px;
  height: 20px;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button--primary:hover,
.button--dark:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.button--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.button--outline {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.button--outline:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

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

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

h2 {
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  margin: 0 0 18px;
}

.ornament {
  display: block;
  height: auto;
  margin: 20px auto 30px;
  object-fit: contain;
  object-position: center;
  width: clamp(230px, 16vw, 240px);
}

.ornament--line {
  width: clamp(230px, 16vw, 240px);
}

.hero__content .ornament,
.welcome__copy .ornament,
.artist__content .ornament {
  margin-left: 0;
  margin-right: auto;
}

.center {
  margin-top: var(--space-4);
  text-align: center;
}

.site-header {
  background: var(--color-logo-navy);
  border-bottom: 0;
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 3.5vw, 54px);
  grid-template-columns: 286px minmax(0, 1fr) 276px;
  min-height: 136px;
}

.header__brand img {
  height: 124px;
  object-fit: contain;
  object-position: center;
  width: 244px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: clamp(34px, 4.3vw, 68px);
  justify-content: center;
}

.primary-nav a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
}

.primary-nav a::after {
  background: var(--color-gold);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  width: 100%;
}

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

.header__cta {
  background: rgba(2, 13, 28, 0.42);
  border-color: var(--color-gold);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  gap: 15px;
  min-height: 66px;
  padding: 12px 20px;
  width: 258px;
}

.header__cta span {
  display: grid;
  gap: 7px;
  line-height: 1;
}

.header__cta small {
  color: var(--color-ivory);
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header__cta svg {
  height: 30px;
  width: 30px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-gold);
  display: none;
  height: 44px;
  padding: 10px;
  width: 48px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  background:
    linear-gradient(90deg, var(--color-logo-navy) 0%, var(--color-logo-navy) 45%, rgba(7, 23, 43, 0.94) 56%, rgba(7, 23, 43, 0.7) 100%),
    var(--color-logo-navy);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero::before {
  background: linear-gradient(180deg, var(--color-logo-navy) 0%, rgba(3, 8, 25, 0.72) 34%, rgba(3, 8, 25, 0) 100%);
  content: "";
  height: clamp(72px, 10vw, 128px);
  inset: 0 0 auto;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 42% 58%;
  margin-inline: 0;
  min-height: clamp(670px, 76vh, 850px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero__content {
  padding:
    clamp(64px, 7.4vw, 104px)
    clamp(42px, 5.2vw, 86px)
    clamp(64px, 7.4vw, 104px)
    max(20px, calc((100vw - var(--container)) / 2));
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--color-gold);
  font-size: clamp(5rem, 8.9vw, 9.65rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__crafted {
  display: block;
  letter-spacing: 0;
}

.hero__script {
  display: block;
  font-family: var(--font-script);
  font-size: 0.56em;
  line-height: 0.78;
  margin-left: 0.02em;
  text-transform: none;
}

.hero__text {
  font-size: 1.12rem;
  max-width: 34rem;
}

.hero__cta {
  padding: 1rem 1.75rem;
  font-size: 0.8rem;
}

.hero__art {
  align-self: stretch;
  background:
    linear-gradient(90deg, var(--color-logo-navy) 0%, var(--color-logo-navy) 24%, rgba(3, 8, 25, 0.95) 40%, rgba(3, 8, 25, 0.52) 56%, rgba(3, 8, 25, 0.18) 70%, rgba(3, 8, 25, 0) 81%),
    url("../images/hero/hero-hibiscus.png") center right / cover no-repeat;
  height: 100%;
  margin-right: 0;
  min-height: 100%;
  position: relative;
}

.value-strip {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 26, 51, 0.08);
  border-top: 1px solid rgba(0, 26, 51, 0.08);
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-item {
  align-items: center;
  color: var(--color-navy);
  display: flex;
  gap: 14px;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  text-transform: uppercase;
}

a.value-item {
  color: inherit;
  text-decoration: none;
}

.value-item svg {
  color: var(--color-gold);
}

.value-item span {
  font-size: 0.78rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.welcome.section-ivory {
  background: var(--color-ivory);
}

.welcome .split {
  align-items: stretch;
  grid-template-columns: 50% 50%;
  min-height: 0;
}

.welcome .split__media {
  display: flex;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.welcome .split__media img {
  filter: sepia(0.08) saturate(0.88) contrast(0.94);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.welcome .split__media::after {
  background: linear-gradient(90deg, rgba(247, 241, 232, 0) 0%, rgba(247, 241, 232, 0.28) 58%, var(--color-ivory) 100%);
  content: "";
  inset: 0 0 0 auto;
  pointer-events: none;
  position: absolute;
  width: 28%;
  z-index: 2;
}

.welcome .split__media::before {
  background: rgba(247, 241, 232, 0.06);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.split__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.split__content {
  align-self: center;
  max-width: 620px;
  padding: var(--space-6) clamp(28px, 6vw, 90px);
}

.welcome .split__content {
  align-self: stretch;
  background-image:
    radial-gradient(circle at 36% 48%, rgba(255, 250, 240, 0.34) 0%, rgba(255, 250, 240, 0.18) 30%, rgba(255, 250, 240, 0) 68%),
    linear-gradient(rgba(247, 241, 232, 0.5), rgba(247, 241, 232, 0.5)),
    url("../images/backgrounds/hibiscus-line-bg.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 70px 80px 60px;
}

.welcome__copy {
  max-width: 520px;
  transform: translateY(-14px);
}

.welcome__copy .eyebrow {
  margin-bottom: 10px;
}

.welcome__copy .ornament {
  margin: 20px auto 30px;
}

.welcome__copy p {
  margin-bottom: 16px;
}

.welcome__copy .button {
  color: var(--color-gold);
  margin-top: 2px;
  width: auto;
}

.artist {
  overflow: hidden;
  padding: 0 0 44px;
}

.artist__grid {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.artist__content {
  max-width: 560px;
  position: relative;
  z-index: 4;
}

.artist__content .button {
  color: var(--color-gold);
  min-width: 190px;
  padding-inline: 28px;
  width: auto;
}

.script-line {
  color: var(--color-gold-dark);
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-top: 6px;
}

.artist__portrait {
  align-items: center;
  display: flex;
  justify-content: center;
  justify-self: stretch;
  margin-left: 0;
  margin-right: calc(clamp(22px, 4vw, 76px) * -1);
  min-height: clamp(360px, 34vw, 500px);
  overflow: visible;
  position: relative;
  width: calc(100% + clamp(34px, 6vw, 104px));
}

.artist__portrait::after {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0) 0%, rgba(247, 241, 232, 0.62) 62%, var(--color-ivory) 100%);
  bottom: -1px;
  content: "";
  height: 38%;
  left: -7%;
  pointer-events: none;
  position: absolute;
  right: -2%;
  z-index: 3;
}

.artist__portrait::before {
  background:
    linear-gradient(90deg, var(--color-ivory) 0%, rgba(247, 241, 232, 0.98) 12%, rgba(247, 241, 232, 0.66) 26%, rgba(247, 241, 232, 0) 45%),
    radial-gradient(ellipse at 0% 52%, rgba(247, 241, 232, 0.68) 0%, rgba(247, 241, 232, 0.34) 26%, rgba(247, 241, 232, 0) 52%),
    radial-gradient(ellipse at 100% 52%, rgba(247, 241, 232, 0.16) 0%, rgba(247, 241, 232, 0.05) 20%, rgba(247, 241, 232, 0) 38%),
    radial-gradient(ellipse at 56% 48%, rgba(247, 241, 232, 0) 0%, rgba(247, 241, 232, 0) 58%, rgba(247, 241, 232, 0.18) 78%, rgba(247, 241, 232, 0.76) 100%);
  content: "";
  inset: -4% -8%;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.artist__portrait img {
  filter: drop-shadow(0 20px 42px rgba(7, 23, 43, 0.14)) saturate(1.06) contrast(1.03);
  max-width: none;
  position: relative;
  transform: translateX(4%);
  width: min(124%, 940px);
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse at 56% 48%, black 0%, black 82%, rgba(0, 0, 0, 0.82) 91%, transparent 100%);
  mask-image: radial-gradient(ellipse at 56% 48%, black 0%, black 82%, rgba(0, 0, 0, 0.82) 91%, transparent 100%);
}

.quote-banner {
  background:
    linear-gradient(rgba(0, 15, 34, 0.84), rgba(0, 15, 34, 0.84)),
    url("../images/backgrounds/quote-banner-hibiscus.png") center / cover no-repeat;
  padding: 44px 0 50px;
  text-align: center;
}

.quote-banner blockquote {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  line-height: 1.3;
  margin: 0 auto;
  max-width: 820px;
}

.quote-banner span {
  display: block;
  font-size: 3rem;
  line-height: 0.8;
}

.why,
.collections {
  padding: var(--space-6) 0;
}

.section-heading {
  margin: 0 auto var(--space-5);
  text-align: center;
}

.section-heading .ornament {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  align-items: center;
  border-right: 1px solid rgba(216, 166, 76, 0.58);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
  padding: 0 clamp(24px, 3vw, 42px);
  text-align: center;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card svg {
  color: var(--color-gold);
  height: 62px;
  margin: 0 auto 24px;
  stroke-width: 1.45;
  width: 62px;
}

.feature-card h3 {
  color: var(--color-navy);
  margin-bottom: 18px;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.62;
  margin: 0 auto;
  max-width: 15rem;
}

.collection-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
}

.collection-card {
  aspect-ratio: 1.35 / 1;
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.collection-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.collection-card::after {
  background: linear-gradient(to top, rgba(0, 15, 34, 0.82), rgba(0, 15, 34, 0.1));
  content: "";
  inset: 0;
  position: absolute;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card__overlay {
  bottom: 24px;
  color: var(--color-white);
  left: 24px;
  position: absolute;
  right: 24px;
  text-align: center;
  z-index: 1;
}

.collection-card h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  margin-bottom: 12px;
}

.artwork-section {
  padding: 56px 0;
}

.artwork-section__grid,
.artwork-event__grid {
  align-items: center;
  display: grid;
  gap: clamp(24px, 2.4vw, 34px);
  grid-template-columns: 0.72fr 1.9fr 0.82fr;
}

.artwork-intro {
  border-right: 1px solid rgba(216, 166, 76, 0.45);
  padding-right: clamp(28px, 3vw, 40px);
}

.artwork-intro h2 {
  color: var(--color-gold);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.artwork-intro .ornament {
  margin-top: 24px;
}

.artwork-intro p:not(.eyebrow) {
  max-width: 18rem;
}

.artwork-intro .button {
  margin-top: 8px;
  min-width: 190px;
  width: auto;
}

.artwork-grid {
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}

.art-card img {
  aspect-ratio: 1 / 0.9;
  border: 1px solid var(--color-gold);
  object-fit: cover;
  width: 100%;
}

.art-card h3 {
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-top: 14px;
  text-align: center;
}

.event-card[hidden],
.event-card.is-hidden {
  display: none;
}

.event-card {
  align-self: start;
  background: var(--color-ivory);
  border: 1px solid rgba(216, 166, 76, 0.45);
  color: var(--color-navy);
  padding: 22px;
}

.event-card img {
  aspect-ratio: 1.55 / 1;
  border: 1px solid rgba(0, 26, 51, 0.16);
  object-fit: cover;
  width: 100%;
}

.event-card .eyebrow {
  color: var(--color-navy);
  margin-bottom: 0;
  text-align: center;
}

.event-card img.event-card__divider {
  aspect-ratio: auto;
  border: 0;
  display: block;
  height: auto;
  margin: 10px auto 18px;
  object-fit: contain;
  width: 130px;
}

.event-card h2 {
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 18px 0 12px;
  text-transform: uppercase;
}

.event-card p {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.event-card__meta {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  gap: 8px;
}

.event-card__meta svg {
  color: var(--color-gold);
  flex: 0 0 auto;
  height: 17px;
  width: 17px;
}

.event-card .button {
  color: var(--color-gold);
  margin-top: 10px;
  min-height: 38px;
  padding: 12px 16px;
  width: 100%;
}

.newsletter {
  background:
    linear-gradient(rgba(216, 166, 76, 0.86), rgba(216, 166, 76, 0.86)),
    url("../images/decorative/hibiscus-black.png") left -115px center / clamp(260px, 20vw, 300px) auto no-repeat,
    url("../images/decorative/hibiscus-black.png") right -115px center / clamp(260px, 20vw, 300px) auto no-repeat,
    url("../images/backgrounds/hibiscus-line-bg.png") center / auto 170% no-repeat;
  color: var(--color-navy);
  overflow: hidden;
  padding: var(--space-4) 0;
  position: relative;
}

.newsletter__grid {
  align-items: center;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.newsletter__intro {
  align-items: center;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: auto 1fr;
}

.newsletter__intro svg {
  height: 54px;
  width: 54px;
}

.newsletter h2 {
  color: var(--color-navy);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.newsletter p {
  margin: 4px 0 0;
}

.newsletter__form {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr auto;
}

.newsletter input {
  border: 0;
  border-radius: var(--radius-sm);
  min-height: 54px;
  padding: 0 18px;
  width: 100%;
}

.site-footer {
  background: var(--color-logo-navy);
  overflow: hidden;
  padding: var(--space-5) 0 20px;
  position: relative;
}

.footer__emblem {
  bottom: 16px;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  right: 18px;
  width: clamp(150px, 12vw, 180px);
  z-index: 0;
}

.footer__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1.2fr repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.footer__brand img {
  height: 112px;
  object-fit: contain;
  object-position: left center;
  width: 190px;
}

/* Homepage-only final refinements */
@media (min-width: 981px) {
  .home-page .artist__content {
    padding-top: 32px;
  }

  .home-page .artist__content h2 {
    font-size: clamp(2rem, 2.65vw, 2.75rem);
  }

  .home-page .artwork-event__grid {
    align-items: start;
    grid-template-columns: 0.86fr 1.76fr 0.82fr;
  }

  .home-page .artwork-intro h2 {
    font-size: clamp(1.55rem, 1.95vw, 1.85rem);
  }

  .home-page .artwork-heading__line {
    display: block;
    white-space: nowrap;
  }
}

.home-page .header__brand img {
  height: 128px;
  width: 254px;
}

.home-page .welcome .split__media img {
  object-position: center center;
}

.home-page .welcome__copy > .eyebrow {
  font-size: 0.74rem;
  opacity: 0.88;
}

.home-page .art-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 8px auto 0;
  max-width: 18rem;
  text-align: center;
}

.home-page .event-card {
  background: rgba(3, 16, 34, 0.72);
  border-color: rgba(216, 166, 76, 0.62);
  box-shadow: 0 18px 40px rgba(0, 7, 18, 0.2);
  color: var(--color-white);
  text-align: center;
}

.home-page .event-card .eyebrow {
  color: var(--color-gold);
}

.home-page .event-card h2 {
  color: var(--color-white);
}

.home-page .event-card__meta {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .event-card > img:not(.event-card__divider) {
  border-color: rgba(216, 166, 76, 0.42);
}

.home-page .event-card .button {
  background: rgba(2, 13, 28, 0.55);
  border-color: rgba(216, 166, 76, 0.72);
}

.home-page .hero__content .gallery-hero__line {
  margin: 30px 0 40px;
}

.footer__tagline {
  color: var(--color-gold);
  font-family: var(--font-script);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: -10px;
  opacity: 0.82;
}

.footer__grid h2 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer__grid a {
  display: block;
  font-size: 0.92rem;
  margin: 8px 0;
}

.footer__grid a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  align-items: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin: 0;
  width: 38px;
}

.social-links svg {
  height: 19px;
  width: 19px;
}

.footer__copyright {
  border-top: 1px solid rgba(216, 166, 76, 0.28);
  color: rgba(255, 255, 255, 0.72);
  margin: var(--space-4) auto 0;
  padding-top: 18px;
  position: relative;
  text-align: center;
  width: min(calc(100% - 40px), var(--container));
  z-index: 1;
}

.page-hero {
  overflow: hidden;
  padding: var(--space-7) 0;
}

.page-hero__grid {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.page-hero h1,
.contact-page h1 {
  color: var(--color-gold);
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.page-hero p,
.contact-info p {
  max-width: 42rem;
}

.page-hero img {
  box-shadow: var(--shadow-dark);
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center p {
  margin-inline: auto;
}

.collections-hero {
  background:
    radial-gradient(circle at 26% 12%, rgba(216, 166, 76, 0.18), transparent 18rem),
    radial-gradient(circle at 74% 42%, rgba(216, 166, 76, 0.09), transparent 24rem),
    linear-gradient(90deg, rgba(3, 8, 25, 0.96), rgba(3, 8, 25, 0.82) 48%, rgba(3, 8, 25, 0.92)),
    linear-gradient(135deg, var(--color-logo-navy), var(--color-navy-logo) 58%, var(--color-navy));
  display: grid;
  min-height: clamp(360px, 29vw, 420px);
  overflow: hidden;
  place-items: center;
  position: relative;
}

.collections-page .collections-hero::after {
  background: url("../images/logo/hidden-k-hibiscus-footer.png") center / contain no-repeat;
  filter: brightness(1.08) contrast(1.08);
  content: "";
  height: clamp(245px, 27vw, 345px);
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
  right: clamp(8px, 5vw, 76px);
  width: clamp(245px, 27vw, 345px);
  z-index: 0;
}

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

.collections-page .collections-hero p:not(.eyebrow) {
  max-width: 46rem;
}

.collections-hero .ornament {
  margin: 18px auto 24px;
  width: clamp(170px, 13vw, 220px);
}

.about-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(216, 166, 76, 0.08), transparent 24rem),
    linear-gradient(135deg, var(--color-logo-navy), var(--color-navy-logo) 58%, var(--color-navy));
  padding: clamp(76px, 8vw, 112px) 0;
  position: relative;
}

.about-hero .page-hero__grid {
  align-items: center;
  gap: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.34fr);
  min-height: clamp(500px, 45vw, 640px);
}

.about-hero .reveal:first-child {
  max-width: 45rem;
  position: relative;
  z-index: 3;
}

.about-hero .reveal:first-child > p:not(.eyebrow) {
  max-width: 45rem;
}

.about-hero h1 {
  font-size: clamp(3.35rem, 5.4vw, 5.45rem);
  max-width: 12.5ch;
}

.about-hero .page-hero__media {
  align-self: stretch;
  display: flex;
  inset: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  width: auto;
  z-index: 1;
}

.about-hero .page-hero__media::before {
  background:
    linear-gradient(90deg, var(--color-logo-navy) 0%, var(--color-logo-navy) 34%, rgba(3, 8, 25, 0.94) 46%, rgba(3, 8, 25, 0.5) 64%, rgba(3, 8, 25, 0.1) 82%, rgba(3, 8, 25, 0) 100%),
    linear-gradient(180deg, rgba(3, 8, 25, 0.08) 0%, rgba(3, 8, 25, 0) 18%, rgba(3, 8, 25, 0) 72%, rgba(3, 8, 25, 0.12) 100%);
  content: "";
  inset: -1px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.about-hero .page-hero__media::after {
  background: radial-gradient(ellipse at 36% 50%, rgba(3, 8, 25, 0.72) 0%, rgba(3, 8, 25, 0.32) 34%, rgba(3, 8, 25, 0) 70%);
  content: "";
  inset: -6% auto -6% -10%;
  pointer-events: none;
  position: absolute;
  width: 44%;
  z-index: 2;
}

.about-hero .page-hero__media img {
  box-shadow: none;
  display: block;
  filter: saturate(0.96) contrast(0.96);
  height: 100%;
  max-height: none;
  object-position: center right;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 13%, black 30%, black 88%, rgba(0, 0, 0, 0.72) 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 13%, black 30%, black 88%, rgba(0, 0, 0, 0.72) 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.story-section,
.artist-story,
.culture-section,
.gallery-page {
  padding: var(--space-7) 0;
}

.collections-intro {
  padding: clamp(100px, 9vw, 140px) 0 clamp(80px, 8vw, 116px);
}

.about-brand,
.about-artist,
.about-journey,
.about-culture,
.collections-intro,
.collections-art-story {
  background:
    linear-gradient(rgba(247, 241, 232, 0.9), rgba(247, 241, 232, 0.9)),
    url("../images/backgrounds/hibiscus-line-bg.png") right center / 42rem auto no-repeat,
    var(--color-ivory);
}

.about-brand .story-grid,
.about-journey .story-grid,
.about-culture .story-grid,
.collections-intro .story-grid {
  align-items: center;
}

.about-brand .story-copy,
.about-journey .story-copy,
.about-culture .story-copy,
.collections-intro .story-copy {
  background: rgba(255, 250, 240, 0.34);
  border-left: 1px solid rgba(216, 166, 76, 0.32);
  padding: clamp(22px, 3vw, 36px) 0 clamp(22px, 3vw, 36px) clamp(26px, 4vw, 48px);
}

@media (min-width: 981px) {
  .collections-page .collections-intro .story-copy {
    transform: translateY(12px);
  }
}

.about-brand .story-copy p {
  line-height: 1.86;
}

.about-brand .story-copy p + p {
  margin-top: 1.18rem;
}

.story-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 0.72fr 1.28fr;
}

.story-copy {
  color: var(--color-muted);
  font-size: 1.05rem;
  min-width: 0;
}

.artist-story__grid {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 0.74fr 1.26fr;
}

.artist-story img {
  box-shadow: var(--shadow-soft);
  max-height: 680px;
  object-fit: cover;
  width: 100%;
}

.artist-story__media {
  overflow: visible;
  position: relative;
}

.artist-story__media::before {
  background:
    radial-gradient(ellipse at 52% 42%, rgba(6, 19, 38, 0.28) 0%, rgba(6, 19, 38, 0.12) 34%, rgba(6, 19, 38, 0) 68%),
    url("../images/backgrounds/hibiscus-line-bg.png") left center / 78% auto no-repeat;
  content: "";
  inset: -8% -12%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.artist-story__media::after {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0) 0%, rgba(247, 241, 232, 0.72) 78%, var(--color-ivory) 100%);
  bottom: -1px;
  content: "";
  height: 30%;
  left: -8%;
  pointer-events: none;
  position: absolute;
  right: -8%;
  z-index: 2;
}

.artist-story__media img {
  box-shadow: none;
  display: block;
  filter: saturate(0.96) contrast(0.98);
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, black 0%, black 76%, rgba(0, 0, 0, 0.78) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 48%, black 0%, black 76%, rgba(0, 0, 0, 0.78) 88%, transparent 100%);
}

.about-artist .artist-story__grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.about-journey .story-grid {
  grid-template-columns: 0.82fr 1.18fr;
}

.about-page .about-artist .artist-story__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.about-page .about-artist .artist-story__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-page .about-exhibitions {
  background:
    linear-gradient(rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.92)),
    url("../images/backgrounds/hibiscus-line-bg.png") left -12rem center / 36rem auto no-repeat,
    var(--color-ivory);
  padding: clamp(60px, 6vw, 82px) 0 clamp(56px, 5.5vw, 76px);
}

.about-page .about-exhibitions__heading {
  margin: 0 auto clamp(40px, 4.5vw, 60px);
  max-width: 740px;
  text-align: center;
}

.about-page .about-exhibitions__heading .ornament {
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-exhibitions__heading > p:last-child {
  color: var(--color-muted);
  margin: 0 auto;
  max-width: 40rem;
}

.about-page .exhibition-grid {
  display: grid;
  gap: clamp(20px, 2vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page .exhibition-card {
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(216, 166, 76, 0.36);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.about-page .exhibition-card__media {
  aspect-ratio: 32 / 25;
  overflow: hidden;
}

.about-page .exhibition-card__media img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 350ms ease;
  width: 100%;
}

.about-page .exhibition-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.about-page .exhibition-card h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: none;
}

.about-page .exhibition-card p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-page .exhibition-card .exhibition-card__meta {
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  margin: auto 0 0;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .about-page .exhibition-card:hover {
    border-color: rgba(216, 166, 76, 0.78);
    box-shadow: 0 20px 40px rgba(7, 23, 43, 0.14);
    transform: translateY(-5px);
  }

  .about-page .exhibition-card:hover .exhibition-card__media img {
    transform: scale(1.025);
  }
}

@media (max-width: 980px) {
  .about-page .about-artist .artist-story__grid {
    grid-template-columns: 1fr;
  }

  .about-page .exhibition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-page .about-exhibitions {
    padding: 52px 0 48px;
  }

  .about-page .about-exhibitions__heading {
    margin-bottom: 34px;
  }

  .about-page .exhibition-grid {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 460px;
  }

  .about-page .exhibition-card__body {
    padding: 20px 18px;
  }
}

.about-brand .ornament,
.about-journey .ornament,
.about-culture .ornament,
.collections-intro .ornament {
  margin-left: 0;
  margin-right: auto;
}

.values-panel {
  padding: var(--space-7) 0;
}

.about-values {
  background:
    linear-gradient(rgba(0, 15, 34, 0.9), rgba(0, 15, 34, 0.9)),
    url("../images/backgrounds/hibiscus-portrait-art-bg.png") right center / 34rem auto no-repeat,
    var(--color-navy);
}

.values-panel h2 {
  color: var(--color-gold);
}

.mission-grid {
  align-items: stretch;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
}

.mission-card {
  background: rgba(3, 8, 25, 0.28);
  border: 1px solid rgba(216, 166, 76, 0.32);
  box-shadow: inset 0 0 32px rgba(216, 166, 76, 0.035);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 3vw, 42px);
}

.mission-card h3 {
  color: var(--color-gold);
  margin-bottom: 18px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.78);
}

.about-page .about-values .mission-card p {
  font-size: 0.9375rem;
}

.about-culture {
  background: var(--color-ivory);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.about-page .about-culture::before {
  background: url("../images/hero/hero-hibiscus.png") right center / contain no-repeat;
  content: "";
  inset: 0;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  -webkit-mask-image: linear-gradient(90deg, transparent 28%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.7) 68%, black 84%);
  mask-image: linear-gradient(90deg, transparent 28%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.7) 68%, black 84%);
  z-index: -1;
}

.about-page .about-culture > .container {
  position: relative;
  z-index: 1;
}

.about-page .about-culture .story-grid {
  align-items: start;
  gap: clamp(20px, 2.4vw, 32px);
  grid-template-columns: minmax(0, 36rem);
  justify-content: start;
}

.about-page .about-culture .ornament {
  display: none;
}

.about-page .about-culture .story-copy {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  max-width: 36rem;
  padding: 0;
  text-align: left;
  width: 100%;
}

@media (min-width: 901px) {
  .about-page .about-culture .story-copy {
    margin-left: 0;
    width: 100%;
  }
}

.about-culture .button {
  color: var(--color-gold);
  margin-top: 8px;
}

/* About page final client revision */
.about-page .about-hero .page-hero__media img {
  object-fit: cover;
  object-position: center 28%;
}

.about-page .about-hero {
  overflow: hidden;
}

.about-page .about-mother-daughter,
.about-page .about-process,
.about-page .about-brand-chapter {
  background:
    linear-gradient(rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.92)),
    url("../images/backgrounds/hibiscus-line-bg.png") right center / 38rem auto no-repeat,
    var(--color-ivory);
  padding: var(--space-7) 0;
}

.about-page .about-split {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about-page .about-split__content {
  min-width: 0;
}

.about-page .about-split__content .ornament {
  margin-left: 0;
  margin-right: auto;
}

.about-page .about-split__content p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-page .about-split__media {
  min-width: 0;
}

.about-page .about-asset-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 26, 51, 0.95), rgba(13, 42, 68, 0.88));
  border: 1px solid rgba(216, 166, 76, 0.5);
  color: var(--color-gold);
  display: flex;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  justify-content: center;
  line-height: 1.35;
  min-height: 100%;
  padding: 30px;
  text-align: center;
}

.about-page .about-mother-daughter .about-asset-placeholder {
  aspect-ratio: 4 / 3;
}

.about-page .about-section-heading {
  margin: 0 auto clamp(38px, 4vw, 54px);
  max-width: 850px;
  text-align: center;
}

.about-page .about-section-heading .ornament {
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-section-heading > p:last-child {
  color: var(--color-muted);
  line-height: 1.7;
}

.about-page .process-grid {
  display: grid;
  gap: clamp(20px, 2.2vw, 30px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .process-card {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(216, 166, 76, 0.36);
  min-width: 0;
  padding: 0 24px 28px;
}

.about-page .process-card__visual {
  aspect-ratio: 4 / 3;
  margin: 0 -24px 24px;
  overflow: hidden;
}

.about-page .process-card__visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-page .process-card__step,
.about-page .exhibition-card__date {
  color: var(--color-gold-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page .process-card h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 7px 0 12px;
  text-transform: none;
}

.about-page .process-card > p:last-child {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-page .exhibition-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-page .exhibition-card__media .about-asset-placeholder {
  height: 100%;
}

.about-page .exhibition-card__media--logo {
  align-items: center;
  background: var(--color-navy);
  display: flex;
  justify-content: center;
  padding: 20px;
}

.about-page .exhibition-card__media--logo img {
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.about-page .about-brand-chapter__visual {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.72fr 1.28fr;
}

.about-page .about-brand-chapter__visual img {
  background: var(--color-navy);
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.about-page .about-brand-chapter__visual img:first-child {
  object-fit: contain;
  padding: 20px;
}

.about-page .about-story-continues {
  padding: clamp(68px, 7vw, 94px) 0;
  text-align: center;
}

.about-page .about-story-continues .container {
  max-width: 850px;
}

.about-page .about-story-continues h2 {
  color: var(--color-gold);
}

.about-page .about-story-continues p {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}

.about-page .about-story-continues__closing {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.about-page .about-story-continues .button {
  margin-top: 12px;
}

@media (min-width: 981px) {
  .about-page .about-artist h2 {
    font-size: clamp(2.35rem, 3.4vw, 3.5rem);
    white-space: nowrap;
  }
}

@media (min-width: 1101px) {
  .about-page .about-hero .page-hero__media {
    justify-content: flex-end;
  }

  .about-page .about-hero .page-hero__media img {
    height: 100%;
    margin-left: auto;
    max-width: 560px;
    object-fit: cover;
    object-position: center 18%;
    width: clamp(430px, 39vw, 560px);
  }

  .about-page .about-story-continues {
    padding-top: clamp(104px, calc(7vw + 36px), 130px);
  }
}

@media (max-width: 1180px) {
  .about-page .exhibition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-page .about-split,
  .about-page .process-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-split__media {
    margin-inline: auto;
    max-width: 680px;
    width: 100%;
  }

  .about-page .process-grid {
    margin-inline: auto;
    max-width: 680px;
  }

  .about-page .about-brand-chapter__visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-page .about-mother-daughter,
  .about-page .about-process,
  .about-page .about-brand-chapter {
    padding: 52px 0;
  }

  .about-page .about-split__content,
  .about-page .about-section-heading {
    text-align: center;
  }

  .about-page .about-split__content .ornament {
    margin-left: auto;
    margin-right: auto;
  }

  .about-page .about-brand-chapter__visual {
    grid-template-columns: 1fr;
  }

  .about-page .about-brand-chapter__visual img {
    min-height: 220px;
  }
}

.shop-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(22px, 2vw, 30px);
  justify-content: center;
  margin-inline: auto;
}

.collections-page .collections-intro {
  padding-bottom: clamp(48px, 4vw, 60px);
}

.collections-page .collections-catalog {
  padding: clamp(32px, 3vw, 40px) 0 clamp(88px, 8vw, 124px);
}

.collections-catalogue {
  display: grid;
  gap: clamp(70px, 5.5vw, 88px);
}

.collection-group__header {
  margin: 0 auto clamp(36px, 4vw, 54px);
  max-width: 760px;
  text-align: center;
}

.collection-group__header h2 {
  margin-bottom: 14px;
}

.collection-group__header p {
  color: var(--color-muted);
  font-size: 1.03rem;
  margin: 0;
}

.shop-grid--four {
  grid-template-columns: repeat(4, minmax(0, 275px));
  max-width: 1190px;
}

.shop-grid--three {
  grid-template-columns: repeat(3, minmax(0, 300px));
  max-width: 960px;
}

.shop-grid--two {
  grid-template-columns: repeat(2, minmax(0, 400px));
  max-width: 830px;
}

.shop-card {
  background: var(--color-white);
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.shop-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.shop-grid--lifestyle .shop-card__media {
  aspect-ratio: 4 / 3;
}

.shop-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.shop-card__body {
  display: grid;
  grid-template-rows: minmax(2.4em, auto) 1fr auto;
  height: 100%;
  padding: 20px 18px 18px;
}

.collections-page .collection-group--beachwear .shop-card__body {
  padding-bottom: 10px;
}

.shop-card h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 8px;
  text-transform: none;
}

.shop-card p {
  color: var(--color-muted);
  line-height: 1.62;
  margin-bottom: 16px;
}

.shop-card .button {
  align-self: end;
  color: var(--color-gold);
  justify-self: stretch;
  min-height: 43px;
  padding-block: 13px;
  width: 100%;
  transition: background var(--transition), color var(--transition), transform 300ms ease;
}

.availability-status {
  align-items: center;
  align-self: end;
  border: 1px solid rgba(216, 166, 76, 0.72);
  color: var(--color-navy);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  justify-self: start;
  letter-spacing: 0.12em;
  min-height: 43px;
  padding: 10px 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-card .button span {
  transition: transform 350ms ease;
}

.shop-card .button:hover {
  background: #112e50;
  color: #f0c76f;
}

@media (hover: hover) and (pointer: fine) {
  .shop-card:hover {
    border-color: rgba(216, 166, 76, 0.7);
    box-shadow: 0 28px 58px rgba(7, 23, 43, 0.18);
    transform: translateY(-8px);
  }

  .shop-card:hover .shop-card__media img {
    transform: scale(1.04);
  }

  .shop-card:hover .button {
    background: #112e50;
    color: #f0c76f;
  }

  .shop-card:hover .button span {
    transform: translateX(4px);
  }

  .shop-card--coming-soon:hover {
    border-color: transparent;
    box-shadow: var(--shadow-soft);
    transform: none;
  }

  .shop-card--coming-soon:hover .shop-card__media img {
    transform: none;
  }
}

.collections-art-story {
  padding: clamp(100px, 9vw, 140px) 0;
}

.collections-art-story .split {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: 0;
}

.collections-art-story .split__media {
  min-height: clamp(420px, 38vw, 560px);
  overflow: hidden;
  position: relative;
}

.collections-art-story .split__media::after {
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0) 0%, rgba(247, 241, 232, 0.18) 58%, rgba(247, 241, 232, 0.72) 84%, var(--color-ivory) 100%),
    linear-gradient(180deg, rgba(247, 241, 232, 0.08) 0%, rgba(247, 241, 232, 0) 22%, rgba(247, 241, 232, 0) 76%, rgba(247, 241, 232, 0.12) 100%);
  content: "";
  inset: 0 -1px 0 auto;
  pointer-events: none;
  position: absolute;
  width: 34%;
  z-index: 2;
}

.collections-art-story .split__media img {
  filter: saturate(0.98) contrast(0.98);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.collections-art-story .split__content {
  background:
    linear-gradient(rgba(247, 241, 232, 0.56), rgba(247, 241, 232, 0.56)),
    url("../images/backgrounds/hibiscus-line-bg.png") right center / contain no-repeat;
  padding: clamp(64px, 7vw, 92px);
}

.collections-art-story__copy {
  max-width: 540px;
}

.collections-art-story__copy .ornament {
  margin-left: 0;
  margin-right: auto;
}

.collections-art-story__copy .button {
  color: var(--color-gold);
  width: auto;
}

.collections-closing-cta {
  padding: clamp(76px, 7vw, 104px) 0;
  text-align: center;
}

.collections-closing-cta .container {
  max-width: 820px;
}

.collections-closing-cta h2 {
  color: var(--color-gold);
  margin-bottom: 18px;
}

.collections-closing-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}

.collections-closing-cta .button {
  margin-top: 30px;
  width: auto;
}

.gallery-hero {
  background:
    radial-gradient(circle at 24% 14%, rgba(216, 166, 76, 0.16), transparent 21rem),
    radial-gradient(circle at 74% 48%, rgba(216, 166, 76, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(3, 8, 25, 0.97), rgba(3, 8, 25, 0.84) 48%, rgba(3, 8, 25, 0.94)),
    var(--color-logo-navy);
  display: grid;
  min-height: clamp(360px, 29vw, 420px);
  place-items: center;
  position: relative;
}

.gallery-site-page .gallery-hero::after {
  background: url("../images/logo/hidden-k-hibiscus-footer.png") center / contain no-repeat;
  content: "";
  height: clamp(320px, 30vw, 440px);
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: -120px;
  width: clamp(320px, 30vw, 440px);
  z-index: 0;
}

.gallery-site-page .gallery-hero {
  overflow: hidden;
}

.gallery-hero::before {
  background: radial-gradient(circle at 14% 30%, rgba(216, 166, 76, 0.24) 0 1px, transparent 2px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
}

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

.gallery-hero__line {
  background: rgba(216, 166, 76, 0.88);
  display: block;
  height: 1px;
  margin: 18px auto 24px;
  width: clamp(170px, 13vw, 220px);
}

.gallery-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.72;
  margin-inline: auto;
  max-width: 38rem;
}

.gallery-intro,
.gallery-page {
  background:
    linear-gradient(rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.92)),
    url("../images/backgrounds/hibiscus-line-bg.png") right -9rem top 5rem / 36rem auto no-repeat,
    var(--color-ivory);
}

.gallery-intro {
  padding: clamp(92px, 8vw, 128px) 0 clamp(76px, 7vw, 104px);
}

.gallery-intro .story-grid {
  align-items: center;
}

.gallery-intro .story-copy {
  background: rgba(255, 250, 240, 0.34);
  border-left: 1px solid rgba(216, 166, 76, 0.32);
  padding: clamp(22px, 3vw, 36px) 0 clamp(22px, 3vw, 36px) clamp(26px, 4vw, 48px);
}

.gallery-intro .ornament {
  margin-left: 0;
  margin-right: auto;
}

.gallery-page {
  padding: clamp(80px, 8vw, 118px) 0 clamp(96px, 9vw, 136px);
}

.gallery-site-page .gallery-intro {
  padding-bottom: clamp(38px, 4vw, 58px);
}

.gallery-site-page .gallery-page {
  padding-top: clamp(32px, 3.5vw, 52px);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.filter-row button {
  background: rgba(255, 250, 240, 0.64);
  border: 1px solid rgba(216, 166, 76, 0.38);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  cursor: default;
  font-size: 0.76rem;
  font-weight: 700;
  min-height: 40px;
  padding: 10px 18px;
  text-transform: uppercase;
}

.filter-row .is-active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-gold);
}

.masonry-gallery {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(4, 1fr);
}

.gallery-tile {
  border: 1px solid rgba(216, 166, 76, 0.36);
  box-shadow: 0 18px 44px rgba(7, 23, 43, 0.12);
  min-height: clamp(260px, 24vw, 360px);
  overflow: hidden;
  position: relative;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.gallery-tile--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: clamp(540px, 50vw, 748px);
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.gallery-tile::after {
  background: linear-gradient(to top, rgba(0, 15, 34, 0.82), rgba(0, 15, 34, 0.18) 54%, transparent 76%);
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 300ms ease;
}

.gallery-tile:hover {
  box-shadow: 0 28px 58px rgba(7, 23, 43, 0.18);
  transform: translateY(-6px);
}

.gallery-tile:hover img {
  transform: scale(1.05);
}

.gallery-tile:hover::after {
  opacity: 0.9;
}

.gallery-tile h2 {
  bottom: 22px;
  color: var(--color-white);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.gallery-site-page .gallery-tile {
  background: var(--color-logo-navy);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.gallery-site-page .gallery-tile__media {
  aspect-ratio: 4 / 3;
  background: var(--color-logo-navy);
  overflow: hidden;
}

.gallery-site-page .gallery-tile__media img {
  height: 100%;
  object-fit: contain;
}

.gallery-site-page .gallery-tile--hibiscus .gallery-tile__media img {
  object-fit: cover;
  object-position: center;
}

.gallery-site-page .gallery-tile:not(.gallery-tile--large) .gallery-tile__media img {
  object-fit: cover;
  object-position: center;
}

.gallery-site-page .gallery-tile::after {
  display: none;
}

.gallery-site-page .gallery-tile__caption {
  background: var(--color-logo-navy);
  bottom: auto;
  left: auto;
  padding: 16px 18px 18px;
  position: static;
  right: auto;
  z-index: 1;
}

.gallery-site-page .gallery-tile--large {
  align-self: start;
  min-height: 0;
}

.gallery-site-page .gallery-tile--large .gallery-tile__caption {
  padding: 20px 22px 22px;
}

.gallery-site-page .gallery-tile__caption h2 {
  bottom: auto;
  left: auto;
  margin: 0 0 5px;
  position: static;
  right: auto;
}

.gallery-site-page .gallery-tile__caption p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 0;
}

.gallery-site-page .gallery-tile__caption .gallery-tile__note {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 7px;
  max-width: 34rem;
}

.gallery-site-page .artwork-metadata {
  display: grid;
  gap: 5px;
  margin: 0;
}

.gallery-site-page .artwork-metadata > div {
  align-items: baseline;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(64px, auto) 1fr;
}

.gallery-site-page .artwork-metadata dt,
.gallery-site-page .artwork-metadata dd {
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.gallery-site-page .artwork-metadata dt {
  color: var(--color-gold);
  font-weight: 700;
}

.gallery-site-page .artwork-metadata dd {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-quote {
  background:
    linear-gradient(rgba(0, 15, 34, 0.84), rgba(0, 15, 34, 0.84)),
    url("../images/backgrounds/quote-banner-hibiscus.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(216, 166, 76, 0.34);
  border-top: 1px solid rgba(216, 166, 76, 0.34);
  margin: clamp(64px, 7vw, 92px) auto 0;
  max-width: none;
  padding: clamp(38px, 4vw, 52px) 24px;
  text-align: center;
  width: 100%;
}

.gallery-quote blockquote {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.32;
  margin: 0 auto;
  max-width: 46rem;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-site-page .gallery-tile:hover {
    border-color: rgba(216, 166, 76, 0.82);
  }

  .gallery-site-page .gallery-tile:hover img {
    transform: scale(1.03);
  }
}

.gallery-cta {
  margin: clamp(72px, 8vw, 112px) auto 0;
  max-width: 48rem;
  text-align: center;
}

.gallery-cta h2 {
  color: var(--color-navy);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  margin-bottom: 0;
}

.gallery-cta .button {
  color: var(--color-gold);
  width: auto;
}

.contact-hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(216, 166, 76, 0.16), transparent 21rem),
    radial-gradient(circle at 76% 48%, rgba(216, 166, 76, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(3, 8, 25, 0.97), rgba(3, 8, 25, 0.84) 48%, rgba(3, 8, 25, 0.94)),
    var(--color-logo-navy);
  display: grid;
  min-height: clamp(360px, 29vw, 420px);
  overflow: hidden;
  place-items: center;
  position: relative;
}

.contact-site-page .contact-hero::after {
  background: url("../images/logo/hidden-k-hibiscus-footer.png") center / contain no-repeat;
  content: "";
  height: clamp(300px, 28vw, 400px);
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: -100px;
  width: clamp(300px, 28vw, 400px);
  z-index: 0;
}

.contact-hero::before {
  background: radial-gradient(circle at 12% 28%, rgba(216, 166, 76, 0.24) 0 1px, transparent 2px);
  background-size: 18px 18px;
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

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

.gallery-hero__line,
.contact-hero__line {
  background: rgba(216, 166, 76, 0.88);
  display: block;
  height: 1px;
  margin: 18px auto 24px;
  width: clamp(170px, 13vw, 220px);
}

.contact-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.72;
  margin-inline: auto;
  max-width: 38rem;
}

.contact-page {
  background:
    linear-gradient(rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.92)),
    url("../images/backgrounds/hibiscus-line-bg.png") left -11rem top 3rem / 34rem auto no-repeat,
    url("../images/backgrounds/hibiscus-line-bg.png") right -8rem bottom 2rem / 36rem auto no-repeat,
    var(--color-ivory);
  overflow: hidden;
  padding: clamp(92px, 8vw, 128px) 0;
  position: relative;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(64px, 8vw, 118px);
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.contact-info {
  color: var(--color-navy);
  max-width: 40rem;
  padding: clamp(16px, 2vw, 24px) 0;
  position: relative;
  z-index: 1;
}

.contact-info::before {
  display: none;
}

.contact-info h2 {
  color: var(--color-navy);
  font-size: clamp(2.8rem, 4.8vw, 5.1rem);
  line-height: 1.05;
  max-width: 12.4ch;
}

.contact-info .ornament {
  margin: 22px auto 34px;
  width: clamp(190px, 14vw, 228px);
}

.contact-info > p:not(.eyebrow) {
  color: var(--color-ink);
  font-size: 1.02rem;
  line-height: 1.86;
  margin-bottom: 0;
  max-width: 35rem;
}

.contact-list {
  list-style: none;
  margin: clamp(34px, 4vw, 48px) 0;
  padding: 0;
}

.contact-list li {
  align-items: center;
  display: flex;
  gap: 18px;
  margin: 26px 0;
}

.contact-site-page .contact-list li + li {
  margin-top: 40px;
}

.contact-site-page .contact-hours {
  padding-top: 14px;
}

.contact-site-page .contact-hours h3:not(:first-child) {
  padding-top: 14px;
}

.contact-list a,
.contact-list span {
  color: var(--color-ink);
}

.contact-list svg {
  color: var(--color-gold);
  flex: 0 0 auto;
  height: 21px;
  width: 21px;
}

.contact-form {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 250, 240, 0.78), transparent 24rem),
    rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(216, 166, 76, 0.42);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(7, 23, 43, 0.13), inset 0 0 52px rgba(216, 166, 76, 0.045);
  color: var(--color-navy);
  display: grid;
  gap: 14px;
  justify-self: end;
  max-width: 630px;
  padding: clamp(44px, 5.6vw, 68px);
  width: 100%;
}

.contact-info .social-links {
  margin-top: 32px;
}

.contact-form label {
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid rgba(0, 26, 51, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  min-height: 56px;
  padding: 14px 16px;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 250, 240, 0.82);
  border-color: rgba(216, 166, 76, 0.72);
  box-shadow: 0 0 0 3px rgba(216, 166, 76, 0.16);
  outline: 0;
}

.contact-form .button {
  color: var(--color-gold);
  margin-top: var(--space-3);
  width: 100%;
}
