* {
  box-sizing: border-box;
}

:root {
  --brand: #c09e94;
  --brand-dark: #6b4f48;
  --brand-deep: #4a3834;
  --accent-icon: #2d4a3e;
  --text: #2a2220;
  --muted: #5c4f4b;
  --bg: #faf6f4;
  --card: #ffffff;
  --contrast-a: #f3e8e4;
  --contrast-b: #4a3834;
  --contrast-c: #e8d5cf;
  --max: 1200px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Palatino Linotype", "Book Antiqua", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #1a3028;
}

.container {
  width: 90%;
  margin-inline: auto;
}

.business-strip {
  background: var(--brand-deep);
  color: #faf6f4;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #6b4f48;
}

.business-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  align-items: center;
  justify-content: center;
}

.business-strip a {
  color: #f3e8e4;
  text-decoration: none;
  font-weight: 600;
}

.business-strip a:hover {
  text-decoration: underline;
}

.business-strip strong {
  color: #fff;
}

.footer-business p {
  margin: 0.25rem 0;
  font-size: 0.92rem;
}

.disclaimer-bar {
  background: #fff3e8;
  border-bottom: 1px solid #e0c4b8;
  color: #3d2e28;
  font-size: 0.88rem;
  padding: 0.55rem 0;
}

.disclaimer-bar p {
  margin: 0;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.55;
}

.disclaimer-bar a {
  color: var(--brand-deep);
  font-weight: 600;
}

.footer-trust {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.95;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fffefdf2;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e8d5cf;
}

.header-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--brand-deep);
  font-weight: 700;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brand);
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-size: 1.25rem;
  color: var(--accent-icon);
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-family: "Segoe UI", sans-serif;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  font-weight: 500;
}

nav a:hover,
nav a.active {
  color: var(--brand-deep);
  text-decoration: underline;
}

main section {
  margin: 1.35rem 0;
  border-radius: 18px;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contrast-light {
  background: var(--contrast-a);
  color: #2a2220;
}

.contrast-warm {
  background: var(--contrast-c);
  color: #2a2220;
}

.contrast-dark {
  background: var(--contrast-b);
  color: #faf6f4;
}

.contrast-dark a {
  color: #f3e8e4;
}

.contrast-dark .ph {
  color: #b8e0c8;
}

.ph {
  color: var(--accent-icon);
  vertical-align: -0.12em;
}

.hero-collage {
  margin-top: 1rem;
  background: linear-gradient(145deg, #4a3834 0%, #8a6f66 55%, #c09e94 100%);
  color: #fffaf7;
  border-radius: 22px;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.hero-text h1 {
  margin-top: 0.4rem;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.hero-text p {
  color: #f5ebe6;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fffaf733;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: "Segoe UI", sans-serif;
}

.fragmented {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 42vw, 460px);
  margin: 0.25rem 0;
  padding: 0.75rem 0.5rem 1.25rem;
}

.fragmented img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fffaf7cc;
  box-shadow: 0 10px 28px #2a222044;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fragmented img:hover {
  box-shadow: 0 14px 36px #2a222055;
  z-index: 10 !important;
}

.frag-a {
  width: 52%;
  height: 46%;
  top: 0;
  left: 0;
  z-index: 1;
}

.frag-b {
  width: 40%;
  height: 30%;
  top: 1%;
  right: 0;
  z-index: 2;
}

.frag-c {
  width: 44%;
  height: 40%;
  top: 30%;
  right: 4%;
  z-index: 5;
  transform: rotate(7deg);
}

.frag-d {
  width: 40%;
  height: 38%;
  top: 26%;
  left: 34%;
  z-index: 6;
  transform: rotate(-9deg);
}

.frag-c:hover {
  transform: rotate(4deg) scale(1.02);
}

.frag-d:hover {
  transform: rotate(-6deg) scale(1.02);
}

.frag-e {
  width: 34%;
  height: 32%;
  bottom: 6%;
  left: 2%;
  z-index: 3;
  transform: rotate(-4deg);
}

.frag-f {
  width: 50%;
  height: 34%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn.primary {
  background: #faf6f4;
  color: var(--brand-deep);
}

.btn.secondary {
  background: transparent;
  color: #fffaf7;
  border-color: #fffaf7aa;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  background: var(--card);
  border: 1px solid #e0cfc8;
  border-radius: 14px;
  padding: 1rem;
  color: var(--text);
}

.card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
}

.stagger-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.stagger-list li {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 0.75rem 1rem;
  border-radius: 0 10px 10px 0;
}

.numbered-flow {
  counter-reset: flow;
  list-style: none;
  padding: 0;
  margin: 0;
}

.numbered-flow li {
  counter-increment: flow;
  margin: 0.7rem 0;
  padding-left: 2.5rem;
  position: relative;
}

.numbered-flow li::before {
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent-icon);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0cfc8;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 0.6rem 0;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.events-table th,
.events-table td {
  border: 1px solid #e0cfc8;
  padding: 0.65rem 0.75rem;
  text-align: left;
  color: #000000;
}

.events-table th {
  background: var(--contrast-a);
  font-family: "Segoe UI", sans-serif;
  color: #000000;
}

.events-table a {
  color: #000000;
}

.contrast-dark .events-table th,
.contrast-dark .events-table td,
.contrast-dark .events-table a {
  color: #000000;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.safety-box {
  background: #fff;
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px solid #e0cfc8;
}

.safety-box h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.quote-block {
  margin: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid var(--brand);
  font-style: italic;
  color: #000000;
}

.contrast-dark .quote-block {
  color: #000000;
}

.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-tags li {
  background: #fff;
  border: 1px solid var(--brand);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: "Segoe UI", sans-serif;
}

form {
  background: #fff;
  border: 1px solid #e0cfc8;
  border-radius: 14px;
  padding: 1.1rem;
}

label {
  display: block;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-family: "Segoe UI", sans-serif;
  color: #1f1816;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #cbb8b0;
  border-radius: 8px;
  padding: 0.7rem;
  font: inherit;
  background: #fffdfb;
  color: #1f1816;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}

.checkbox-line input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0cfc8;
}

.map-wrap iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

footer {
  margin-top: 1.5rem;
  background: var(--brand-deep);
  color: #ffffff;
  padding: 1.2rem 0;
}

footer p,
footer strong,
footer span,
footer nav {
  color: #ffffff;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer a:hover,
footer a:focus-visible {
  color: #ffffff;
  opacity: 0.88;
}

.footer-wrap {
  display: grid;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
}

.footer-links a {
  text-decoration: none;
  font-family: "Segoe UI", sans-serif;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  opacity: 1;
}

.policy-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.policy-content h2 {
  margin-top: 1.3rem;
  font-size: 1.2rem;
}

.policy-content h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0;
  font-size: 0.92rem;
  background: #fff;
}

.policy-table th,
.policy-table td {
  border: 1px solid #e0cfc8;
  padding: 0.55rem;
  vertical-align: top;
}

.policy-table th {
  background: var(--contrast-a);
}

.thank-you-box {
  text-align: center;
  padding: 2rem 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: 44rem;
  margin-inline: auto;
  background: #fff;
  border: 2px solid var(--brand-deep);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 12px 40px #2a222033;
  color: #1f1816;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-actions .btn,
.cookie-settings-actions .btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.cookie-btn-outline {
  background: #fff;
  color: var(--brand-deep);
  border: 2px solid var(--brand-deep) !important;
}

.cookie-settings {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e0cfc8;
}

.cookie-category {
  background: var(--contrast-a);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
}

.cookie-always {
  font-size: 0.78rem;
  background: var(--brand);
  color: #1f1816;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.contrast-dark .card,
.contrast-dark .faq-item,
.contrast-dark .safety-box {
  background: #5c4842;
  border-color: #8a6f66;
  color: #faf6f4;
}

@media (max-width: 900px) {
  .hero-layout,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .safety-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fragmented {
    min-height: 380px;
    padding: 0.5rem 0;
  }

  .frag-a {
    width: 58%;
    height: 44%;
  }

  .frag-b {
    width: 42%;
    height: 28%;
    right: 2%;
  }

  .frag-c {
    width: 48%;
    height: 38%;
    top: 32%;
    right: 2%;
    transform: rotate(5deg);
  }

  .frag-d {
    width: 44%;
    height: 36%;
    top: 28%;
    left: 30%;
    transform: rotate(-7deg);
  }

  .frag-e {
    width: 38%;
    height: 30%;
    bottom: 4%;
  }

  .frag-f {
    width: 54%;
    height: 32%;
  }
}

@media (max-width: 640px) {
  .fragmented {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    min-height: 0;
    padding: 0;
  }

  .fragmented img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .frag-a {
    grid-column: 1 / -1;
  }

  .frag-b,
  .frag-e,
  .frag-f {
    transform: none;
  }

  .frag-c {
    transform: rotate(3deg);
  }

  .frag-d {
    transform: rotate(-3deg);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    display: none;
    width: 100%;
    order: 3;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .cards,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .header-wrap {
    align-items: flex-start;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 0.75rem, var(--max));
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.35rem;
    padding: 0.85rem;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
