:root {
  --peach-1: #FF9A86;
  --peach-2: #FFB399;
  --sand: #FFD6A6;
  --cream: #FFF0BE;
  --ink: #2e2522;
  --muted: #6f605a;
  --surface: #fffaf2;
  --surface-2: #fff4e6;
  --line: rgba(66, 41, 30, 0.16);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --s1: .4rem;
  --s2: .7rem;
  --s3: 1rem;
  --s4: 1.4rem;
  --s5: 2rem;
  --s6: 3rem;
  --shadow: 0 14px 34px rgba(92, 57, 41, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background: radial-gradient(circle at 0 0, #fffdf7 0, #fff9ef 40%, #fff5e7 100%);
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 8px;
  background: #111;
  color: #fff;
  padding: .5rem .8rem;
  border-radius: 8px;
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 249, 238, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: var(--s4) var(--s3);
}

.logo {
  display: block;
}

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

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

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

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

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

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

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

.nav-shell {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem;
}

.nav-shell a {
  border-radius: 999px;
  padding: .4rem .85rem;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.nav-shell a:hover,
.nav-shell a:focus-visible,
.nav-shell a.active {
  background: linear-gradient(90deg, var(--sand), var(--cream));
  transform: translateY(-2px);
  outline: none;
}

main {
  padding: var(--s5) var(--s3) var(--s6);
}

section,
article,
aside {
  margin-bottom: var(--s4);
}

.grid-two {
  display: grid;
  gap: var(--s4);
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--s4);
  box-shadow: var(--shadow);
}

.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s3);
  background: linear-gradient(145deg, var(--cream), #fff7de);
}

.kicker {
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  color: #886557;
}

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

.float-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}

.float-list li {
  background: #fff;
  border-left: 4px solid var(--peach-1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: .75rem .85rem;
  transform: translateX(0);
  transition: transform .2s ease;
}

.float-list li:hover {
  transform: translateX(4px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.badge-row span {
  border: 1px dashed #b98671;
  border-radius: 999px;
  padding: .25rem .6rem;
  background: #fff;
  font-size: .87rem;
}

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

.matrix .cell {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: .75rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .8rem;
}

.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .75rem;
  cursor: pointer;
}

.tab-btn[aria-selected="true"] {
  background: linear-gradient(130deg, var(--peach-2), var(--sand));
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: rise .32s ease;
}

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

.faq-trigger {
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 600;
  padding: .8rem 0;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding-bottom: .7rem;
}

.faq-item.open .faq-panel {
  display: block;
  animation: fade .23s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all .45s ease;
}

.form-grid {
  display: grid;
  gap: var(--s3);
}

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

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

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(255, 154, 134, .6);
  border-color: transparent;
}

.input-invalid {
  border-color: #bc4a36;
}

.error {
  color: #bc4a36;
  font-size: .84rem;
  min-height: 1em;
  margin-top: .2rem;
}

.btn {
  border: 1px solid rgba(80, 45, 33, .3);
  background: linear-gradient(135deg, var(--peach-1), var(--peach-2));
  border-radius: 999px;
  padding: .7rem .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 16px rgba(92, 57, 41, .18);
  outline: none;
}

.btn-ghost {
  background: #fff;
}

.progress-line {
  height: 8px;
  border-radius: 999px;
  background: #f2d8cc;
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, var(--peach-1), #f4c490);
  transition: width .35s ease;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff3e4;
  padding: var(--s5) var(--s3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
}

.footer-links {
  display: grid;
  gap: .35rem;
}

.cookie-banner {
  position: fixed;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--s3);
  z-index: 40;
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .6rem;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  background: rgba(35, 21, 15, .45);
  display: none;
  justify-content: center;
  align-items: center;
  padding: var(--s3);
  z-index: 45;
}

.cookie-settings .panel {
  width: min(580px, 100%);
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--s4);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  gap: .8rem;
}

.switch {
  width: 46px;
  height: 24px;
  border-radius: 99px;
  background: #d3c0b3;
  position: relative;
  border: 0;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
}

.switch.on {
  background: #e39a7f;
}

.switch.on::after {
  left: 24px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@media (min-width: 760px) {
  main {
    padding-inline: 6vw;
  }

  .grid-two {
    grid-template-columns: 1.05fr .95fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  main {
    padding-inline: 8vw;
  }
}