:root {
  --bg: #f7f2ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #19362a;
  --text-soft: #4c5b54;
  --primary: #0e4d3a;
  --primary-2: #1d6b55;
  --accent: #c77b33;
  --accent-soft: #efd8bf;
  --border: rgba(25, 54, 42, 0.1);
  --shadow: 0 18px 50px rgba(17, 47, 34, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 123, 51, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(29, 107, 85, 0.10), transparent 24%),
    linear-gradient(180deg, #fcf8f2 0%, #f4ede2 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.hero-copy,
.hero-card,
.card,
.info-box {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 3rem;
}

.hero-card {
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(199, 123, 51, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--text);
  max-width: 62ch;
}

.status-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 77, 58, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li + li {
  margin-top: 0.35rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 77, 58, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--border);
}

.button-full {
  width: 100%;
}

.section {
  margin-top: 1.7rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.two-columns,
.contact-grid,
.launch-grid {
  display: grid;
  gap: 1.25rem;
}

.two-columns {
  grid-template-columns: 1fr 1fr;
}

.launch-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.card,
.info-box {
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card.warm {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.74)),
    linear-gradient(135deg, rgba(239,216,191,0.9), rgba(255,255,255,0.45));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(25, 54, 42, 0.16);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(29, 107, 85, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.consent-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  background: rgba(14, 77, 58, 0.05);
  border-radius: 16px;
}

.consent-box input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
}

.privacy-card p {
  margin: 0.75rem 0;
  color: var(--text-soft);
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.4rem 0 0.4rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-note {
  text-align: right;
}

@media (max-width: 980px) {
  .hero,
  .two-columns,
  .launch-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(var(--max), calc(100% - 1rem));
  }

  .hero-copy,
  .hero-card,
  .card,
  .info-box {
    padding: 1.25rem;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .nav {
    gap: 0.75rem;
  }
}