:root {
  --midnight: #183942;
  --midnight-deep: #112b31;
  --amber: #efaa25;
  --amber-soft: #ffc14f;
  --mist: #dce7e8;
  --mist-soft: rgba(220, 231, 232, 0.72);
  --card: rgba(20, 48, 56, 0.84);
  --card-strong: rgba(14, 37, 43, 0.92);
  --line: rgba(239, 170, 37, 0.18);
  --shadow: 0 28px 80px rgba(6, 15, 18, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
  --font-main: "Cascadia Code", "Cascadia Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--mist);
  background:
    radial-gradient(circle at 14% 14%, rgba(239, 170, 37, 0.12), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(239, 170, 37, 0.08), transparent 18%),
    linear-gradient(180deg, #143139 0%, #173943 48%, #102a31 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  color: var(--amber);
  font-size: 1.12rem;
  font-weight: 400;
}

.brand-text span {
  color: rgba(220, 231, 232, 0.8);
  font-size: 0.88rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-actions a {
  color: var(--mist);
  text-decoration: none;
  font-weight: 300;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--amber);
  color: var(--midnight-deep);
  text-decoration: none;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--amber-soft);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--mist);
  border-color: rgba(239, 170, 37, 0.35);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  background: rgba(239, 170, 37, 0.08);
}

.hero {
  padding: 0.15rem 0 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 1.1rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: var(--font-main);
  line-height: 1.04;
  margin: 0;
  font-weight: 300;
}

h1 {
  font-size: clamp(1.95rem, 3.5vw, 3.15rem);
  max-width: 18ch;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 15ch;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.3rem;
}

.hero-text,
.section-heading p,
.step-card p,
.pricing-card p,
.area-card p,
.benefits-grid p,
.reserve-notes li,
.faq-item p,
.site-footer p,
.form-note,
.preview-card p {
  color: rgba(220, 231, 232, 0.82);
  line-height: 1.65;
}

.hero-text {
  max-width: 34rem;
  font-size: 0.92rem;
  margin: 0.7rem 0 0.9rem;
}

.hero-actions,
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-notes {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.hero-notes li {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(239, 170, 37, 0.08);
  border: 1px solid rgba(239, 170, 37, 0.16);
  color: var(--mist);
  font-size: 0.82rem;
}

.hero-card,
.step-card,
.pricing-card,
.area-card,
.payment-card,
.reserve-form,
.faq-item,
.preview-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-label {
  margin: 0 0 0.75rem;
  color: rgba(220, 231, 232, 0.74);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-stack {
  display: grid;
  gap: 0.65rem;
}

.metric {
  padding: 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(239, 170, 37, 0.12);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: var(--amber);
  font-weight: 300;
}

.metric span {
  color: rgba(220, 231, 232, 0.78);
  font-size: 0.82rem;
}

.hero-offer {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(239, 170, 37, 0.12);
  display: grid;
  gap: 0.3rem;
}

.hero-offer strong {
  color: var(--amber);
  font-size: 1rem;
  font-weight: 300;
}

.section {
  padding: 5rem 0 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.9rem;
}

.steps,
.pricing-grid,
.areas-grid,
.benefits-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.benefits-grid article,
.preview-card {
  border-radius: var(--radius-lg);
  padding: 0.85rem;
}

.step-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--amber);
  font-weight: 400;
}

.gallery-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem;
}

.price-stack {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
}

.price-previous {
  color: rgba(220, 231, 232, 0.46);
  text-decoration: line-through;
  font-size: 1.05rem;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-current strong {
  font-size: 3rem;
  color: var(--amber);
  font-weight: 300;
}

.price-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(239, 170, 37, 0.12);
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card ul,
.area-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(220, 231, 232, 0.82);
}

.areas-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-card {
  display: grid;
  gap: 1.15rem;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.area-header {
  display: grid;
  gap: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status-open,
.status-limited {
  background: rgba(239, 170, 37, 0.1);
  color: var(--amber);
}

.status-sold {
  background: rgba(220, 231, 232, 0.1);
  color: var(--mist);
}

.area-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.area-stat {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(239, 170, 37, 0.12);
}

.area-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--amber);
  margin-bottom: 0.22rem;
  font-weight: 300;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefits-grid article {
  background: var(--card-strong);
  border: 1px solid rgba(239, 170, 37, 0.12);
}

.preview-plate {
  min-height: 15rem;
  border-radius: 18px;
  border: 1px dashed rgba(239, 170, 37, 0.38);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: rgba(220, 231, 232, 0.72);
  background:
    linear-gradient(180deg, rgba(239, 170, 37, 0.04), rgba(239, 170, 37, 0.01)),
    rgba(255, 255, 255, 0.02);
}

.preview-postcard {
  aspect-ratio: 5 / 7;
}

.preview-ad {
  aspect-ratio: 4 / 3;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
}

.reserve-notes {
  display: grid;
  gap: 1.25rem;
}

.reserve-notes ol {
  margin: 0;
  padding-left: 1.3rem;
}

.reserve-notes li + li {
  margin-top: 0.7rem;
}

.payment-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.payment-card strong {
  color: var(--amber);
  font-weight: 300;
}

.payment-card span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(220, 231, 232, 0.82);
}

.reserve-form {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.reserve-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 300;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  border: 1px solid rgba(239, 170, 37, 0.18);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.04);
  color: var(--mist);
}

.reserve-form select {
  color-scheme: dark;
}

.reserve-form select option {
  color: var(--mist);
  background: var(--midnight-deep);
}

.reserve-form textarea {
  resize: vertical;
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: rgba(220, 231, 232, 0.44);
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(239, 170, 37, 0.12);
}

.footer-meta {
  text-align: right;
  color: rgba(220, 231, 232, 0.72);
}

.footer-meta a {
  color: var(--amber);
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 170, 37, 0.22);
  background: rgba(239, 170, 37, 0.08);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--amber);
}

@media (max-width: 980px) {
  .hero-grid,
  .reserve-layout,
  .steps,
  .areas-grid,
  .pricing-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1.2rem), var(--content-width));
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .area-stats {
    grid-template-columns: 1fr;
  }
}
