:root {
  --paper: #f8f2df;
  --paper-deep: #f2e7c7;
  --ink: #3d2f20;
  --muted: #75644b;
  --gold: #f2bb28;
  --gold-deep: #d89211;
  --sunflower: #f4c93a;
  --sunflower-light: #ffe08a;
  --brown: #6a4526;
  --sage: #8da56b;
  --sage-deep: #6f8651;
  --white: #fffdf7;
  --border: rgba(61, 47, 32, 0.14);
  --shadow: 0 20px 60px rgba(82, 59, 24, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 163, 0.35), transparent 28%),
    radial-gradient(circle at right center, rgba(169, 190, 120, 0.16), transparent 25%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  padding: 8px 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--brown), #4f381f);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(248, 242, 223, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--brown);
  background:
    radial-gradient(circle, var(--sunflower-light) 0 28%, transparent 29%),
    radial-gradient(circle, var(--gold) 0 70%, transparent 71%),
    var(--gold);
  border: 3px solid rgba(255,255,255,0.65);
  box-shadow: 0 6px 18px rgba(61, 47, 32, 0.12);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--gold-deep); }

.nav-cta {
  padding: 10px 18px;
  color: var(--brown);
  background: var(--sunflower-light);
  border: 1px solid rgba(106, 69, 38, 0.08);
  border-radius: 999px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--brown);
  background: var(--gold);
}

.menu-button {
  display: none;
  padding: 9px 13px;
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
}

.hero, .section, .site-footer {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: 670px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 50px;
  padding: 72px 0 92px;
}

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

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  letter-spacing: -0.045em;
}

h3 { line-height: 1.2; }

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-deep);
  color: white;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 253, 247, 0.76);
}

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

.button-dark:hover,
.button-dark:focus-visible { background: #4a2f17; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.88rem;
}

.hero-points li::before {
  content: "✦";
  margin-right: 7px;
  color: var(--gold-deep);
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.sunflower-stage {
  position: relative;
  min-height: 560px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 224, 138, 0.48), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0)),
    #f4ead1;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sunflower {
  position: absolute;
}

.sunflower-large { left: 10%; top: 8%; width: 270px; height: 420px; }
.sunflower-small { right: 10%; top: 22%; width: 210px; height: 330px; }

.petals {
  position: absolute;
  left: 50%;
  top: 0;
  width: 170px;
  height: 170px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(0,0,0,0.06) 34% 35%, transparent 35%),
    repeating-conic-gradient(
      from 0deg,
      var(--sunflower-light) 0deg 8deg,
      var(--gold) 8deg 18deg,
      transparent 18deg 30deg
    );
  filter: drop-shadow(0 12px 18px rgba(82, 59, 24, 0.18));
}

.sunflower-small .petals {
  width: 135px;
  height: 135px;
}

.center {
  position: absolute;
  left: 50%;
  top: 47px;
  width: 82px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #8f6036 0 18%, #6c4526 19% 45%, #523319 46% 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 231, 184, 0.1);
}

.sunflower-small .center {
  top: 37px;
  width: 66px;
  height: 66px;
}

.stem {
  position: absolute;
  left: 50%;
  top: 156px;
  width: 14px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sage), var(--sage-deep));
}

.sunflower-small .stem {
  top: 124px;
  height: 170px;
}

.leaf {
  position: absolute;
  display: block;
  width: 80px;
  height: 42px;
  background: linear-gradient(90deg, #99b574, var(--sage-deep));
  border-radius: 80% 0 80% 0;
}

.leaf-one {
  left: 44%;
  top: 220px;
  transform: rotate(32deg);
}

.leaf-two {
  left: 17%;
  top: 276px;
  transform: rotate(-22deg) scaleX(-1);
}

.sunflower-small .leaf {
  width: 64px;
  height: 34px;
}

.sunflower-small .leaf-one { top: 178px; left: 45%; }
.sunflower-small .leaf-two { top: 224px; left: 15%; }

.hero-note {
  position: absolute;
  right: 7%;
  bottom: 7%;
  padding: 22px 24px;
  color: white;
  background: rgba(90, 59, 30, 0.92);
  border-radius: 24px 24px 24px 8px;
  box-shadow: 0 18px 40px rgba(72, 52, 39, 0.18);
}

.hero-note strong,
.hero-note small { display: block; }

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-note small {
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spark {
  position: absolute;
  z-index: 3;
  color: var(--gold-deep);
  font-size: 2.2rem;
}
.spark-one { top: 7%; right: 9%; }
.spark-two { left: 7%; bottom: 8%; }

.section { padding: 100px 0; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
}

.section-heading.compact { margin-bottom: 28px; }

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

.category-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(72, 52, 39, 0.05);
}

.category-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--brown);
  background: linear-gradient(180deg, var(--sunflower-light), var(--gold));
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
}

.category-number {
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.category-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.category-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.coming-soon-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 6vw, 58px);
  background: linear-gradient(135deg, #fffdf6, #f5e8bc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coming-soon-copy p:last-of-type {
  max-width: 650px;
  color: var(--muted);
}

.coming-soon-mark {
  display: grid;
  min-height: 260px;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(255, 224, 138, 0.75) 0 32%, rgba(242, 187, 40, 0.95) 33% 55%, transparent 56%),
    radial-gradient(circle at center, rgba(92, 61, 33, 0.98) 0 16%, transparent 17%);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.coming-soon-mark::before,
.coming-soon-mark::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px dashed rgba(90, 59, 30, 0.16);
}

.coming-soon-mark span,
.coming-soon-mark small {
  position: relative;
  z-index: 2;
  display: block;
}

.coming-soon-mark span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.coming-soon-mark small {
  color: var(--brown);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.custom-section {
  width: min(calc(100% - 36px), 1240px);
}

.custom-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: clamp(35px, 7vw, 78px);
  color: white;
  background: linear-gradient(135deg, #6a4526, #8a5f2a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.custom-card .eyebrow { color: #ffe5a6; }
.custom-card p { color: rgba(255, 255, 255, 0.84); }

.custom-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.custom-form label {
  font-size: 0.83rem;
  font-weight: 760;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  outline: none;
}

.custom-form input:focus,
.custom-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.custom-form textarea { resize: vertical; }
.full-field { grid-column: 1 / -1; }

.form-note {
  margin: -7px 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(45px, 9vw, 110px);
}

.story-art {
  position: relative;
  min-height: 540px;
  background:
    radial-gradient(circle at 60% 18%, rgba(255, 228, 150, 0.55), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0)),
    #efe3be;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-sunflower {
  position: absolute;
  border-radius: 50%;
}

.story-sunflower-big {
  width: 220px;
  height: 220px;
  left: 10%;
  top: 8%;
}

.story-sunflower-small {
  width: 165px;
  height: 165px;
  right: 14%;
  top: 24%;
}

.story-petals {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(0,0,0,0.05) 34% 35%, transparent 35%),
    repeating-conic-gradient(
      from 0deg,
      var(--sunflower-light) 0deg 8deg,
      var(--gold) 8deg 18deg,
      transparent 18deg 30deg
    );
}

.story-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8f6036 0 18%, #6c4526 19% 45%, #523319 46% 100%);
}

.story-label {
  position: absolute;
  left: 12%;
  bottom: 10%;
  max-width: 290px;
  padding: 22px;
  color: white;
  background: rgba(90, 59, 30, 0.92);
  border-radius: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.07;
  box-shadow: 0 18px 36px rgba(72, 52, 39, 0.15);
}

.story-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.03rem;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-deep);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.info-section { border-top: 1px solid var(--border); }

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

.info-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.info-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 40px;
  color: var(--brown);
  background: var(--sunflower-light);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
}

.info-grid h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.info-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  padding-bottom: 120px;
  text-align: center;
}

.final-cta h2 {
  max-width: 800px;
  margin-inline: auto;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 700;
}

.copyright { grid-column: 1 / -1; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 18px;
  color: white;
  background: var(--brown);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 87px 18px auto;
    display: none;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: grid; }

  .site-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }

  .hero,
  .split-section,
  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 50px; }
  .hero-art { min-height: 510px; }

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

  .custom-card { grid-template-columns: 1fr; }

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

@media (max-width: 620px) {
  .announcement { font-size: 0.72rem; }
  .brand small { display: none; }

  .hero {
    min-height: auto;
    padding-bottom: 55px;
  }

  h1 { font-size: clamp(3.1rem, 16vw, 5rem); }

  .hero-art { min-height: 420px; }
  .sunflower-stage { min-height: 420px; }

  .sunflower-large {
    left: 5%;
    top: 9%;
    width: 195px;
    height: 305px;
  }

  .sunflower-small {
    right: 4%;
    top: 26%;
    width: 150px;
    height: 240px;
  }

  .sunflower-large .petals {
    width: 125px;
    height: 125px;
  }

  .sunflower-large .center {
    top: 34px;
    width: 61px;
    height: 61px;
  }

  .sunflower-large .stem {
    top: 113px;
    height: 152px;
  }

  .sunflower-large .leaf {
    width: 54px;
    height: 28px;
  }

  .sunflower-large .leaf-one { top: 160px; }
  .sunflower-large .leaf-two { top: 198px; }

  .sunflower-small .petals {
    width: 100px;
    height: 100px;
  }

  .sunflower-small .center {
    top: 28px;
    width: 50px;
    height: 50px;
  }

  .sunflower-small .stem {
    top: 90px;
    height: 118px;
  }

  .sunflower-small .leaf {
    width: 46px;
    height: 24px;
  }

  .sunflower-small .leaf-one { top: 130px; }
  .sunflower-small .leaf-two { top: 162px; }

  .hero-note {
    right: 6%;
    bottom: 5%;
    left: 6%;
  }

  .section { padding: 72px 0; }
  .section-heading { display: block; }

  .category-grid,
  .info-grid,
  .custom-form {
    grid-template-columns: 1fr;
  }

  .coming-soon-mark { min-height: 190px; }

  .full-field { grid-column: auto; }

  .custom-card {
    gap: 30px;
    padding: 32px 23px;
    border-radius: 23px;
  }

  .story-art { min-height: 420px; }

  .story-sunflower-big {
    width: 150px;
    height: 150px;
  }

  .story-sunflower-small {
    width: 120px;
    height: 120px;
  }

  .story-label {
    left: 8%;
    right: 8%;
    bottom: 8%;
    max-width: none;
    font-size: 1.22rem;
  }

  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}

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

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
