:root {
  --c1: #FF9A86;
  --c2: #FFB399;
  --c3: #FFD6A6;
  --c4: #FFF0BE;
  --text: #2d2926;
  --muted: #5c5652;
  --bg: #fffdf8;
  --white: #ffffff;
  --radius: 18px;
  --shadow-soft: 0 10px 22px rgba(45, 41, 38, 0.08);
  --shadow-hover: 0 14px 30px rgba(45, 41, 38, 0.12);
  --space-xs: 0.5rem;
  --space-s: 0.85rem;
  --space-m: 1.2rem;
  --space-l: 2rem;
  --space-xl: 3.5rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.section {
  padding: var(--space-xl) 0;
}

.note {
  color: var(--muted);
  font-size: .94rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(45, 41, 38, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.primary-nav {
  display: flex;
  gap: var(--space-l);
}

.primary-nav a {
  padding: .45rem 0;
  position: relative;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .1rem;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: width .25s ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform .28s ease, opacity .28s ease;
}

.hero {
  min-height: calc(100vh - 74px);
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  background: linear-gradient(145deg, var(--c4), var(--c2));
}

.hero-media {
  background: linear-gradient(150deg, #fff8ee, #fff3df);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .76rem;
  margin-bottom: var(--space-s);
  color: #544d49;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 var(--space-m);
}

h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-top: 0;
}

p {
  line-height: 1.6;
}

.section-title {
  margin-bottom: var(--space-l);
}

.btn {
  border-radius: 999px;
  padding: .76rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
}

.btn-solid {
  background: var(--c1);
  color: #1f1b18;
  box-shadow: 0 6px 14px rgba(255, 154, 134, .35);
}

.btn-solid:hover {
  transform: translateY(-2px);
  background: #ff8d75;
}

.btn-ghost {
  border-color: rgba(45, 41, 38, .28);
  background: rgba(255, 255, 255, .35);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .6);
}

.hero-actions {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

.trust-strip {
  padding-top: 2.1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-m);
}

.trust-grid article {
  background: #fff8ed;
  border: 1px solid rgba(45, 41, 38, .08);
  border-radius: var(--radius);
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-l);
}

.card,
.unique-block,
.interactive-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-l);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(45, 41, 38, .06);
}

.card:hover,
.interactive-box:hover,
.unique-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.timeline .steps,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-m);
}

.step {
  background: #fff8ef;
  border: 1px solid rgba(45, 41, 38, .09);
  border-radius: var(--radius);
  padding: var(--space-m);
  transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.step span {
  display: inline-block;
  margin-bottom: var(--space-s);
  font-size: .74rem;
  letter-spacing: .12em;
  color: #6b625c;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-s);
}

.plain-list i {
  margin-right: .5rem;
  color: #b66852;
}

.interactive-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-l);
  align-items: center;
  background: linear-gradient(120deg, #fff8ec, #fffef9);
}

.planner-widget {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(45, 41, 38, .08);
}

input[type="range"] {
  width: 100%;
  accent-color: #e9846d;
}

#sessionHint {
  margin-top: .7rem;
  font-size: .95rem;
  color: #5f5751;
}

.media-left {
  align-items: center;
}

.faq-accordion {
  display: grid;
  gap: .8rem;
}

.faq-row {
  border: 1px solid rgba(45, 41, 38, .12);
  border-radius: 14px;
  overflow: hidden;
  background: #fffefb;
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 600;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-row.open .faq-content {
  max-height: 160px;
}

.faq-row.open .faq-toggle i {
  transform: rotate(45deg);
}

.faq-toggle i {
  transition: transform .25s ease;
}

.image-band img {
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}

.site-footer {
  margin-top: var(--space-xl);
  background: #fff6ea;
  border-top: 1px solid rgba(45, 41, 38, .1);
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-l);
  padding: var(--space-xl) 0 var(--space-l);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-l);
  padding: 0 0 var(--space-l);
  flex-wrap: wrap;
}

.footer-meta nav {
  display: flex;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.footer-meta nav a {
  font-size: .92rem;
  color: #4e4844;
}

.cookie-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 370px;
  display: none;
}

.cookie-panel.active {
  display: block;
  animation: fadeInUp .35s ease;
}

.cookie-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: var(--space-m);
  border: 1px solid rgba(45, 41, 38, .09);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: var(--space-s) 0;
}

.cookie-settings {
  display: none;
  gap: .6rem;
}

.cookie-settings.open {
  display: grid;
}

.page-hero {
  background: linear-gradient(140deg, var(--c4), #fff8ea);
}

.center {
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-l);
}

label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(45, 41, 38, .24);
  border-radius: 12px;
  padding: .72rem;
  font: inherit;
  background: #fffefa;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(255, 154, 134, .22);
}

.error {
  min-height: 1.1rem;
  display: block;
  color: #aa3b31;
  font-size: .84rem;
  margin-bottom: .35rem;
}

.checkbox-row {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  margin-top: .45rem;
}

.checkbox-row input {
  width: auto;
  margin-top: .22rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal .container {
  max-width: 880px;
}

.legal h1 {
  margin-bottom: var(--space-l);
}

.legal h2 {
  margin-top: var(--space-l);
  margin-bottom: .6rem;
  font-size: 1.16rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {

  .split-hero,
  .grid-two,
  .trust-grid,
  .steps,
  .contact-layout,
  .interactive-box {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media {
    padding: 10vw 6vw;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff8ee;
    padding: 1rem 4%;
    display: grid;
    gap: .8rem;
    border-bottom: 1px solid rgba(45, 41, 38, .1);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .cookie-panel {
    right: .6rem;
    left: .6rem;
    max-width: none;
  }

  .footer-meta nav {
    gap: .6rem;
  }
}