:root {
  --teal: #579380;
  --tangerine: #b7632e;
  --gold: #d2ad64;
  --cream: #efd79f;
  --sand: #c1b6a1;
  --paper: #f9f2ef;
  --ink: #2b2a28;
  --white: #ffffff;
  --sky: #d9efe7;
  --berry: #8a4462;
  --shadow-soft: 0 16px 34px rgba(40, 34, 24, 0.14);
  --shadow-deep: 0 26px 52px rgba(40, 34, 24, 0.2);
  --ease-snappy: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 215, 159, 0.65), transparent 45%),
    radial-gradient(circle at 70% 10%, rgba(87, 147, 128, 0.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(210, 173, 100, 0.35), transparent 50%),
    linear-gradient(160deg, #fffaf2 0%, var(--paper) 55%, #f5ece6 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-snappy), opacity var(--ease-snappy);
}

.page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.page::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(87, 147, 128, 0.24), transparent 72%);
  top: -130px;
  right: -120px;
  animation: swirl 16s linear infinite;
}

.page::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 50% 50%, rgba(183, 99, 46, 0.2), transparent 74%);
  bottom: -180px;
  left: -150px;
  animation: swirl 20s linear infinite reverse;
}

.hero {
  padding: 64px 24px 48px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.96), rgba(249, 242, 239, 0.9));
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 40px;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
  opacity: 0.7;
}

.hero-inner::before {
  width: 240px;
  height: 240px;
  background: rgba(87, 147, 128, 0.18);
  top: -70px;
  right: 10%;
}

.hero-inner::after {
  width: 190px;
  height: 190px;
  background: rgba(183, 99, 46, 0.18);
  bottom: -40px;
  left: 10%;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(87, 147, 128, 0.15);
  border: 1px solid rgba(87, 147, 128, 0.24);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(138, 68, 98, 0.12);
  color: #6f304f;
  border: 1px dashed rgba(138, 68, 98, 0.28);
  font-size: 0.86rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  text-wrap: balance;
}

.slogan {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 600;
  color: var(--tangerine);
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform var(--ease-snappy), box-shadow var(--ease-snappy), background var(--ease-snappy);
}

.btn-primary {
  background: linear-gradient(135deg, #4f8775, #5da28c);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(87, 147, 128, 0.3);
}

.btn-secondary {
  background: rgba(255, 248, 234, 0.85);
  color: var(--ink);
  border-color: rgba(183, 99, 46, 0.25);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible,
input[type="email"]:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(87, 147, 128, 0.55);
  outline-offset: 3px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-logo {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 30px rgba(87, 147, 128, 0.25));
  animation: float 6s ease-in-out infinite;
}

.hero-sticker {
  position: absolute;
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(210, 173, 100, 0.55);
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.01em;
}

.hero-sticker-top {
  top: 3%;
  left: 6%;
  transform: rotate(-9deg);
  animation: bob-left 4.5s ease-in-out infinite;
}

.hero-sticker-bottom {
  bottom: 6%;
  right: 6%;
  transform: rotate(8deg);
  animation: bob-right 4.5s ease-in-out infinite 1.1s;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 3px solid rgba(210, 173, 100, 0.25);
  background: var(--white);
  transition: transform var(--ease-snappy), box-shadow var(--ease-snappy), border-color var(--ease-snappy);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image:hover {
  transform: translateY(-4px) rotate(-0.6deg);
  border-color: rgba(183, 99, 46, 0.35);
  box-shadow: 0 30px 54px rgba(33, 28, 20, 0.22);
}

.feature-image-wide {
  margin-top: 24px;
}

.feature-image-compact {
  max-width: 420px;
  margin: 24px auto 0;
}

.about-split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  margin-top: 16px;
}

.glass-tile {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(4px);
}

.split-callout {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.section {
  padding: 48px 24px;
  position: relative;
  animation: revealUp 0.8s var(--ease-snappy) both;
}

.section:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section:nth-of-type(3) {
  animation-delay: 0.2s;
}

.section:nth-of-type(4) {
  animation-delay: 0.3s;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  margin-top: -6px;
  background: linear-gradient(90deg, rgba(210, 173, 100, 0.5), rgba(183, 99, 46, 0.2));
  border-radius: 999px;
}

.story-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 28px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 245, 0.96));
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(210, 173, 100, 0.25);
  transition: transform var(--ease-snappy), box-shadow var(--ease-snappy), border-color var(--ease-snappy);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(87, 147, 128, 0.42);
  box-shadow: 0 24px 42px rgba(44, 35, 20, 0.17);
}

.card h3 {
  margin-bottom: 12px;
}

.callout {
  background: linear-gradient(140deg, rgba(87, 147, 128, 0.2), rgba(239, 215, 159, 0.55));
  padding: 24px;
  border-radius: 24px;
  margin: 28px 0;
  border: 1px solid rgba(87, 147, 128, 0.16);
  box-shadow: var(--shadow-soft);
}

.newsletter-followup {
  margin-top: 32px;
}

.list {
  display: grid;
  gap: 14px;
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  background: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  border-left: 6px solid var(--tangerine);
  box-shadow: 0 12px 26px rgba(44, 35, 20, 0.1);
  transition: transform var(--ease-snappy), border-color var(--ease-snappy), box-shadow var(--ease-snappy);
}

.list li:hover {
  transform: translateX(4px);
  border-left-color: var(--teal);
  box-shadow: 0 16px 28px rgba(44, 35, 20, 0.13);
}

.newsletter {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.75);
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(87, 147, 128, 0.16);
  box-shadow: 0 12px 26px rgba(44, 35, 20, 0.1);
}

input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 2px solid rgba(87, 147, 128, 0.3);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

input[type="email"]::placeholder {
  color: rgba(43, 42, 40, 0.62);
}

#newsletter a {
  color: #6f304f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#newsletter a:hover {
  color: #56263c;
}

footer {
  padding: 32px 24px 48px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(43, 42, 40, 0.8);
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(210, 173, 100, 0.35) 0 6px, transparent 7px),
    radial-gradient(circle at 82% 14%, rgba(183, 99, 46, 0.22) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 72%, rgba(87, 147, 128, 0.25) 0 10px, transparent 11px),
    radial-gradient(circle at 20% 78%, rgba(239, 215, 159, 0.5) 0 8px, transparent 9px);
  opacity: 0.55;
  z-index: 0;
  animation: sparkleShift 14s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bob-left {
  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }
  50% {
    transform: translateY(-6px) rotate(-12deg);
  }
}

@keyframes bob-right {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-6px) rotate(11deg);
  }
}

@keyframes sparkleShift {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swirl {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .hero-sticker {
    font-size: 0.74rem;
  }

  .hero-sticker-top {
    left: 2%;
  }

  .hero-sticker-bottom {
    right: 1%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 48px;
  }

  .hero-inner {
    padding: 28px;
    border-radius: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo {
    max-width: 360px;
  }

  .hero-sticker {
    position: static;
    margin-bottom: 10px;
    transform: none;
    animation: none;
  }

  .hero-visual {
    justify-items: start;
  }

  .section {
    padding: 40px 20px;
  }

  .list li:hover,
  .card:hover,
  .feature-image:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
