:root {
  --c-primary: #272829;
  --c-secondary: #61677A;
  --c-soft: #D8D9DA;
  --c-light: #FFF6E0;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --shadow-sm: 0 6px 20px rgba(39, 40, 41, 0.08);
  --shadow-md: 0 14px 34px rgba(39, 40, 41, 0.14);
  --font-main: "Segoe UI", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 700;
  background: var(--c-light);
  color: var(--c-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.section {
  padding: var(--space-xl) 0;
}

.neutral {
  background: linear-gradient(180deg, #f2efe6 0%, #ebe8df 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 246, 224, .96);
  border-bottom: 1px solid var(--c-soft);
  backdrop-filter: blur(8px);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.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;
  }
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.main-nav a:hover {
  color: var(--c-secondary);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--c-primary);
  color: var(--c-light);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(4%);
  transition: opacity .65s ease, transform .65s ease;
  display: grid;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-content {
  padding: var(--space-xl) 0;
  max-width: 780px;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
}

.eyebrow {
  color: var(--c-soft);
  margin-bottom: var(--space-xs);
  font-size: .93rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 246, 224, .18);
  border: 1px solid rgba(255, 246, 224, .35);
  color: var(--c-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.slider-control:hover {
  background: rgba(255, 246, 224, .32);
  transform: translateY(-50%) scale(1.05);
}

.slider-control.prev {
  left: 1rem;
}

.slider-control.next {
  right: 1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.reverse .split-grid figure {
  order: -1;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease;
}

img:hover {
  transform: translateY(-4px);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}

.icon-list i {
  margin-right: .5rem;
  color: var(--c-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.card {
  background: rgba(255, 246, 224, 0.84);
  border: 1px solid rgba(97, 103, 122, 0.24);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-pill {
  background: rgba(39, 40, 41, 0.08);
  border-radius: 999px;
  padding: .6rem .9rem;
  text-align: center;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.interactive-box {
  background: var(--c-primary);
  color: var(--c-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.interactive-box input[type="range"] {
  width: 100%;
  accent-color: var(--c-light);
}

.interactive-result {
  margin-top: .8rem;
  color: var(--c-soft);
}

.faq details {
  border: 1px solid rgba(97, 103, 122, 0.28);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
  background: rgba(255, 246, 224, 0.72);
}

.faq details+details {
  margin-top: .7rem;
}

.faq summary {
  cursor: pointer;
}

.tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}

.tab-button {
  background: transparent;
  border: 1px solid var(--c-secondary);
  color: var(--c-primary);
  border-radius: 999px;
  padding: .45rem .9rem;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.active {
  background: var(--c-primary);
  color: var(--c-light);
  border-color: var(--c-primary);
}

.tab-panel {
  display: none;
  background: var(--c-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(97, 103, 122, 0.26);
}

.tab-panel.active {
  display: block;
}

.btn {
  display: inline-block;
  padding: .72rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all .25s ease;
  font-weight: 700;
  cursor: pointer;
}

.btn-dark {
  background: var(--c-primary);
  color: var(--c-light);
}

.btn-dark:hover {
  background: var(--c-secondary);
}

.btn-light {
  background: transparent;
  border-color: var(--c-light);
  color: var(--c-light);
}

.neutral .btn-light,
.cta-footer .btn-light,
.page-main .btn-light {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.btn-light:hover {
  background: var(--c-primary);
  color: var(--c-light);
}

.site-footer {
  background: var(--c-primary);
  color: var(--c-light);
  padding: 2.6rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: .94rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--c-light);
  border: 1px solid var(--c-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(39, 40, 41, .55);
  display: none;
  place-items: center;
  z-index: 41;
}

.cookie-modal-content {
  background: var(--c-light);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  width: min(420px, 92vw);
  display: grid;
  gap: .8rem;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

form {
  background: rgba(255, 246, 224, 0.85);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(97, 103, 122, 0.22);
}

input,
textarea {
  width: 100%;
  padding: .65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-secondary);
  margin: .35rem 0 .4rem;
  font-weight: 700;
  background: #fffdfa;
}

.checkbox-row {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  margin-top: .6rem;
}

.checkbox-row input {
  width: auto;
  margin-top: .24rem;
}

.error {
  min-height: 1rem;
  color: #9f1f1f;
  font-size: .82rem;
  display: block;
}

.legal h2 {
  margin-top: 1.2rem;
}

.legal ul {
  padding-left: 1.1rem;
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  .split-grid,
  .card-grid,
  .form-layout,
  .info-band {
    grid-template-columns: 1fr;
  }

  .slider-control {
    display: none;
  }
}