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

:root {
  --ink: #1a332b;
  --ink-soft: #3d5a4f;
  --muted: #5c746a;
  --sage: #7a9a86;
  --sage-soft: #c5d6cb;
  --leaf: #2f5a45;
  --mist: #eef4f0;
  --linen: #f6f8f5;
  --paper: #fbfcfa;
  --line: rgba(47, 90, 69, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(197, 214, 203, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at -10% 20%, rgba(238, 244, 240, 0.9), transparent 50%),
    var(--paper);
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

a {
  color: var(--leaf);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 250, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  animation: fade-down 0.7s ease both;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 1.35rem;
  flex: 1;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--leaf);
}

.btn {
  display: inline-block;
  padding: 0.72rem 1.35rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--leaf);
  color: #fff;
}

.btn-primary:hover {
  background: #244836;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--leaf);
  border-color: var(--sage);
}

.btn-secondary:hover {
  background: rgba(122, 154, 134, 0.12);
}

/* Hero: compact centered brand mark */
.hero {
  padding: 3rem 0 3.5rem;
}

.hero-visual {
  width: 100%;
  margin: 0 0 1.75rem;
  text-align: center;
  animation: fade-in 0.9s ease both;
}

.hero-brand {
  display: block;
  width: min(420px, 85vw);
  height: auto;
  margin: 0 auto;
  border-radius: 0.5rem;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-copy {
  text-align: center;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 2rem;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(238, 244, 240, 0.85), rgba(238, 244, 240, 0.4));
  border-block: 1px solid var(--line);
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
  display: grid;
  gap: 0.85rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sage);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 2.5rem;
}

.feature-item {
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.feature-item h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--leaf);
}

.feature-item ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.feature-item li {
  margin-bottom: 0.4rem;
}

.feature-item li:last-child {
  margin-bottom: 0;
}

.sample-group-title {
  margin: 2rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--leaf);
}

.sample-group-title:first-of-type {
  margin-top: 0.25rem;
}

.sample-feature {
  margin: 0 0 2rem;
}

.sample-feature img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.sample-feature-portrait img {
  max-width: 420px;
  margin-inline: auto;
}

.sample-feature figcaption {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 1rem 0.9rem;
}

.sample-card {
  margin: 0;
  text-align: center;
}

.sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sample-card figcaption {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem 2.5rem;
}

.who-card {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.who-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--leaf);
}

.who-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--ink-soft);
}

.contact-list a {
  font-weight: 500;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.cta-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(122, 154, 134, 0.35), transparent 55%),
    linear-gradient(160deg, #1e3d32 0%, #2f5a45 100%);
  color: #f4f7f5;
  border: none;
}

.cta-inner {
  text-align: center;
}

.cta-section h2 {
  color: #f4f7f5;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: rgba(244, 247, 245, 0.85);
  margin: 0 0 1.5rem;
}

.cta-section p a {
  color: #f4f7f5;
  font-weight: 500;
}

.cta-section .btn-primary {
  background: #f4f7f5;
  color: var(--leaf);
}

.cta-section .btn-primary:hover {
  background: #fff;
  color: #1e3d32;
}

.cta-section .btn-secondary {
  color: #f4f7f5;
  border-color: rgba(244, 247, 245, 0.55);
}

.cta-section .btn-secondary:hover {
  background: rgba(244, 247, 245, 0.1);
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.75rem;
}

.pricing-table {
  width: 100%;
  max-width: 44rem;
  border-collapse: collapse;
  background: rgba(251, 252, 250, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: visible;
}

.pricing-table th,
.pricing-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  white-space: nowrap;
  width: 1%;
}

.pricing-table th {
  background: rgba(197, 214, 203, 0.35);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 1px solid var(--line);
}

.pricing-col-check {
  width: 2.5rem;
  text-align: center;
  padding-left: 0.75rem;
  padding-right: 0.35rem;
}

.pricing-col-check input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--leaf);
  cursor: pointer;
}

.pricing-table label {
  cursor: pointer;
}

.pricing-easel-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
}

.pricing-easel-qty {
  flex: 0 0 auto;
  padding: 0.3rem 0.45rem;
  border: 1px solid var(--sage-soft);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--paper);
  color: var(--ink);
}

.pricing-easel-qty:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pricing-price-nowrap {
  white-space: nowrap !important;
}

.pricing-total-row td {
  border-bottom: none;
  background: rgba(197, 214, 203, 0.28);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pricing-total-row strong {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--linen);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--leaf);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-header,
  .hero-visual,
  .hero-brand,
  .hero-copy,
  .btn {
    animation: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 1rem;
    padding-bottom: 0.35rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
    text-align: left;
  }

  .hero h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section {
    padding: 3rem 0;
  }
}
