@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: block;
}

:root {
  --bg: #fbf8f2;
  --bg-warm: #f5eee1;
  --ink: #1c2328;
  --muted: #5d6063;
  --gold: #d6a24a;
  --gold-deep: #ba8730;
  --line: rgba(214, 162, 74, 0.45);
  --shadow: 0 24px 60px rgba(40, 28, 10, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 18%, rgba(214, 162, 74, 0.13), transparent 22%),
    radial-gradient(circle at 80% 26%, rgba(214, 162, 74, 0.11), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(214, 162, 74, 0.09), transparent 26%),
    radial-gradient(circle at 15% 78%, rgba(214, 162, 74, 0.08), transparent 22%),
    radial-gradient(circle at 84% 80%, rgba(214, 162, 74, 0.09), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 44%, #fffefc 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

img,
svg {
  display: block;
}

.page-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.site-header {
  width: 100%;
  padding: 2rem 0 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.9rem;
  color: #2d3134;
}

.top-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after,
.top-nav a.active::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--line);
}

.insta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-deep);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.insta-link:hover,
.insta-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(214, 162, 74, 0.08);
}

.hero,
.story-hero,
.form-hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3.5rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.narrow-stack {
  width: min(760px, 100%);
}

.hero-logo {
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0 auto 1.2rem;
}

.sunburst {
  width: clamp(13rem, 29vw, 19rem);
  height: auto;
  margin: 0 auto 0.7rem;
  color: var(--gold);
  display: block;
  filter: drop-shadow(0 0 10px rgba(214, 162, 74, 0.14));
}

.hero-logo .brand-sub {
  margin-bottom: 0;
}

.kicker {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: var(--gold-deep);
}

.hero-kicker {
  font-size: 1.75rem;
}

.brand-mark {
  margin: 0 auto;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 6.5rem;
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-align: center;
}

.brand-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  margin: 0.4rem auto 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  line-height: 0.9;
  text-align: center;
}

.brand-sub::before,
.brand-sub::after {
  content: "";
  width: clamp(3.5rem, 18vw, 10rem);
  height: 1px;
  background: var(--line);
}

.tagline {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Cinzel", serif;
  font-size: clamp(0.82rem, 1.8vw, 1.1rem);
  color: var(--gold-deep);
}

.hero-title,
.section-title {
  margin-top: 1.4rem;
  font-size: clamp(2.7rem, 6vw, 2.7rem);
  line-height: 0.95;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.accent-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.6rem 0;
}

.accent-rule::before,
.accent-rule::after {
  content: "";
  width: clamp(3.5rem, 16vw, 7rem);
  height: 1px;
  background: var(--line);
}

.accent-rule span {
  color: var(--gold);
  font-size: 1.2rem;
}

.lead,
.copy,
.story-copy p {
  margin: 0;
  font-size: clamp(1.28rem, 2.3vw, 1.7rem);
  line-height: 1.25;
}

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

.hero-note {
  margin: 0 auto 2rem;
  width: min(560px, 100%);
  font-size: clamp(1.38rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  color: #45484c;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  min-height: 3.7rem;
  padding: 0.95rem 1.5rem;
  border-radius: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button {
  color: #1f2023;
  background: linear-gradient(135deg, #c89132 0%, #dfb154 48%, #c89132 100%);
  box-shadow: var(--shadow);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(40, 28, 10, 0.12);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: #f9eed9;
}

.home-grid,
.story-grid,
.form-grid {
  display: grid;
  gap: 2rem;
}

.home-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 5rem;
}

.story-grid,
.form-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
  padding-bottom: 5rem;
}

.card,
.panel,
.form-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(214, 162, 74, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.card h2,
.panel h2,
.form-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
}

.card p,
.panel p,
.form-card p,
.story-copy p + p {
  margin-top: 1rem;
}

.card p,
.panel p,
.form-card p,
.story-copy p {
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.4;
}

.note {
  margin-top: 1rem;
  color: #6c5a35;
  font-size: 1rem;
}

.story-copy {
  display: grid;
  gap: 1.25rem;
}

.story-quote {
  padding: 2rem;
  border-left: 1px solid var(--line);
  color: #3f4346;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.story-quote span {
  display: block;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
  color: var(--gold-deep);
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  color: #6c5a35;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(214, 162, 74, 0.28);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
  font-size: 1.1rem;
}

input:focus,
textarea:focus {
  outline: 1px solid rgba(214, 162, 74, 0.35);
  border-color: rgba(214, 162, 74, 0.55);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-tip {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

.site-footer {
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-handle,
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #2e3235;
  font-size: 1.2rem;
}

.top-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}

.top-insta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.footer-copy {
  color: #2e3235;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}

.footer-divider {
  width: 1px;
  height: 2rem;
  background: var(--line);
}

.ornament {
  color: var(--gold);
}

@media (max-width: 900px) {
  .home-grid,
  .story-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .story-quote {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1.5rem 0 0;
  }

  .top-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-divider {
    display: none;
  }

  .top-insta,
  .footer-copy {
    justify-content: center;
    text-align: center;
  }

  .brand-mark {
    font-size: 5.2rem;
  }

  .brand-sub {
    font-size: 3.6rem;
    letter-spacing: 0.24em;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 0.7rem;
  }

  .site-header {
    padding-top: 1.2rem;
  }

  .top-nav {
    gap: 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .top-insta {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .nav-divider {
    display: none;
  }

  .hero,
  .story-hero,
  .form-hero {
    padding: 2.1rem 0 2.8rem;
  }

  .sunburst {
    width: min(70vw, 15rem);
    margin-bottom: 0.5rem;
  }

  .brand-mark {
    font-size: clamp(3.4rem, 20vw, 5rem);
    letter-spacing: 0.12em;
  }

  .brand-sub {
    gap: 0.55rem;
    margin: 0.2rem auto 1rem;
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: 0.18em;
  }

  .brand-sub::before,
  .brand-sub::after {
    width: clamp(1.5rem, 16vw, 3.25rem);
  }

  .hero-kicker {
    font-size: clamp(0.95rem, 5vw, 1.2rem);
    letter-spacing: 0.14em;
    line-height: 1.35;
    max-width: 22rem;
  }

  .hero-title,
  .section-title {
    margin-top: 0.9rem;
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.05;
  }

  .accent-rule {
    gap: 0.5rem;
    margin: 1.1rem 0;
  }

  .accent-rule::before,
  .accent-rule::after {
    width: clamp(2rem, 16vw, 3.5rem);
  }

  .hero-note {
    width: min(100%, 22rem);
    margin-bottom: 1.5rem;
    font-size: clamp(1.05rem, 5vw, 1.3rem);
    line-height: 1.28;
  }

  .cta-row {
    width: 100%;
  }

  .button,
  .button-secondary {
    width: 100%;
    max-width: 22rem;
    min-height: 3.35rem;
    padding: 0.9rem 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .card,
  .panel,
  .form-card {
    padding: 1.45rem;
  }

  .card p,
  .panel p,
  .form-card p,
  .story-copy p {
    font-size: 1.15rem;
  }

  .footer-inner {
    gap: 0.9rem;
  }

  .footer-copy {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-inline: 0.5rem;
  }

  .hero,
  .story-hero,
  .form-hero {
    padding: 1.7rem 0 2.3rem;
  }

  .brand-mark {
    font-size: clamp(3rem, 19vw, 4.15rem);
    letter-spacing: 0.09em;
  }

  .brand-sub {
    font-size: clamp(1.7rem, 10.5vw, 2.35rem);
    letter-spacing: 0.14em;
  }

  .hero-kicker {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-note {
    font-size: 1rem;
  }

  .button,
  .button-secondary {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

