:root {
  --green-900: #173f2a;
  --green-800: #1f5a3a;
  --green-100: #dcebdd;
  --orange-600: #f27a21;
  --orange-500: #ff9234;
  --cream-100: #fff6e7;
  --cream-200: #f8e6c7;
  --white: #ffffff;
  --ink: #1a221d;
  --muted: #637067;
  --line: rgba(23, 63, 42, 0.14);
  --shadow: 0 20px 48px rgba(23, 63, 42, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 146, 52, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--cream-100) 0%, #fffaf1 48%, var(--white) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 122, 33, 0.74);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 63, 42, 0.08);
  background: rgba(255, 246, 231, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--cream-100) 0 18%, transparent 19%),
    conic-gradient(
      from 8deg,
      var(--orange-500) 0 24deg,
      #ffd18a 24deg 42deg,
      var(--orange-500) 42deg 68deg,
      #ffd18a 68deg 88deg,
      var(--orange-500) 88deg 115deg,
      #ffd18a 115deg 136deg,
      var(--orange-500) 136deg 164deg,
      #ffd18a 164deg 184deg,
      var(--orange-500) 184deg 212deg,
      #ffd18a 212deg 232deg,
      var(--orange-500) 232deg 260deg,
      #ffd18a 260deg 280deg,
      var(--orange-500) 280deg 310deg,
      #ffd18a 310deg 330deg,
      var(--orange-500) 330deg 360deg
    );
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.68);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(31, 90, 58, 0.08);
}

.hero {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  align-items: center;
  gap: 1.8rem;
  overflow: hidden;
}

.hero-content,
.hero-media,
.section,
.order-section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--green-900);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 13vw, 5.2rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 9vw, 3.6rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.tagline {
  max-width: 34rem;
  margin-bottom: 0.7rem;
  color: var(--orange-600);
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  font-weight: 900;
  line-height: 1.25;
}

.hero-copy,
.section-heading p,
.order-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy {
  display: none;
  max-width: 40rem;
  margin-bottom: 1.55rem;
}

.hero-actions {
  display: grid;
  max-width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-actions .button-secondary {
  grid-column: 1 / -1;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.76rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(23, 63, 42, 0.24);
}

.button-primary:hover {
  background: #20553a;
}

.button-secondary {
  border-color: rgba(23, 63, 42, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-900);
}

.button-outline {
  border-color: rgba(23, 63, 42, 0.22);
  color: var(--green-900);
}

.photo-frame {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 231, 0.7)),
    radial-gradient(circle at 70% 24%, rgba(255, 146, 52, 0.22), transparent 15rem);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease;
}

.photo-frame.is-missing img {
  opacity: 0;
}

.photo-frame:not(.is-missing) .image-placeholder {
  display: none;
}

.photo-frame-hero {
  min-height: clamp(250px, 58vw, 620px);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.placeholder-bottle {
  position: relative;
  width: min(44%, 190px);
  height: 72%;
  border-radius: 38px 38px 28px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 32%),
    linear-gradient(180deg, #ffc46f 0 46%, var(--orange-600) 47% 100%);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.38),
    0 30px 42px rgba(23, 63, 42, 0.18);
}

.placeholder-bottle::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 50%;
  width: 46%;
  height: 70px;
  border-radius: 18px 18px 10px 10px;
  background: var(--green-800);
  transform: translateX(-50%);
}

.placeholder-bottle::after {
  content: "KIT IU";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 45%;
  display: grid;
  min-height: 82px;
  place-items: center;
  border-radius: 18px;
  background: var(--cream-100);
  color: var(--green-900);
  font-weight: 950;
  letter-spacing: 0;
}

.placeholder-citrus {
  width: min(42vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--cream-100) 0 16%, transparent 17%),
    conic-gradient(
      var(--orange-500) 0 28deg,
      #ffd18a 28deg 45deg,
      var(--orange-500) 45deg 88deg,
      #ffd18a 88deg 105deg,
      var(--orange-500) 105deg 148deg,
      #ffd18a 148deg 165deg,
      var(--orange-500) 165deg 208deg,
      #ffd18a 208deg 225deg,
      var(--orange-500) 225deg 268deg,
      #ffd18a 268deg 285deg,
      var(--orange-500) 285deg 328deg,
      #ffd18a 328deg 345deg,
      var(--orange-500) 345deg
    );
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.58);
}

.placeholder-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(23, 63, 42, 0.9);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-media figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.citrus-orbit {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  animation: citrusFloat 9s ease-in-out infinite;
}

.citrus-orbit-one {
  width: 112px;
  height: 112px;
  right: 3%;
  top: 7%;
  background:
    radial-gradient(circle at 50% 50%, var(--cream-100) 0 16%, transparent 17%),
    conic-gradient(var(--orange-500), #ffd18a, var(--orange-500), #ffd18a, var(--orange-500));
}

.citrus-orbit-two {
  width: 68px;
  height: 68px;
  left: 5%;
  bottom: 6%;
  background: var(--green-100);
  animation-delay: -4s;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 1.8rem;
}

.intro-section,
.serving-section {
  border-radius: var(--radius-lg);
}

.intro-grid {
  display: grid;
  gap: 1rem;
}

.product-card,
.highlight-list,
.order-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(23, 63, 42, 0.08);
}

.product-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.3rem;
}

.card-label {
  margin-bottom: 0.25rem;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.credential-row span {
  border: 1px solid rgba(31, 90, 58, 0.16);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: rgba(220, 235, 221, 0.62);
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 850;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  background: var(--cream-100);
  color: var(--muted);
}

.price-row strong {
  color: var(--orange-600);
  font-size: 1.1rem;
}

.highlight-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1.1rem;
  list-style: none;
}

.highlight-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 0.85rem 0.9rem 0.85rem 2.7rem;
  background: linear-gradient(90deg, rgba(220, 235, 221, 0.9), rgba(255, 255, 255, 0.58));
  color: var(--green-900);
  font-weight: 750;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(242, 122, 33, 0.15);
}

.story-section {
  padding-top: 5rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1.2rem 4.8rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(23, 63, 42, 0.07);
  color: var(--muted);
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.serving-grid {
  display: grid;
  gap: 1rem;
}

.serving-item {
  display: grid;
  gap: 1rem;
  min-height: 160px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 231, 0.92)),
    radial-gradient(circle at top right, rgba(255, 146, 52, 0.22), transparent 10rem);
}

.serving-item span {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--cream-100) 0 14%, transparent 15%),
    conic-gradient(var(--orange-500), #ffd18a, var(--orange-500), #ffd18a, var(--orange-500));
}

.serving-item h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  min-width: 0;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 14px 34px rgba(23, 63, 42, 0.09);
}

.gallery-item-wide {
  aspect-ratio: 3 / 1;
  min-height: 120px;
}

.gallery-item-contain img {
  padding: 0.55rem;
  background: var(--white);
  object-fit: contain;
}

.order-section {
  width: var(--container);
  margin: 1rem auto 4.5rem;
  display: grid;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 146, 52, 0.28), transparent 16rem),
    linear-gradient(135deg, var(--green-900), #245a3d);
  color: var(--white);
  overflow: hidden;
}

.order-section h2,
.order-section .eyebrow {
  color: var(--white);
}

.order-section .eyebrow {
  opacity: 0.84;
}

.order-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.location {
  margin-bottom: 0;
  font-weight: 800;
}

.order-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.order-panel .button {
  width: 100%;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 6rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--green-900);
}

.site-footer p {
  margin-bottom: 0.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.floating-socials {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: grid;
  gap: 0.55rem;
}

.floating-socials a {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(23, 63, 42, 0.28);
  font-weight: 950;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.floating-socials a:first-child {
  background: linear-gradient(135deg, var(--orange-600), var(--green-900));
}

.floating-socials a:hover {
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes citrusFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.76fr);
    padding: 3.5rem 0;
  }

  .hero-copy {
    display: block;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
    gap: 0.85rem;
  }

  .hero-actions .button-secondary {
    grid-column: auto;
  }

  .button {
    padding: 0.82rem 1.15rem;
    font-size: 1rem;
  }

  .intro-grid,
  .order-section {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
  }

  .serving-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

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

  .site-footer {
    grid-template-columns: 1.15fr 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5.8rem 0;
  }

  .product-card,
  .highlight-list,
  .order-panel {
    padding: 1.55rem;
  }

  .order-section {
    padding: 2rem;
  }
}
