:root {
  --bg: #fff8ec;
  --bg-soft: #fff1d6;
  --panel: #ffffff;
  --panel-2: #fff5e5;
  --text: #292132;
  --muted: #6d6275;
  --brand: #ff6b35;
  --brand-2: #ffc857;
  --accent: #7b61ff;
  --accent-2: #25c2a0;
  --line: rgba(41,33,50,.12);
  --radius: 24px;
  --shadow: 0 18px 48px rgba(98, 63, 21, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 200, 87, .32), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(123, 97, 255, .14), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 32px)); }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,248,236,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #2a1709;
  box-shadow: 0 10px 24px rgba(255,107,53,.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #40364a;
}

nav a {
  font-weight: 700;
}

.btn {
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #2a1709;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(255,107,53,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,107,53,.28);
}

.btn-small { padding: 10px 14px; font-size: 13px; }

.btn-ghost {
  background: rgba(255,255,255,.65);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 25px 0 76px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: rgba(37,194,160,.16);
  right: -90px;
  bottom: 20px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(255,107,53,.14);
  left: -80px;
  top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 42px;
  align-items: center;
}

.eyebrow, .section-kicker {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 18px; }

h1 {
  font-size: clamp(42px, 6vw, 61px);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -1px;
}

h3 { font-size: 20px; }

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.microcopy, .hint {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,245,229,.95));
  border: 1px solid rgba(255,107,53,.18);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "✨";
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 38px;
  opacity: .55;
}

.card-badge {
  display: inline-block;
  background: rgba(255,200,87,.32);
  color: #7c3f00;
  border: 1px solid rgba(255,107,53,.18);
  border-radius: 999px;
  padding: 7px 13px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 13px;
}

.hero-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-card li {
  margin: 10px 0;
  color: var(--muted);
}

.hero-card li i {
  color: var(--accent-2);
  margin-right: 8px;
}

.section { padding: 82px 0; scroll-margin-top: 20px; }

.letter-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,241,214,.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.letter-section .narrow {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(123,97,255,.16), transparent 28%),
    linear-gradient(135deg, #fefefe, #fff1d6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps article, .faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 26px rgba(98,63,21,.08);
}

.steps article:nth-child(2) span { background: var(--accent); color: white; }
.steps article:nth-child(3) span { background: var(--accent-2); color: #06231d; }
.steps article:nth-child(4) span { background: var(--brand-2); color: #2a1709; }

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.steps p, .feature-list span, .letter-section p, .split p, .cta-section p, .faq p, .footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(98,63,21,.07);
}

.feature-list i {
  grid-row: span 2;
  color: var(--accent);
  font-size: 24px;
  margin-top: 3px;
}

.feature-list div:nth-child(2) i { color: var(--brand); }
.feature-list div:nth-child(3) i { color: var(--accent-2); }
.feature-list div:nth-child(4) i { color: #e2a400; }

.feature-list span { grid-column: 2; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.gallery div {
  min-height: 190px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,200,87,.36), rgba(123,97,255,.12)),
    #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #54485f;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(98,63,21,.08);
}

.gallery div:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(37,194,160,.22), rgba(255,107,53,.12)),
    #fff;
}

.cta-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.38), transparent 25%),
    linear-gradient(135deg, #ffcf70, #ff8f70 58%, #a891ff);
  color: #271629;
}

.cta-section p {
  color: rgba(39,22,41,.78);
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #fff1d6;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.social {
  display: flex;
  gap: 14px;
  font-size: 24px;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(98,63,21,.08);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal.active { display: block; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41,33,50,.45);
  backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  margin: 18px auto;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: var(--panel-2);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-subtitle {
  color: var(--muted);
  margin-top: -8px;
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  grid-template-columns: repeat(2, 1fr);
  zoom: 0.80;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(255,200,87,.38);
  border-color: rgba(255,107,53,.4);
}

@media (max-width: 900px) {
  nav a { display: none; }
  .hero-grid, .split, .steps, .gallery { grid-template-columns: 1fr !important; }
  .hero { padding-top: 25px; }
  h1 { letter-spacing: -1px; }
  .faq {  grid-template-columns: repeat(1, 1fr); }
  .random-gallery { grid-template-columns: repeat(2, 1fr) !important;}
  .gallery div { min-height: 90%; }
  nav p { display: none; }
  .section { padding: 50px 0; }
  .booking-form { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 520px) {
  .nav { height: 68px; }
  .brand span:last-child { font-size: 14px; }
  .hero-actions .btn { width: 100%; }
  .letter-section .narrow { padding: 24px; }
}

.random-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(98,63,21,.08);
}

.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(98,63,21,.16);
}

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