﻿:root {
  --color-bg: #e5e5cb;
  --color-surface: #f6f2dd;
  --color-surface-strong: #efe7c7;
  --color-primary: #1a120b;
  --color-secondary: #3c2a21;
  --color-accent: #d5cea3;
  --color-text: #221d19;
  --color-muted: #5d524a;
  --space-xs: 0.45rem;
  --space-sm: 0.85rem;
  --space-md: 1.2rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(26, 18, 11, 0.08);
  --shadow-md: 0 18px 42px rgba(26, 18, 11, 0.14);
  --font-main: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at 0% 0%, #f3eed0, var(--color-bg));
  color: var(--color-text);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(229, 229, 203, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 42, 33, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  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;
  }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--color-secondary);
  transition: background 0.28s ease, color 0.28s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(60, 42, 33, 0.25);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
}

main {
  padding-block: var(--space-lg) var(--space-xl);
}

.hero {
  display: grid;
  gap: 1.4rem;
}

.hero-card {
  background: linear-gradient(145deg, #f9f5e2, #e7dfbc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.hero-slides {
  position: relative;
  min-height: 460px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.2rem;
  padding: var(--space-lg);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-copy h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  line-height: 1.13;
}

.hero-copy p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  max-width: 36ch;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-points {
  display: grid;
  gap: 0.45rem;
  color: var(--color-secondary);
  margin-top: 0.9rem;
}

.hero-points li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 18, 11, 0.35);
}

.hero-dot.active {
  background: var(--color-primary);
}

.section {
  margin-top: var(--space-xl);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 58ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  grid-column: span 4;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(60, 42, 33, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0.3rem 0 0.6rem;
}

.card p {
  margin: 0;
  color: var(--color-muted);
}

.icon-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(60, 42, 33, 0.1);
  color: var(--color-secondary);
}

.split-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.list-panel,
.schedule-panel,
.faq-panel,
.map-panel,
.contact-panel,
.quote-panel,
.legal-panel,
.story-panel,
.timeline-panel,
.accordion-panel,
.interactive-panel {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(60, 42, 33, 0.09);
}

.highlight-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: var(--color-surface-strong);
  border: 1px solid rgba(60, 42, 33, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
}

.mini-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(60, 42, 33, 0.22);
}

.mini-list li:last-child {
  border-bottom: 0;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-step {
  border-left: 2px solid rgba(26, 18, 11, 0.2);
  padding-left: 0.8rem;
}

.accordion-item {
  border: 1px solid rgba(60, 42, 33, 0.16);
  border-radius: 12px;
  margin: 0.55rem 0;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fbf8e9;
  padding: 0.75rem 0.8rem;
  font: inherit;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 0.8rem;
  color: var(--color-muted);
}

.accordion-item.open .accordion-content {
  max-height: 220px;
  padding: 0.2rem 0.8rem 0.8rem;
}

.range-wrap {
  display: grid;
  gap: 0.6rem;
}

.range-output {
  font-weight: 600;
}

.embed-map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-md);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(60, 42, 33, 0.25);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  font: inherit;
  color: var(--color-text);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.input-error {
  border-color: #b34747;
  background: #fff3f3;
}

.error-text {
  color: #8e2323;
  font-size: 0.82rem;
  min-height: 1em;
}

.agree-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.site-footer {
  background: linear-gradient(125deg, #1a120b, #2f221a);
  color: var(--color-bg);
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.7rem 0;
}

.footer-block {
  grid-column: span 4;
}

.footer-links a {
  display: block;
  padding: 0.22rem 0;
  color: rgba(229, 229, 203, 0.92);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: floatIn 0.4s ease;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 11, 0.45);
  display: none;
  place-items: center;
  z-index: 130;
  padding: 1rem;
}

.cookie-modal.show {
  display: grid;
}

.cookie-card {
  width: min(100%, 540px);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.7rem 0;
  gap: 0.6rem;
}

.toggle {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #c9c3bf;
  border: 0;
  position: relative;
}

.toggle::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.toggle[aria-pressed="true"] {
  background: var(--color-secondary);
}

.toggle[aria-pressed="true"]::after {
  transform: translateX(20px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse-soft {
  animation: pulseSoft 4.2s ease-in-out infinite;
}

@keyframes pulseSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 530px;
  }

  .split-panel,
  .highlight-block {
    grid-template-columns: 1fr;
  }

  .card {
    grid-column: span 6;
  }

  .footer-block {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #f2efda;
    border-bottom: 1px solid rgba(60, 42, 33, 0.18);
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1rem 1rem;
  }

  .card,
  .footer-block {
    grid-column: span 12;
  }
}