:root {
  --ink: #151113;
  --ink-soft: #30282d;
  --paper: #fbf7ef;
  --cream: #fffdf8;
  --sage: #5e6f58;
  --plum: #61263c;
  --gold: #d6ae43;
  --rose: #c45d6e;
  --line: rgba(21, 17, 19, 0.15);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 17, 19, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  font-size: 0.7rem;
  font-weight: 800;
  color: currentColor;
  opacity: 0.72;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button--ghost {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.button--small {
  min-height: 38px;
  padding: 0 15px;
  color: inherit;
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 5vw, 74px) 34px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(17, 13, 15, 0.9) 0%, rgba(17, 13, 15, 0.67) 44%, rgba(17, 13, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 13, 15, 0.72) 0%, rgba(17, 13, 15, 0.05) 44%),
    url("assets/wp-content/uploads/2024/10/handmade-dress02-600x809.png") center 32% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--sage), var(--gold));
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(214, 174, 67, 0.24), transparent 28%),
    radial-gradient(circle at 22% 80%, rgba(97, 38, 60, 0.34), transparent 34%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: min(820px, 100%);
  padding-bottom: clamp(36px, 7vh, 92px);
}

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

.hero h1,
.section-heading h2,
.intro h2,
.split h2,
.shop-bridge h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9.5vw, 7.4rem);
  font-weight: 700;
}

.hero__copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  color: rgba(255, 253, 248, 0.9);
}

.hero__actions,
.split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__facts {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.hero__facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: var(--cream);
}

.intro {
  padding: clamp(52px, 8vw, 88px) 0;
}

.intro__grid,
.split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro h2,
.split h2,
.shop-bridge h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
}

.visit-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(21, 17, 19, 0.08);
}

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

.visit-panel div {
  display: grid;
  gap: 3px;
}

.visit-panel dt,
.tag {
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-panel dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
}

.text-link,
.feature-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--plum);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.finds {
  padding: clamp(58px, 8vw, 100px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

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

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(21, 17, 19, 0.09);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.feature-card h3 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.split {
  padding: clamp(58px, 8vw, 98px) 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 19, 0.92), rgba(48, 40, 45, 0.92)),
    url("assets/wp-content/uploads/2024/10/annie-spratt-UrOX-eG8hYI-unsplash-scaled-e1729604417399.jpg") center / cover no-repeat;
  color: var(--cream);
}

.split p {
  color: rgba(255, 253, 248, 0.86);
}

.story-image {
  margin: 0;
  justify-self: center;
}

.story-image img {
  width: min(340px, 100%);
  border: 8px solid var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image figcaption {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.86rem;
  text-align: center;
}

.shop-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(58px, 8vw, 96px) 0;
}

.shop-bridge p {
  max-width: 720px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 32px 0;
  color: var(--cream);
  background: var(--ink);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.74);
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset: 74px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
    color: var(--ink);
  }

  .site-header > .button {
    justify-self: end;
  }

  .hero {
    min-height: 88vh;
    background-position: 58% center;
  }

  .intro__grid,
  .split__grid,
  .shop-bridge {
    grid-template-columns: 1fr;
  }

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

  .shop-bridge .button {
    justify-self: start;
  }

  .footer__grid {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .site-header > .button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
    width: auto;
  }

  .hero {
    padding: 112px 18px 30px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .hero__facts span {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
