
:root {
  --bg: #ffffff;
  --beige-light: #fdf4e3;
  --beige: #f4e4d4;
  --orange: #ff8c42;
  --orange-dark: #e86e21;
  --text: #2b2b2b;
  --muted: #777777;
  --radius: 22px;
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header & menu */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5vw;
  pointer-events: none;
}

header .logo {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: clamp(16px, 2vw, 22px);
  color: #000;
  background: rgba(255,255,255,0.9);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  pointer-events: auto;
}

.menu-btn {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icon {
  width: 24px;
  height: 2px;
  background: #111;
  position: relative;
  border-radius: 999px;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

/* Side menu */

.side-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: min(320px, 80vw);
  height: 100%;
  background: var(--beige);
  box-shadow: -18px 0 40px rgba(0,0,0,0.18);
  padding: 90px 32px 32px;
  transition: right 0.35s ease;
  z-index: 25;
}

.side-menu.open { right: 0; }

.side-menu h3 {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.side-menu nav a {
  display: block;
  font-size: 18px;
  padding: 8px 0;
  font-weight: 500;
  color: #1f1f1f;
}

.side-menu .auth-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 140, 66, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--orange-dark);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}

/* Hero with video */

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.7)
  );
}

.hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 13vh;
  text-align: center;
  z-index: 2;
}

.hero-title h1 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
}

/* Layout */

main {
  padding: 80px 5vw 80px;
  max-width: 1200px;
  margin: 0 auto;
}

main.compact { padding-top: 120px; }

.section { margin-bottom: 90px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 16px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-two.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.card-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--beige-light);
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-large {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige-light);
  box-shadow: var(--shadow-soft);
}

.story-large img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.story-body {
  padding: 26px 26px 24px;
}

.story-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.story-body p {
  margin: 4px 0;
  font-size: 16px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,140,66,0.08);
  color: var(--orange-dark);
}

/* Travel cards */

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.travel-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige-light);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.travel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.travel-card-body {
  padding: 18px 18px 22px;
}

.travel-card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.travel-card-body p {
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Forms */

.form-card {
  border-radius: var(--radius);
  background: var(--beige-light);
  padding: 26px 24px 26px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 9px 11px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255,140,66,0.4);
}

/* Lists */

.list {
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
}

/* Auth */

.auth-wrapper {
  max-width: 420px;
  margin: 120px auto 80px;
  padding: 26px 24px 32px;
  background: var(--beige-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.auth-wrapper h1 {
  margin: 0 0 10px;
  font-size: 26px;
}

.auth-wrapper p {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 560px;
  width: calc(100% - 32px);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--muted);
  display: none;
  z-index: 40;
}

.cookie-banner__actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.cookie-banner__btn {
  border-radius: 999px;
  border: none;
  padding: 7px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

/* Footer */

footer {
  border-top: 1px solid rgba(0,0,0,0.04);
  padding: 26px 5vw 40px;
  background: #fff;
  font-size: 13px;
  color: var(--muted);
}

footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

/* Responsive */

@media (max-width: 900px) {
  .grid-two,
  .grid-two.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  header { padding-inline: 16px; }
  main { padding-inline: 16px; }
  footer { padding-inline: 16px; }
}
