:root {
  --c1: #FAE251;
  --c2: #D75656;
  --c3: #BD114A;
  --c4: #EEEEEE;
  --bg: #fffef8;
  --text: #2d2d2d;
  --muted: #6a6060;
  --radius: 18px;
  --pill: 999px;
  --shadow: 0 14px 32px rgba(189, 17, 74, 0.11);
  --space-s: 0.75rem;
  --space-m: 1.2rem;
  --space-l: 2rem;
  --space-xl: 3rem;
  --font: "Segoe UI", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

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

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

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

.top-contact {
  background: #f8f7f2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-contact__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding: 1rem 0;
}

.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;
  }
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}

.menu a {
  display: inline-block;
  padding: 0.56rem 0.95rem;
  border-radius: var(--pill);
  background: #f3f1f1;
  transition: all 0.25s ease;
}

.menu a:hover,
.menu a.active {
  background: var(--c1);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: none;
  border-radius: var(--pill);
  background: #f2efef;
  padding: 0.45rem 0.76rem;
}

.broken-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-m);
}

.hero-grid .tile-large {
  grid-column: 1 / span 7;
}

.hero-grid .tile-accent {
  grid-column: 8 / span 5;
}

.hero-grid .tile-soft {
  grid-column: 6 / span 7;
}

.three-up .tile {
  grid-column: span 4;
}

.tile-image,
.tile-text {
  grid-column: span 6;
}

.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-l);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.tile img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.tile h1,
.tile h2,
.tile h3 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--c3);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.14;
}

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

.tile-accent {
  background: linear-gradient(140deg, rgba(215, 86, 86, 0.2), rgba(250, 226, 81, 0.3));
}

.tile-soft {
  background: linear-gradient(150deg, rgba(238, 238, 238, 0.95), rgba(250, 226, 81, 0.2));
}

.btn {
  border: 1px solid transparent;
  border-radius: var(--pill);
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-primary:hover {
  background: #9b1040;
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--c2);
  color: var(--c2);
  background: #fff;
}

.btn-ghost:hover {
  background: #fff0f0;
}

.btn-link {
  background: transparent;
  color: var(--c3);
}

.interactive-lift:hover {
  transform: translateY(-6px);
}

.hover-shift:hover {
  transform: translateX(6px);
}

.pulse-on-hover:hover {
  transform: scale(1.02);
}

.section-accent {
  background: linear-gradient(160deg, rgba(250, 226, 81, 0.27), rgba(238, 238, 238, 0.78));
}

.nl-block {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff9d2;
  border-left: 4px solid var(--c2);
}

.status-pill {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.34rem 0.7rem;
  border-radius: var(--pill);
  background: rgba(189, 17, 74, 0.12);
  color: #7b1136;
  font-size: 0.85rem;
}

.status-line {
  margin-top: 0.7rem;
  color: #5d4f4f;
  font-weight: 500;
}

.range-box {
  display: grid;
  gap: 0.7rem;
}

.range-box input[type="range"] {
  width: 100%;
  accent-color: var(--c3);
}

.interactive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  border: 1px solid rgba(189, 17, 74, 0.28);
  border-radius: var(--pill);
  background: #fff;
  padding: 0.48rem 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.chip:hover,
.chip.active {
  background: var(--c3);
  color: #fff;
}

.accordion {
  display: grid;
  gap: 0.55rem;
}

.accordion-btn {
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem;
  cursor: pointer;
  font: inherit;
  transition: background 0.25s ease;
}

.accordion-btn:hover {
  background: #fff5f5;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 0.65rem;
}

.accordion-panel.open {
  max-height: 120px;
  padding: 0.5rem 0.65rem;
}

.text-link {
  color: var(--c3);
  font-weight: 600;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 12px;
}

.map-tile {
  grid-column: 1 / -1;
}

form {
  display: grid;
  gap: 0.45rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8cccc;
  border-radius: 12px;
  padding: 0.72rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--c3);
  box-shadow: 0 0 0 3px rgba(189, 17, 74, 0.13);
}

.check-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.check-label input {
  width: auto;
  margin-top: 0.18rem;
}

.error {
  min-height: 1em;
  color: #ad1143;
  font-size: 0.85rem;
}

.field-error {
  border-color: #ad1143;
}

.site-footer {
  background: #261f21;
  color: #f5f2f2;
  padding: var(--space-xl) 0;
}

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

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer a:hover {
  color: var(--c1);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 410px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 45;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.36);
  z-index: 60;
}

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

.cookie-modal__card {
  width: min(430px, 92%);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.2rem;
}

.legal {
  max-width: 900px;
}

.legal h2 {
  margin-top: 1.4rem;
}

.clean-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

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

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 960px) {

  .hero-grid .tile-large,
  .hero-grid .tile-accent,
  .hero-grid .tile-soft,
  .tile-image,
  .tile-text,
  .three-up .tile {
    grid-column: 1 / -1;
  }

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

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

  nav {
    width: 100%;
  }

  .menu {
    display: none;
    width: 100%;
    margin-top: 0.8rem;
    flex-direction: column;
  }

  .menu.open {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    max-width: none;
  }
}