:root {
  --bg: #ece6ea;
  --surface: #f5f1f4;
  --surface-2: #efe8ed;
  --ink: #2f2930;
  --muted: #665b66;
  --accent: #705f74;
  --accent-2: #3d3341;
  --line: #d8cfd6;
  --success: #2f7a5b;
  --warning: #9a6b2b;
  --hero-overlay: rgba(20, 15, 20, 0.46);
  --radius: 16px;
  --shadow: 0 12px 36px rgba(26, 18, 26, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(17, 12, 18, 0.58), rgba(17, 12, 18, 0.22));
}

.site-header--light {
  background: rgba(245, 241, 244, 0.92);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header:not(.site-header--light) .brand,
.site-header:not(.site-header--light) .nav-list a,
.site-header:not(.site-header--light) .menu-toggle {
  color: #f8f6f8;
}

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

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}

.nav-list a,
.nav-list button {
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0.2rem 0;
}

.nav-list a[aria-current="page"],
.nav-list a:hover,
.nav-list button:hover {
  color: var(--accent);
}

.site-header:not(.site-header--light) .nav-list a[aria-current="page"],
.site-header:not(.site-header--light) .nav-list a:hover,
.site-header:not(.site-header--light) .nav-list button:hover {
  color: #f0dff7;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.7rem;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  padding: 0.45rem;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu li a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
}

.submenu li a:hover {
  background: var(--surface);
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 0.85rem;
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(1200px 560px at 10% 15%, #9a8068 0%, #856a56 47%, #6d5648 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(840px, calc(100% - 2rem));
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 0.9rem;
  opacity: 0.88;
}

.hero h1,
.page-title {
  font-family: "Sora", "Avenir Next", sans-serif;
  margin: 0;
  font-size: clamp(2.05rem, 3.8vw, 4.25rem);
  line-height: 1.08;
}

.hero .subline {
  margin: 1.1rem auto 1.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.8rem);
  max-width: 760px;
  font-weight: 700;
}

.hero p {
  margin: 0 auto;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: #fff;
  color: var(--accent-2);
}

.btn-primary:hover {
  background: #f4f1f7;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sticky-note {
  position: absolute;
  z-index: 1;
  min-width: 160px;
  min-height: 120px;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(18, 12, 18, 0.18);
  transform: rotate(var(--r));
  color: #2d2b2d;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1rem;
}

.note-green {
  background: #bbd88e;
}

.note-blue {
  background: #86bed8;
}

.note-pink {
  background: #e1b5c7;
}

.note-1 { top: 14%; left: 7%; --r: -8deg; }
.note-2 { top: 20%; right: 16%; --r: 6deg; }
.note-3 { top: 57%; left: 11%; --r: -7deg; }
.note-4 { bottom: 12%; right: 15%; --r: 9deg; }

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--surface-2);
}

.section-title {
  margin: 0 0 1rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.12;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 720px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f7f5f7;
}

.offer-col-title {
  border-right: 1px solid var(--line);
  padding: 2rem;
  font-size: 1.6rem;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.offer-list {
  margin: 0;
  padding: 1rem 1.6rem;
  list-style: none;
}

.offer-list li {
  border-bottom: 1px solid var(--line);
}

.offer-list li:last-child {
  border-bottom: 0;
}

.offer-list button {
  width: 100%;
  text-align: left;
  border: 0;
  font: inherit;
  background: transparent;
  padding: 1rem 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.offer-list button::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.offer-list button[aria-expanded="true"]::after {
  content: "−";
}

.offer-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
  padding-right: 2.5rem;
}

.offer-detail p {
  margin: 0 0 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--surface);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.1rem;
}

.page-hero {
  padding: 9.5rem 0 3rem;
}

.page-hero p {
  margin: 0.8rem 0 0;
  max-width: 760px;
  color: var(--muted);
}

.column-layout {
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 4rem;
}

.column-layout h2 {
  margin: 0 0 1.6rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--accent);
}

.column-layout h3 {
  margin: 1.6rem 0 0.25rem;
  font-size: 1.05rem;
}

.column-layout p {
  margin: 0;
  color: #4f4650;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  padding: 1.05rem 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
}

.faq-q[aria-expanded="true"]::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
}

.faq-a p {
  margin: 0 0 1rem;
}

.form {
  display: grid;
  gap: 0.95rem;
}

label {
  font-weight: 700;
  font-size: 0.93rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.success {
  background: #e7f5ef;
  color: #216047;
}

.status-pill.pending {
  background: #fdf4e8;
  color: #8a5d23;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ede8ec;
  padding: 3rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.86rem;
}

.footer-col.center {
  justify-content: center;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
}

.footer-col.right {
  justify-content: flex-end;
}

.footer-col a {
  color: #443c46;
  text-decoration: underline;
}

.badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: #fff;
}

.map-frame {
  height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.muted {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-col-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

  .nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    width: min(340px, calc(100% - 2rem));
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 140ms ease, transform 140ms ease;
    padding: 0.6rem;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a,
  .nav-list button {
    display: block;
    width: 100%;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    color: #3a303b;
  }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 0.5rem;
    min-width: 0;
  }

  .has-dropdown:hover .submenu,
  .has-dropdown:focus-within .submenu {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .hero {
    min-height: 88vh;
  }

  .note-1,
  .note-2,
  .note-3,
  .note-4 {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col,
  .footer-col.right {
    justify-content: center;
  }

  .grid-2,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }
}
