:root {
  --cream: #fffaf6;
  --cream-deep: #f7efe8;
  --ink: #1c1410;
  --ink-soft: #64534b;
  --rose: #c45c6a;
  --rose-deep: #963f51;
  --gold: #c4925a;
  --plum: #7a4e8c;
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 10%, rgba(196, 92, 106, .18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 5%, rgba(196, 146, 90, .16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(122, 78, 140, .10), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(90, 122, 102, .08), transparent 50%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100% - 2rem, 768px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 3rem 0 5rem;
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 400px);
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 2.5rem 0 0;
  padding: .4rem .78rem;
  border: 1px solid rgba(196, 92, 106, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 24px rgba(77, 46, 38, .07);
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span { font-size: 1rem; line-height: 0; }

h1 {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.intro {
  max-width: 600px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
}

.story-card {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  overflow: hidden;
  padding: 2.15rem 2.25rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 52px rgba(77, 46, 38, .12), 0 3px 10px rgba(77, 46, 38, .04);
  text-align: left;
  backdrop-filter: blur(14px);
}

.story-card > *:not(.card-glow) { position: relative; z-index: 1; }

.card-glow {
  position: absolute;
  z-index: 0;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  filter: blur(2rem);
  pointer-events: none;
}

.card-glow-rose { top: -2rem; right: -2rem; background: rgba(196, 92, 106, .15); }
.card-glow-gold { bottom: -2.5rem; left: -1.5rem; background: rgba(196, 146, 90, .22); }

.card-kicker {
  margin: 0;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-card p:not(.card-kicker) {
  margin: 1rem 0 0;
  color: #665650;
  font-size: .97rem;
  line-height: 1.75;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: .45rem .85rem;
  border: 1px solid rgba(71, 53, 45, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 4px 12px rgba(77, 46, 38, .045);
  color: #4f413a;
  font-size: .875rem;
  font-weight: 600;
}

.enquiries {
  max-width: 440px;
  margin-top: 3rem;
}

.enquiries h2 {
  margin: 0;
  color: #3b2c25;
  font-size: .95rem;
  font-weight: 700;
}

.enquiries p {
  margin: .55rem 0 0;
  color: #806f67;
  font-size: .9rem;
  line-height: 1.7;
}

.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  margin-top: 1.25rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 10px 28px rgba(150, 63, 81, .22);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.email-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 32px rgba(150, 63, 81, .28);
}

.email-button:focus-visible {
  outline: 3px solid rgba(196, 92, 106, .35);
  outline-offset: 3px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3.5rem);
  pointer-events: none;
}

.orb-rose { top: 6rem; left: -7rem; width: 14rem; height: 14rem; background: rgba(196, 92, 106, .13); }
.orb-gold { top: 2rem; right: -5rem; width: 12rem; height: 12rem; background: rgba(196, 146, 90, .16); }
.orb-plum { right: 20%; bottom: 5rem; width: 10rem; height: 10rem; background: rgba(122, 78, 140, .10); }

@media (max-width: 600px) {
  .hero { width: min(100% - 2rem, 768px); padding-top: 2.25rem; }
  .logo { width: min(100%, 320px); }
  .eyebrow { margin-top: 2rem; }
  .wide-break { display: none; }
  .story-card { padding: 1.6rem 1.35rem 1.65rem; }
  .story-card p:not(.card-kicker) { font-size: .92rem; }
  .enquiries { margin-top: 2.5rem; }
  .email-button { max-width: 100%; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .email-button { transition: none; }
}
