:root {
  --ink: #2a332f;
  --ink-soft: #3d4a44;
  --paper: #f4f1ea;
  --paper-deep: #e4ddd0;
  --line: rgba(42, 51, 47, 0.14);
  --accent: #5c6b52;
  --accent-hot: #b85c38;
  --sky: #6f8f9a;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 80% 50% at 0% 20%, rgba(184, 92, 56, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 40%, rgba(111, 143, 154, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(92, 107, 82, 0.16), transparent 55%),
    linear-gradient(165deg, #efe8da 0%, var(--paper) 40%, #dde6e4 100%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-cloud {
  width: auto;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 0.2rem;
}

.brand-name {
  font-family: "Libre Bodoni", "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-feature-settings: "liga" 0;
}

.header-cta {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--accent-hot);
  border-bottom-color: var(--accent-hot);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 32, 30, 0.45) 0%, rgba(42, 51, 47, 0.35) 40%, rgba(244, 241, 234, 0.82) 100%),
    linear-gradient(90deg, rgba(184, 92, 56, 0.18), transparent 45%, rgba(111, 143, 154, 0.22));
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 5rem) 1.5rem 3.5rem;
  text-align: center;
}

.hero-inner .reveal {
  opacity: 1;
  transform: none;
}

.hero h1,
.hero-lead {
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(26, 32, 30, 0.55);
}

.hero-lead {
  color: rgba(244, 241, 234, 0.92);
}

.hero-lockup {
  width: min(100%, 22rem);
  margin: 0 auto 1.5rem;
  border-radius: 0.35rem;
  filter: drop-shadow(0 12px 28px rgba(42, 51, 47, 0.28));
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 34rem;
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  background: rgba(244, 241, 234, 0.18);
  backdrop-filter: blur(4px);
  color: var(--paper);
  border-color: rgba(244, 241, 234, 0.7);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--paper);
  color: var(--paper);
  background: rgba(244, 241, 234, 0.28);
}

.hero .btn-primary {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #fff7f0;
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #9a4a2c;
  border-color: #9a4a2c;
}

.offers,
.audience,
.contact {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
}

.section-title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}

.offer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.offer:last-of-type {
  border-bottom: 1px solid var(--line);
}

.offer-with-pic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}

.offer-flip .offer-copy {
  order: 2;
}

.offer-flip .offer-pic {
  order: 1;
}

.offer-pic {
  margin: 0;
  overflow: hidden;
  border-radius: 0.15rem;
  box-shadow: 0 18px 40px rgba(42, 51, 47, 0.14);
}

.offer-pic img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-with-pic:hover .offer-pic img {
  transform: scale(1.03);
}

.offer-rung {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.offer h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.45rem;
}

.offer p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.offer-price {
  margin: 0 !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.audience-copy {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.contact-panel {
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 252, 246, 0.92), rgba(232, 238, 236, 0.88));
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(42, 51, 47, 0.08);
}

.contact-lead {
  margin: -1rem 0 1.75rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form .optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-ok {
  color: var(--accent);
}

.form-status.is-err {
  color: var(--accent-hot);
}

.site-footer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-lockup {
  width: 9.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 0.25rem;
}

.footer-meta,
.footer-copy {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer-copy {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary:hover,
  .btn-primary:focus-visible {
    transform: none;
  }

  .hero-media img {
    animation: none;
  }

  .offer-with-pic:hover .offer-pic img {
    transform: none;
  }
}

@media (max-width: 48rem) {
  .offer-with-pic,
  .offer-flip .offer-copy,
  .offer-flip .offer-pic {
    display: block;
  }

  .offer-flip .offer-pic {
    margin-bottom: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  .hero {
    min-height: auto;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
  }

  .contact-panel {
    padding: 1.35rem;
  }
}
