:root {
  --cream: #f5efe3;
  --cream-light: #fbf8f1;
  --paper: #fffdf8;
  --teal: #0d4543;
  --teal-deep: #082f2e;
  --teal-soft: #2f6661;
  --gold: #b48b43;
  --gold-light: #d8bf83;
  --burgundy: #74263a;
  --ink: #172422;
  --muted: #5b6662;
  --line: rgba(13, 69, 67, 0.19);
  --shadow: 0 24px 70px rgba(8, 47, 46, 0.12);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Avenir, "Avenir Next", Futura, "Century Gothic", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(180, 139, 67, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 0.25rem;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  width: min(100% - 3rem, 1380px);
  margin: 0 auto;
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--teal-deep);
  text-decoration: none;
}

.wordmark-mark {
  width: 2.65rem;
  color: var(--gold);
  flex: 0 0 auto;
}

.wordmark-copy {
  display: grid;
  gap: 0.18rem;
  line-height: 1;
}

.wordmark-copy strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wordmark-copy small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.4rem);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.site-nav a:not(.nav-shop) {
  position: relative;
}

.site-nav a:not(.nav-shop)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-shop):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-shop {
  padding: 0.68rem 1rem;
  color: var(--cream-light);
  background: var(--teal);
  border: 1px solid var(--teal);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-shop:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.hero {
  position: relative;
  width: min(100% - 3rem, 1380px);
  min-height: 680px;
  margin: 2rem auto 0;
  padding: clamp(3.3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.98) 0 49%, rgba(241, 231, 211, 0.92) 49% 100%);
  border: 1px solid rgba(180, 139, 67, 0.45);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(180, 139, 67, 0.25) 49.8% 50%, transparent 50%),
    radial-gradient(circle at 74% 50%, rgba(180, 139, 67, 0.13), transparent 33%);
}

.hero-frame {
  position: absolute;
  inset: 1.05rem;
  pointer-events: none;
  border: 1px solid rgba(13, 69, 67, 0.55);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0.52rem;
  border-top: 1px solid rgba(180, 139, 67, 0.62);
  border-bottom: 1px solid rgba(180, 139, 67, 0.62);
}

.hero-frame::after {
  inset: 1rem;
  border: 0;
  border-left: 1px solid rgba(180, 139, 67, 0.48);
  border-right: 1px solid rgba(180, 139, 67, 0.48);
}

.hero-corner {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  color: var(--gold);
}

.hero-corner::before,
.hero-corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.hero-corner::before {
  width: 58px;
  height: 1px;
}

.hero-corner::after {
  width: 1px;
  height: 58px;
}

.corner-tl { top: -0.7rem; left: -0.7rem; }
.corner-tr { top: -0.7rem; right: -0.7rem; transform: rotate(90deg); }
.corner-bl { bottom: -0.7rem; left: -0.7rem; transform: rotate(-90deg); }
.corner-br { right: -0.7rem; bottom: -0.7rem; transform: rotate(180deg); }

.hero-copy,
.hero-art {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story h2,
.shop-panel h2 {
  margin: 0;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.6rem, 6.8vw, 7.8rem);
}

.hero-intro {
  max-width: 660px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.46rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.35rem 1.8rem;
}

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 1.15rem;
}

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

.button-primary {
  color: var(--cream-light);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 12px 26px rgba(13, 69, 67, 0.15);
}

.button-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.marketplace-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marketplace-links span {
  color: var(--gold);
  font-size: 0.46rem;
}

.marketplace-links a:hover {
  color: var(--burgundy);
}

.hero-art {
  min-width: 0;
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 24px 24px rgba(8, 47, 46, 0.08));
}

.approach {
  width: min(100% - 3rem, 1240px);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.story h2,
.shop-panel h2 {
  font-size: clamp(2.65rem, 5vw, 5.2rem);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-card {
  position: relative;
  min-height: 310px;
  padding: 2.6rem clamp(1.5rem, 3vw, 3.3rem) 2.8rem;
}

.promise-card + .promise-card {
  border-left: 1px solid var(--line);
}

.promise-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 4.5rem;
  height: 3px;
  background: var(--gold);
}

.promise-number {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.promise-card h3 {
  margin: 3rem 0 1.1rem;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.promise-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story {
  position: relative;
  width: min(100% - 3rem, 1380px);
  margin: 0 auto clamp(6rem, 11vw, 11rem);
  padding: clamp(4rem, 7vw, 7.5rem);
  display: grid;
  grid-template-columns: 90px minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 6rem);
  color: var(--cream-light);
  background:
    radial-gradient(circle at 83% 18%, rgba(180, 139, 67, 0.2), transparent 20rem),
    linear-gradient(135deg, var(--teal-deep), var(--teal));
  box-shadow: var(--shadow);
}

.story-decoration {
  height: 100%;
  min-height: 420px;
  color: var(--gold-light);
  opacity: 0.7;
}

.story-decoration svg {
  width: 100%;
  height: 100%;
}

.story h2 {
  max-width: 850px;
  color: var(--cream-light);
}

.story-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.65;
}

.story blockquote {
  position: relative;
  margin: 0;
  padding: 2.4rem 0 2.2rem 2.2rem;
  border-left: 1px solid rgba(216, 191, 131, 0.55);
}

.story blockquote::before {
  content: "“";
  position: absolute;
  top: -2.2rem;
  left: 1.7rem;
  color: rgba(216, 191, 131, 0.35);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.story blockquote p {
  position: relative;
  margin: 0;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 3.2rem);
  font-style: italic;
  line-height: 1.15;
}

.story blockquote cite {
  display: block;
  margin-top: 1.4rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-panel {
  position: relative;
  width: min(100% - 3rem, 1240px);
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding: clamp(3rem, 6vw, 5.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
  overflow: hidden;
  color: var(--cream-light);
  background: var(--burgundy);
}

.shop-panel-art {
  position: absolute;
  inset: -10rem -3rem auto auto;
  width: 31rem;
  height: 31rem;
  opacity: 0.18;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.shop-panel-art::before,
.shop-panel-art::after {
  content: "";
  position: absolute;
  inset: 3rem;
  border: 1px solid var(--gold-light);
}

.shop-panel-art::after {
  inset: 7rem;
}

.shop-panel-copy,
.shop-panel-actions {
  position: relative;
  z-index: 1;
}

.shop-panel h2 {
  max-width: 760px;
  color: var(--cream-light);
}

.shop-panel-copy > p:last-child {
  max-width: 740px;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.shop-panel-actions {
  display: grid;
  gap: 1.25rem;
}

.button-light {
  color: var(--teal-deep);
  background: var(--cream-light);
  border-color: var(--cream-light);
}

.button-light:hover {
  color: var(--cream-light);
  background: transparent;
}

.secondary-shop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.3rem;
}

.secondary-shop-links a {
  color: var(--cream-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  width: min(100% - 3rem, 1380px);
  margin: 0 auto;
  padding: 3rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--teal-deep);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.12rem 0.8rem;
  line-height: 1;
}

.footer-diamond {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.09em;
}

.footer-brand span:last-child {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--burgundy);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4.5rem clamp(2rem, 6vw, 5rem);
    background: var(--paper);
  }

  .hero::before {
    background: radial-gradient(circle at 50% 78%, rgba(180, 139, 67, 0.12), transparent 28rem);
  }

  .hero-copy {
    max-width: 800px;
    text-align: center;
    justify-self: center;
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    width: min(100%, 780px);
    justify-self: center;
  }

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

  .story blockquote {
    grid-column: 2;
  }

  .shop-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-panel-actions {
    max-width: 420px;
  }

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

}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .story,
  .shop-panel,
  .site-footer {
    width: min(100% - 1.5rem, 1380px);
  }

  .approach {
    width: min(100% - 1.5rem, 1240px);
  }

  .site-header {
    padding: 1rem 0;
  }

  .wordmark-mark {
    width: 2.25rem;
  }

  .wordmark-copy strong {
    font-size: 0.88rem;
  }

  .wordmark-copy small {
    font-size: 0.48rem;
  }

  .site-nav a:not(.nav-shop) {
    display: none;
  }

  .nav-shop {
    padding: 0.58rem 0.74rem;
    font-size: 0.67rem;
  }

  .hero {
    min-height: 0;
    margin-top: 0.75rem;
    padding: 4.5rem 1.5rem 3rem;
    gap: 2rem;
  }

  .hero-frame {
    inset: 0.55rem;
  }

  .hero-frame::before {
    inset: 0.35rem;
  }

  .hero-frame::after {
    inset: 0.72rem;
  }

  .hero-corner {
    width: 32px;
    height: 32px;
  }

  .hero-corner::before {
    width: 32px;
  }

  .hero-corner::after {
    height: 32px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

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

  .hero-actions {
    display: grid;
    justify-items: center;
  }

  .button-primary {
    width: min(100%, 320px);
  }

  .approach {
    padding: 6rem 0;
  }

  .section-heading h2,
  .story h2,
  .shop-panel h2 {
    font-size: clamp(2.5rem, 12vw, 4.1rem);
  }

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

  .promise-card {
    min-height: 0;
    padding: 2.4rem 1rem 2.6rem;
  }

  .promise-card + .promise-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .promise-card h3 {
    margin-top: 1.8rem;
  }

  .story {
    padding: 4.2rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-decoration {
    display: none;
  }

  .story blockquote {
    grid-column: auto;
    padding-left: 1.4rem;
  }

  .shop-panel {
    padding: 3.4rem 1.5rem;
  }

  .button-light {
    width: 100%;
  }

  .secondary-shop-links {
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    text-align: left;
  }

  .footer-links {
    justify-content: center;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .shop-panel,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .hero,
  .story {
    box-shadow: none;
  }
}
