:root {
  --green-950: #153327;
  --green-800: #234c3a;
  --green-700: #2f604a;
  --gold-600: #b78635;
  --gold-300: #e2c99d;
  --cream-100: #f7f1e6;
  --cream-50: #fcfaf6;
  --ink: #25231f;
  --muted: #665f55;
  --line: #ded4c4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(21, 51, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 0 0 10px 10px;
  background: var(--green-950);
  color: var(--white);
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 212, 196, 0.8);
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-950);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  color: var(--gold-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.6rem 0.72rem;
  border-radius: 999px;
  color: var(--green-950);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--cream-100);
  color: var(--green-700);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  background: var(--green-800);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--green-950);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.lead {
  max-width: 61ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 8vw, 7rem);
}

.hero-copy .lead {
  margin: 1.4rem 0 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--green-950);
}

.button.secondary {
  background: transparent;
  color: var(--green-950);
}

.button.secondary:hover {
  background: var(--cream-100);
}

.hero-art,
.product-visual {
  position: relative;
}

.hero-art::before {
  position: absolute;
  inset: 7% -4% -5% 8%;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--gold-300);
  content: "";
  opacity: 0.58;
}

.hero-art img,
.product-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.poster-visual img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #1d160e;
}

.photo-note {
  position: absolute;
  right: -1rem;
  bottom: 1.2rem;
  width: min(280px, 78%);
  padding: 0.9rem 1rem;
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-sm);
  background: rgba(252, 250, 246, 0.96);
  box-shadow: 0 12px 26px rgba(21, 51, 39, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.photo-note strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--green-950);
}

.trust-strip {
  display: grid;
  margin: 0 0 5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.trust-item {
  padding: 1.25rem 1.4rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.trust-item span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section.tinted {
  background: var(--cream-100);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading p {
  max-width: 49ch;
  margin: 0;
  color: var(--muted);
}

.product-grid,
.proof-grid,
.steps-grid,
.image-plan-grid {
  display: grid;
  gap: 1rem;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 51, 39, 0.05);
}

.product-card:nth-child(2) {
  background: var(--green-800);
  color: var(--white);
}

.product-card:nth-child(2) h3,
.product-card:nth-child(2) .price,
.product-card:nth-child(2) a {
  color: var(--white);
}

.product-card:nth-child(2) p,
.product-card:nth-child(2) .micro-label {
  color: var(--gold-300);
}

.micro-label {
  color: var(--gold-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

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

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

.gallery-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid-one {
  max-width: 720px;
  grid-template-columns: 1fr;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 51, 39, 0.06);
}

.gallery-card img {
  width: 100%;
  height: clamp(260px, 34vw, 440px);
  object-fit: cover;
  object-position: center;
}

.gallery-card figcaption {
  display: grid;
  padding: 1rem 1.15rem 1.15rem;
  gap: 0.2rem;
}

.gallery-card figcaption strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.gallery-card figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  margin: 1.4rem 0 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-card {
  padding: 1.5rem;
  border-top: 3px solid var(--gold-600);
  background: var(--white);
}

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

.page-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
}

.feature-list {
  display: grid;
  margin: 1.6rem 0 0;
  padding: 0;
  gap: 0.65rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-600);
  content: "";
}

.price-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.price-row strong {
  color: var(--green-950);
}

.price-row span {
  flex: 0 0 auto;
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.steps-grid {
  counter-reset: steps;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--green-800);
  color: var(--white);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  color: var(--gold-300);
  content: counter(steps);
  font-weight: 800;
}

.step-card h3 {
  color: var(--white);
}

.step-card p {
  color: #e3ede8;
}

.image-plan-grid {
  grid-template-columns: repeat(3, 1fr);
}

.image-plan-card {
  padding: 1.35rem;
  border: 1px dashed var(--gold-600);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.image-plan-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-plan-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 850px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

summary {
  padding: 1rem 1.2rem;
  color: var(--green-950);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: var(--radius-lg);
  background: var(--green-800);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: #dce8e2;
}

.cta-band .button {
  border-color: var(--gold-300);
  background: var(--gold-300);
  color: var(--green-950);
}

.order-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.order-form {
  display: grid;
  padding: clamp(1.25rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #bfb5a6;
  border-radius: 10px;
  background: var(--cream-50);
  color: var(--ink);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.privacy-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold-600);
  background: var(--cream-100);
  color: var(--muted);
  font-size: 0.9rem;
}

.order-output {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-md);
  background: var(--cream-100);
}

.order-output.visible {
  display: block;
}

.order-output pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.order-output .button-row {
  margin-top: 1rem;
}

.mini-panel {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--cream-100);
}

.mini-panel + .mini-panel {
  margin-top: 1rem;
}

.mini-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  background: var(--green-950);
  color: #dce8e2;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-block: 3.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.7rem;
}

.site-footer h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: #c7d6cf;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  text-decoration: none;
}

.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb5aa;
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 930px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

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

  .site-nav .nav-cta {
    margin: 0.3rem 0 0;
    text-align: center;
  }

  .hero,
  .page-hero,
  .order-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-art,
  .product-visual {
    max-width: 700px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .proof-grid,
  .steps-grid,
  .image-plan-grid,
  .gallery-grid-three {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .brand-text span {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .photo-note {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

  .trust-strip,
  .product-grid,
  .proof-grid,
  .steps-grid,
  .image-plan-grid,
  .gallery-grid-three,
  .gallery-grid-two,
  .form-row,
  .footer-inner,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 1rem;
  }

  .product-card {
    min-height: 285px;
  }

  .gallery-card img {
    height: auto;
    max-height: 520px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .button {
    width: 100%;
  }
}

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

.form-embed-card {
  overflow: hidden;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.google-form {
  display: block;
  width: 100%;
  min-height: 1500px;
  border: 0;
  background: #fff;
}

.form-fallback {
  margin: 0;
  padding: 0.85rem 1rem 0.35rem;
  text-align: center;
  font-size: 0.95rem;
}
