﻿:root {
  --mint: #5DD3B6;
  --earth: #6E5034;
  --sand: #CDB885;
  --cream: #EFE1B5;
  --text: #2f2419;
  --bg: #f7f0da;
  --radius-lg: 22px;
  --radius-md: 14px;
  --space-sm: 0.9rem;
  --space-md: 1.3rem;
  --space-lg: 2rem;
  --space-xl: 3.4rem;
  --shadow-soft: 8px 8px 18px rgba(110, 80, 52, 0.18), -6px -6px 14px rgba(255, 250, 238, 0.7);
  --shadow-inset: inset 6px 6px 12px rgba(110, 80, 52, 0.15), inset -4px -4px 10px rgba(255, 250, 238, 0.8);
  --ease: 280ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at 12% 8%, #fff7e2 0, #f5ecd1 36%, #efe1b5 100%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(160deg, #f2e6c4, #e6d4aa);
  border-bottom: 1px solid rgba(110, 80, 52, 0.2);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
}

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

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.top-nav a {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  background: linear-gradient(145deg, #efdfbb, #d9c291);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.top-nav a:hover,
.top-nav a.active {
  transform: translateY(-2px);
  background: linear-gradient(145deg, var(--mint), #87ddca);
  box-shadow: 0 10px 16px rgba(93, 211, 182, 0.27);
}

main {
  min-height: 72vh;
}

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

.alt {
  background: linear-gradient(170deg, #eedfb8 0%, #f4e8c5 100%);
}

.eyebrow {
  margin: 0 0 .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--earth);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.interactive-hero h1 {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
}

.panel {
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: linear-gradient(150deg, #fff6dd, #dcc397);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease);
}

.panel:hover {
  transform: translateY(-3px);
}

.hero-card {
  transform-style: preserve-3d;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}

.season-grid div {
  border-radius: 12px;
  padding: .6rem;
  background: linear-gradient(145deg, #f4e8c6, #e0c997);
  box-shadow: var(--shadow-inset);
  display: grid;
  gap: .2rem;
}

.season-grid strong {
  font-size: .95rem;
}

.season-grid span {
  font-size: .85rem;
}

.btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(145deg, var(--mint), #88ddcb);
  color: #12362f;
  box-shadow: var(--shadow-soft);
}

.btn.ghost {
  background: linear-gradient(145deg, #f3e8c7, #ddc69a);
  box-shadow: var(--shadow-soft);
}

.btn.soft {
  background: linear-gradient(145deg, #ecddb7, #f5ebce);
  box-shadow: var(--shadow-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: .35rem;
}

.trust-list li {
  display: flex;
  gap: .5rem;
  align-items: center;
}

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

.timeline-item {
  position: relative;
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(93, 211, 182, 0.18);
}

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

.image-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease), filter var(--ease);
}

.image-grid img:hover {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.feature-panel {
  border: 1px solid rgba(93, 211, 182, 0.28);
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(110, 80, 52, 0.2);
}

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

.map-wrap.small iframe {
  min-height: 260px;
}

.faq-block {
  display: grid;
  gap: .8rem;
}

.faq-item {
  border-radius: 14px;
  background: linear-gradient(145deg, #f8edcf, #e2cb9f);
  box-shadow: var(--shadow-inset);
}

.faq-toggle {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: .9rem 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease), padding var(--ease);
  padding: 0 1rem;
}

.faq-item.open .faq-content {
  max-height: 180px;
  padding: 0 1rem .9rem;
}

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

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

.narrow {
  width: min(760px, 100%);
}

.text-link {
  text-decoration: none;
  font-weight: 700;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(110, 80, 52, 0.35);
  border-radius: var(--radius-md);
  padding: .72rem;
  color: var(--text);
  background: linear-gradient(145deg, #f8efce, #e7d5ad);
  box-shadow: var(--shadow-inset);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(93, 211, 182, 0.55);
}

textarea {
  resize: vertical;
}

.check {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-top: .4rem;
}

.error {
  min-height: 1rem;
  margin: 0 0 .35rem;
  color: #8f211a;
  font-size: .88rem;
}

.site-footer {
  background: linear-gradient(150deg, #d9c195, #eddcb4);
  border-top: 1px solid rgba(110, 80, 52, 0.2);
  padding: 2rem 0;
}

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

.footer-grid a {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(420px, calc(100% - 2rem));
  z-index: 40;
}

.cookie-box,
.cookie-form {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: linear-gradient(145deg, #f4e8c6, #d7c093);
  box-shadow: var(--shadow-soft);
}

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

.cookie-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
}

.cookie-form label {
  display: block;
  margin: .5rem 0;
}

.inner-main .panel.legal h2 {
  margin-top: 1.35rem;
}

.thank-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

@keyframes pulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(93, 211, 182, .35);
  }

  100% {
    box-shadow: 0 0 0 18px rgba(93, 211, 182, 0);
  }
}

.btn.primary {
  animation: pulseSoft 3.5s infinite;
}

@media (max-width: 980px) {

  .grid-2,
  .timeline-grid,
  .image-grid,
  .unique-grid,
  .cards-4,
  .footer-grid,
  .split-highlight {
    grid-template-columns: 1fr;
  }
}