:root {
  --navy: #1b2a4a;
  --gold: #c9a84c;
  --cream: #fbf7f0;
  --warm-white: #fffdf8;
  --text: #2c2416;
  --text-dim: #6b5e4a;
  --whatsapp: #0a8f5a;
  --whatsapp-dark: #076843;
  --border: rgba(201, 168, 76, 0.22);
  --shadow: 0 28px 70px rgba(27, 42, 74, 0.12);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-enter-duration: 700ms;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--cream);
  color: var(--text);
  font-family: "Inter", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.34;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 10002;
  padding: 10px 12px;
  background: var(--navy);
  color: var(--warm-white);
  transform: translateY(-150%);
}

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

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--warm-white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-thread {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.8s var(--motion-ease-soft);
}

#preloader.active .preloader-thread {
  width: 80px;
}

.preloader-initial {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.6s 0.25s ease;
}

#preloader.active .preloader-initial {
  opacity: 1;
}

/* --- Navbar --- */
/* Outer: full-width, handles scroll glass effect */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition:
    transform 0.6s var(--motion-ease-soft),
    background 0.3s ease,
    border-color 0.3s ease;
}

.site-nav.visible {
  transform: translateY(0);
}

.site-nav.scrolled {
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Inner: contained width, centers content */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 48px;
  transition: padding 0.3s ease;
}

.site-nav.scrolled .nav-inner {
  padding: 16px 48px;
}

/* Centered brand name */
.nav-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

.site-nav.scrolled .nav-brand {
  font-size: 22px;
}

/* Nav link groups (left and right of brand) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  position: relative;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* WhatsApp CTA button */
.nav-links--right .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 2px;
  background: var(--navy);
  color: var(--cream);
}

.nav-links--right .nav-cta::after {
  display: none;
}

.nav-links--right .nav-cta:hover {
  background: var(--whatsapp);
  color: #ffffff;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 108px 48px 96px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 55%;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0), rgba(251, 247, 240, 0.12)),
    url("./assets/wm-photo-hero.png") center / cover no-repeat;
  filter: sepia(8%) saturate(0.98);
  opacity: 0.92;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(251, 247, 240, 0.08) 0%, rgba(251, 247, 240, 0.58) 50%, var(--cream) 100%);
}

.hero-ornament {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  opacity: 0.08;
  transform: translateX(-50%);
  animation: ornamentFloat 8s ease-in-out infinite;
}

.hero-ornament span {
  display: block;
  width: 30px;
  border-radius: 2px;
  background: var(--navy);
}

.hero-ornament span:nth-child(1) {
  height: 300px;
}

.hero-ornament span:nth-child(2) {
  height: 240px;
}

.hero-ornament span:nth-child(3) {
  height: 190px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
  opacity: 0.78;
}

.hero-est,
.scroll-hint,
.footer-meta,
.contact-note {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-est {
  margin-bottom: 24px;
  color: var(--gold);
  animation: fadeIn 1s 0.2s both;
}

.hero h1 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  animation: fadeIn 1s 0.45s both;
}

.hero-tagline {
  max-width: 580px;
  margin: 28px auto 0;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeIn 1s 0.7s both;
}

.hero-divider {
  width: 1px;
  height: 40px;
  margin: 32px auto 0;
  background: var(--gold);
  animation: fadeIn 1s 0.9s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  animation: fadeIn 1s 1s both;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.button-primary {
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 143, 90, 0.2);
}

.button-primary:hover {
  background: var(--whatsapp-dark);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.68);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: var(--warm-white);
}

.offer-terms {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
  animation: fadeIn 1s 1.1s both;
}

.offer-terms--secondary {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.75;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 1;
  color: var(--text-dim);
  transform: translateX(-50%);
  animation: scrollFadeIn 1s 1.2s both;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 380px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.photo-band-item {
  position: relative;
  background-position: center;
  background-size: cover;
  filter: sepia(8%) saturate(0.98);
  transition: filter 0.6s ease;
}

.photo-band-item:hover {
  filter: sepia(0%) saturate(1.06);
}

.photo-band-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 42, 74, 0.36) 0%, transparent 54%);
}

.photo-band-premium {
  background-image: url("./assets/wm-photo-premium-first-impression.png");
}

.photo-band-mobile {
  background-image: url("./assets/wm-photo-mobile-trust.png");
}

.photo-band-contact {
  background-image: url("./assets/wm-photo-clear-enquiry.png");
}

.photo-band-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: var(--warm-white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 1px;
}

section {
  position: relative;
  padding: 100px 48px;
}

section:nth-of-type(even) {
  background: var(--warm-white);
}

#contact {
  background: var(--warm-white);
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.section-h2 {
  margin-bottom: 44px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.story-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px 188px;
  align-items: center;
  gap: 34px;
}

.story-text p {
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.9;
}

.story-text em {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
}

.story-text strong {
  color: var(--text);
  font-weight: 700;
}

.story-visual,
.process-visual,
.contact-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 151, 83, 0.34);
  border-radius: 2px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 56px rgba(38, 29, 19, 0.12);
}

.story-visual {
  min-height: 360px;
  background-image: url("./assets/ron-leandro.jpg");
  border-radius: 6px;
  filter: sepia(12%) saturate(0.94);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(27, 42, 74, 0.04));
  pointer-events: none;
}

.story-visual-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 2px;
  background: rgba(27, 42, 74, 0.62);
  color: var(--cream);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 1px;
  white-space: nowrap;
}

.story-stamp {
  width: 160px;
  height: 160px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 50%;
  text-align: center;
  opacity: 0.78;
}

.story-stamp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/wm-photo-clear-enquiry.png") center / cover no-repeat;
  filter: sepia(16%) saturate(0.86);
  opacity: 0.11;
}

.stamp-year {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.stamp-label {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.story-stamp p {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 11px;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  position: relative;
  padding: 48px 28px;
  text-align: center;
}

.value-card::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 auto 20px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.value-card:hover::before {
  width: 60px;
}

.value-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  margin-bottom: 24px;
}

.value-icon span {
  display: block;
  width: 5px;
  border-radius: 1px;
  background: var(--gold);
  transition: transform 0.4s ease;
}

.value-icon span:nth-child(1) {
  height: 36px;
}

.value-icon span:nth-child(2) {
  height: 26px;
}

.value-icon span:nth-child(3) {
  height: 18px;
}

.value-card:hover .value-icon span:nth-child(1) {
  transform: scaleY(1.2);
}

.value-card:hover .value-icon span:nth-child(2) {
  transform: scaleY(1.15);
}

.value-card:hover .value-icon span:nth-child(3) {
  transform: scaleY(1.1);
}

.value-card h3,
.product-card h3,
.process-list h3,
.contact-info h3 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.value-card p,
.product-card p,
.process-list p,
.contact-info p,
.contact-alt {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
}

.value-card p {
  margin-top: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 48px 36px;
  background: var(--warm-white);
  text-align: center;
  transition: background 0.3s ease;
}

.product-card:hover {
  background: var(--cream);
}

.product-card-thumb {
  height: 128px;
  margin-bottom: 20px;
  border-radius: 2px;
  background-position: top center;
  background-size: cover;
  filter: sepia(6%) saturate(0.98);
  opacity: 0.92;
  transition:
    filter 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease;
}

.product-card:hover .product-card-thumb {
  filter: sepia(0%) saturate(1.05);
  opacity: 1;
  transform: translateY(-2px);
}

.product-visual-one {
  background-image: url("./assets/wm-photo-service-design.png");
}

.product-visual-two {
  background-image: url("./assets/wm-photo-service-copy.png");
}

.product-visual-three {
  background-image: url("./assets/wm-photo-service-responsive.png");
}

.product-visual-four {
  background-image: url("./assets/wm-photo-service-launch.png");
}

.product-stitch {
  width: 40px;
  height: 1px;
  position: relative;
  margin: 0 auto 20px;
  background: var(--gold);
}

.product-stitch::before,
.product-stitch::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.product-stitch::before {
  left: -16px;
}

.product-stitch::after {
  right: -16px;
}

.product-card p {
  margin-top: 10px;
}

/* — Tiers — */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tier-card {
  position: relative;
  overflow: hidden;
  padding: 48px 36px;
  background: var(--warm-white);
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.08);
}

.tier-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
}

.tier-name {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.tier-price {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
}

.tier-price small {
  display: block;
  color: var(--text-dim);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.tier-features li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--navy);
  border-radius: 100px;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tier-cta:hover {
  background: var(--navy);
  color: var(--cream);
}

/* — Add-Ons — */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.addon-card {
  position: relative;
  padding: 32px 36px;
  background: var(--warm-white);
  text-align: center;
  transition: background 0.3s ease;
}

.addon-card:hover {
  background: var(--cream);
}

.addon-ornament {
  width: 24px;
  height: 1px;
  margin: 0 auto 14px;
  background: var(--gold);
}

.addon-card h4 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.addon-price {
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.addon-card p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.addon-scarcity {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: stretch;
}

.process-visual {
  min-height: 100%;
  background-image: url("./assets/wm-photo-process.png");
}

.process-list {
  display: grid;
  gap: 1px;
  list-style: none;
  background: var(--border);
}

.process-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 32px;
  background: var(--warm-white);
}

.process-list span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.process-list p {
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-info strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.contact-note {
  margin-top: 24px;
  color: var(--gold) !important;
  line-height: 1.7 !important;
}

.consultation-offer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.contact-card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--cream);
}

.contact-visual {
  min-height: 250px;
  margin-bottom: 28px;
  background-image: url("./assets/wm-photo-contact.png");
}

.contact-primary {
  width: 100%;
}

.contact-alt {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0.7;
}

.contact-alt a {
  color: var(--text-dim);
  font-weight: 500;
}

.contact-alt span {
  display: inline-block;
  margin: 0 4px;
  color: rgba(107, 94, 74, 0.3);
}

footer {
  position: relative;
  overflow: hidden;
  padding: 80px 48px 48px;
  background: var(--navy);
  color: var(--cream);
  text-align: center;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/wm-photo-hero.png") center / cover no-repeat;
  filter: sepia(26%) saturate(0.86);
  opacity: 0.07;
}

.footer-pillars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.footer-pillars span {
  display: block;
  width: 5px;
  border-radius: 1px;
  background: var(--gold);
}

.footer-pillars span:nth-child(1) {
  height: 36px;
}

.footer-pillars span:nth-child(2) {
  height: 26px;
}

.footer-pillars span:nth-child(3) {
  height: 18px;
}

.footer-name {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 4px;
}

.footer-name small {
  display: block;
  margin-top: 6px;
  color: var(--cream);
  font-family: "Inter", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.footer-meta {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--motion-enter-duration) var(--motion-ease-soft),
    transform var(--motion-enter-duration) var(--motion-ease-soft);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.qa-g1-panel {
  position: fixed;
  top: 78px;
  right: 10px;
  z-index: 995;
  max-width: min(82vw, 300px);
  display: grid;
  gap: 6px;
}

.qa-g1-badge,
.qa-g1-reset,
.qa-g1-export {
  border: 1px solid rgba(7, 104, 67, 0.24);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a4f3b;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: 0 12px 24px rgba(17, 19, 15, 0.12);
}

.qa-g1-badge {
  padding: 8px 10px;
}

.qa-g1-reset,
.qa-g1-export {
  min-height: 34px;
  padding: 0 10px;
  cursor: pointer;
}

.qa-g1-reset {
  background: rgba(255, 255, 255, 0.92);
}

.qa-g1-export {
  background: rgba(244, 251, 247, 0.94);
}

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

@keyframes scrollFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes ornamentFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@media (max-width: 920px) {
  .nav-inner {
    padding: 20px 20px;
  }

  .site-nav.scrolled .nav-inner {
    padding: 14px 20px;
  }

  .nav-brand {
    font-size: 22px;
  }

  .site-nav.scrolled .nav-brand {
    font-size: 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links--left a {
    display: none;
  }

  .nav-links--right .nav-cta {
    min-height: 48px;
    padding: 0 18px;
  }

  section,
  .hero {
    padding: 76px 20px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.09;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, var(--cream) 0%, transparent 40%, transparent 60%, var(--cream) 100%);
  }

  .hero h1 {
    font-size: 40px;
  }

    .hero-est,
  .scroll-hint {
    letter-spacing: 3px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .button {
    width: 100%;
  }

  .photo-band {
    grid-template-columns: 1fr;
    height: auto;
  }

  .photo-band-item {
    min-height: 220px;
  }

  .story-body,
  .values-row,
  .products-grid,
  .tiers-grid,
  .addons-grid,
  .process-grid,
  .process-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-stamp {
    margin: 0 auto;
  }

  .process-visual {
    min-height: 240px;
  }

  .process-list li {
    grid-template-columns: 64px 1fr;
    padding: 28px 22px;
  }

  .contact-card {
    padding: 28px 22px;
  }
}

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

  .nav-brand {
    font-size: 20px;
  }

  .site-nav.scrolled .nav-brand {
    font-size: 16px;
  }

  .nav-links--right .nav-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 36px;
  }

    .hero-est,
  .scroll-hint {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .offer-terms {
    font-size: 12px;
  }

  .offer-terms--secondary {
    font-size: 11px;
  }

  .section-h2 {
    font-size: 30px;
  }

  .values-row {
    gap: 12px;
  }

  .value-card {
    padding: 34px 18px;
  }

  .product-card {
    padding: 36px 22px;
  }

  .tier-card {
    padding: 36px 22px;
  }

  .addon-card {
    padding: 28px 22px;
  }

  .contact-alt span {
    margin: 0 4px;
  }

  footer {
    padding: 64px 20px 40px;
  }
}

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

  .button:hover,
  .reveal {
    transform: none !important;
  }
}
