:root {
  --bg: #f7f4ed;
  --bg-soft: #fcfbf7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #1f241f;
  --muted: #626d62;
  --line: rgba(47, 78, 47, 0.1);
  --green: #6c8b53;
  --green-deep: #31482e;
  --gold: #c8a66a;
  --shadow: 0 24px 60px rgba(40, 54, 35, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 229, 188, 0.6), transparent 28%),
    radial-gradient(circle at bottom right, rgba(232, 216, 191, 0.5), transparent 20%),
    linear-gradient(180deg, #f9f7f1 0%, #f5f1e8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
}

body::before {
  top: 160px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(149, 179, 110, 0.16);
}

body::after {
  bottom: 100px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(224, 192, 142, 0.14);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 24px auto;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  box-shadow: 0 30px 90px rgba(41, 46, 37, 0.12);
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='rgba(105,139,83,0.05)' stroke-width='1'%3E%3Cpath d='M58 185c26-34 74-57 112-50'/%3E%3Cpath d='M88 205c16-52 48-92 98-114'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 6px 28px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.logo-frame {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 240, 230, 0.95));
  box-shadow: inset 0 0 0 1px rgba(52, 72, 45, 0.08);
}

.logo-frame img,
.logo-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.logo-frame img {
  object-fit: contain;
  padding: 7px;
  mix-blend-mode: multiply;
  transform: scale(0.94);
  transform-origin: center;
}

.logo-fallback {
  padding: 8px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-fallback svg {
  width: 34px;
  height: 34px;
  fill: rgba(108, 139, 83, 0.14);
  stroke: var(--green-deep);
  stroke-width: 1.3;
  stroke-linejoin: round;
}

.logo-frame.is-fallback img {
  opacity: 0;
}

.logo-frame.is-fallback .logo-fallback {
  opacity: 1;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.site-nav a,
.footer-links a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-deep);
  background: rgba(108, 139, 83, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(71, 98, 61, 0.08);
}

main {
  display: grid;
  gap: 42px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 32px 8px 8px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3,
blockquote {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 8ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.lead,
.story-copy p,
.app-showcase-copy p,
.feature-card p,
.collection-card p,
.standard-row p,
.contact-card p,
.quote-panel p,
.copyright,
.floating-stat p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.hero-copy .lead {
  max-width: 58ch;
  margin: 22px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  box-shadow: 0 18px 28px rgba(57, 86, 48, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 22px 34px rgba(57, 86, 48, 0.28);
}

.button.secondary {
  color: var(--green-deep);
  border: 1px solid rgba(78, 102, 68, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(108, 139, 83, 0.08);
  border-color: rgba(78, 102, 68, 0.3);
}

.hero-points,
.feature-grid,
.collection-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card,
.feature-card,
.collection-card,
.standard-row,
.quote-panel,
.floating-stat {
  background: var(--surface);
  border: 1px solid rgba(101, 121, 90, 0.1);
  backdrop-filter: blur(12px);
}

.mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.mini-card span,
.collection-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(108, 139, 83, 0.12);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  padding: 10px 0 24px 36px;
}

.hero-image-wrap,
.story-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-image-wrap {
  background: #eef2e5;
}

.hero-image-wrap img,
.story-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.floating-stat {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(320px, 85%);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(42, 59, 37, 0.12);
}

.stat-label {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.story-section,
.standards-layout,
.section-heading.split {
  display: grid;
  gap: 28px;
}

.story-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: 18px 8px 4px;
}

.story-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: end;
}

.story-copy p {
  margin: 18px 0 0;
}

.app-section,
.contact-section {
  padding: 16px 8px 6px;
}

.app-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px 32px;
  align-items: center;
  max-width: none;
  padding: 22px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(249, 246, 238, 0.9));
  border: 1px solid rgba(101, 121, 90, 0.08);
  box-shadow: 0 18px 36px rgba(49, 72, 46, 0.06);
}

.app-heading-main h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.app-heading-side {
  align-self: center;
  max-width: 38ch;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.app-heading-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: 26px;
  border-radius: 30px;
}

.app-showcase-visual {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(206, 229, 191, 0.5), transparent 28%),
    linear-gradient(180deg, #f5f2e9, #fcfbf7);
  min-height: 380px;
}

.app-showcase-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-showcase-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: start;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-badge img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(52, 72, 45, 0.12);
}

.app-badge strong {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 2rem;
  line-height: 1;
}

.app-intro {
  margin: 0;
  font-size: 1rem;
}

.app-store {
  width: fit-content;
  gap: 12px;
  padding: 12px 20px;
  margin-top: 6px;
  align-self: start;
  color: #fff;
  background: linear-gradient(135deg, #111111, #2d2d2d);
  box-shadow: 0 20px 32px rgba(18, 18, 18, 0.18);
}

.app-store:hover,
.app-store:focus-visible {
  box-shadow: 0 24px 40px rgba(18, 18, 18, 0.24);
}

.app-store-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.app-store-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.app-store-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.app-store span {
  display: grid;
  line-height: 1.05;
}

.app-store small {
  font-size: 0.72rem;
  opacity: 0.82;
}

.app-store strong {
  font-size: 1rem;
}

.story-image.secondary {
  transform: translateY(34px);
}

.section-heading {
  max-width: 720px;
  padding: 8px 8px 0;
}

.section-heading > p:last-child {
  margin: 16px 0 0;
}

.expertise-section,
.collection-section,
.standards-section {
  padding: 16px 8px 6px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-card,
.collection-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.collection-media,
.standards-showcase-image {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 22px;
  background: #eef2e7;
}

.collection-media img,
.standards-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-media {
  height: 210px;
}

.collection-media.small {
  height: 180px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(108, 139, 83, 0.18), rgba(108, 139, 83, 0.1));
}

.icon-circle svg {
  width: 34px;
  height: 34px;
  fill: #4f6f4c;
}

.section-heading.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.standards-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  margin-top: 24px;
  align-items: start;
}

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

.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  margin: 0;
}

.standards-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-top: 24px;
  border-radius: 28px;
}

.standards-showcase-image {
  margin-bottom: 0;
  height: 280px;
}

.standards-showcase-copy h3 {
  margin-bottom: 12px;
}

.standards-showcase-copy p:last-child {
  margin: 0;
}

.standards-list {
  display: grid;
  gap: 16px;
}

.standard-row,
.quote-panel {
  padding: 24px 26px;
  border-radius: var(--radius-lg);
}

.standard-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.quote-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 247, 239, 0.95)),
    rgba(255, 255, 255, 0.9);
}

blockquote {
  margin: 6px 0 18px;
  font-size: 2.2rem;
  line-height: 1.05;
  color: var(--green-deep);
}

.card-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.card-lift:hover,
.card-lift:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(44, 60, 38, 0.16);
  border-color: rgba(95, 126, 77, 0.22);
}

.site-footer {
  padding: 28px 8px 12px;
  margin-top: 20px;
  border-top: 1px solid rgba(96, 120, 85, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247, 244, 235, 0.95), rgba(242, 237, 226, 0.98));
  box-shadow: inset 0 0 0 1px rgba(96, 120, 85, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero,
  .story-section,
  .section-heading.split,
  .standards-layout,
  .standards-showcase,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .collection-grid,
  .hero-points,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    padding-left: 0;
  }

  .floating-stat {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .story-visuals {
    grid-template-columns: 1fr 1fr;
  }

  .story-image.secondary {
    transform: none;
  }

  .app-heading {
    gap: 18px;
    padding: 20px 22px;
  }

  .app-heading-main h2 {
    max-width: none;
  }

  .app-heading-side {
    max-width: none;
  }

  .app-showcase-visual {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--content-width));
    margin: 10px auto;
    padding: 16px;
    border-radius: 24px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 18px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a,
  .footer-links a {
    padding: 8px 12px;
  }

  h1 {
    max-width: none;
  }

  .hero {
    gap: 24px;
    padding-top: 18px;
  }

  .feature-card,
  .collection-card,
  .mini-card,
  .standard-row,
  .quote-panel,
  .floating-stat {
    padding: 22px;
  }

  .story-visuals {
    grid-template-columns: 1fr;
  }

  .app-heading-side {
    padding: 0;
    border-radius: 0;
  }

  .collection-media,
  .collection-media.small,
  .standards-showcase-image,
  .app-showcase-visual {
    height: 220px;
  }

  .standards-showcase,
  .app-showcase {
    padding: 22px;
  }

  .app-badge {
    align-items: flex-start;
  }

  .app-badge strong {
    font-size: 1.7rem;
  }

  blockquote {
    font-size: 1.8rem;
  }
}

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

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