@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f6f2e9;
  --paper: #fffdf8;
  --ink: #1f2a33;
  --muted: #5f6872;
  --accent: #0b7a75;
  --accent-2: #e67e4d;
  --line: #d8d3c6;
  --shadow: 0 14px 40px rgba(16, 36, 43, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 8% 10%, rgba(230, 126, 77, 0.22), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(11, 122, 117, 0.2), transparent 35%);
}

a {
  color: inherit;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

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

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent), #0f9b95);
  color: #fff;
  font-weight: 800;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.4rem 0.7rem;
  font: inherit;
}

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

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a[aria-current='page'] {
  color: var(--ink);
  border-color: var(--accent);
}

.hero {
  padding: 5.5rem 0 3.4rem;
}

.hero-panel {
  background: var(--paper);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 2vw + 1rem, 3rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 36% 64% 58% 42% / 34% 46% 54% 66%;
  background: linear-gradient(140deg, rgba(230, 126, 77, 0.36), rgba(11, 122, 117, 0.24));
  z-index: 0;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.hero-copy {
  min-width: 0;
}

.hero-media {
  margin: 0;
  border: 1px solid #ddd5c4;
  border-radius: 16px;
  padding: 0.55rem;
  background: linear-gradient(150deg, #f9f4e8, #f1eadb);
  box-shadow: 0 8px 22px rgba(23, 43, 52, 0.08);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #fff;
}

.hero-urgency {
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #1f2a33;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: 'Fraunces', serif;
}

h1 {
  font-size: clamp(2rem, 2.6vw + 1rem, 3.5rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-sub {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #12948e);
  color: #fff;
  box-shadow: 0 8px 22px rgba(11, 122, 117, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section {
  padding: 3.4rem 0;
}

.section-top {
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: clamp(1.6rem, 1.4vw + 1rem, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-copy {
  color: var(--muted);
  max-width: 64ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card-grid > * {
  min-width: 0;
}

.card {
  grid-column: span 12;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', serif;
}

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

.card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.savings-grid {
  align-items: start;
}

.savings-figure {
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(11, 122, 117, 0.08), transparent 34%),
    linear-gradient(180deg, #f7f1e6 0%, #f2ebdd 100%);
}

.savings-figure img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.savings-figure picture {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e4dcc9;
  box-shadow: 0 8px 22px rgba(23, 43, 52, 0.08);
  background: #fff;
}

.savings-figure picture img {
  min-width: 0;
}

@media (min-width: 901px) {
  .savings-grid {
    align-items: stretch;
  }

  .savings-grid > .card {
    height: 100%;
  }

  .savings-figure picture {
    height: 100%;
    min-height: 340px;
  }
}

.span-6 {
  grid-column: span 6;
}

.span-4 {
  grid-column: span 4;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  font-family: 'Fraunces', serif;
  margin-bottom: 0.2rem;
}

.callout {
  background: linear-gradient(130deg, #0f5f6f, #1c8f7a);
  color: #eff8f7;
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.3rem, 1.1vw + 1rem, 2.2rem);
  box-shadow: var(--shadow);
}

.callout .section-copy {
  color: rgba(239, 248, 247, 0.85);
}

.quote-line {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 1.6vw + 1rem, 2rem);
  margin: 0;
}

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

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-weight: 600;
  color: var(--muted);
}

.form-status[data-state='success'] {
  color: #0f7a59;
}

.form-status[data-state='error'] {
  color: #a43d2f;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
  color: var(--muted);
  margin-top: 2.4rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .span-6,
  .span-4 {
    grid-column: span 12;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 4vw;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 4.2rem;
  }
}
