:root {
  --midnight: #183942;
  --midnight-deep: #112b31;
  --amber: #efaa25;
  --amber-soft: #ffc14f;
  --mist: #dce7e8;
  --paper: #f7f6f2;
  --paper-strong: #ffffff;
  --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(--midnight);
  background:
    radial-gradient(circle at 14% 14%, rgba(239, 170, 37, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 52%, #eef3f4 100%);
}

.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;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(18rem, 42vw);
  height: auto;
}

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

.topbar-actions a {
  color: var(--midnight);
  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(--midnight-deep);
  border-color: rgba(24, 57, 66, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  background: rgba(24, 57, 66, 0.06);
}

.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,
.benefits-grid p,
.reserve-notes li,
.faq-item p,
.site-footer p,
.form-note,
.preview-card p {
  color: rgba(17, 43, 49, 0.78);
  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.12);
  border: 1px solid rgba(239, 170, 37, 0.24);
  color: var(--midnight-deep);
  font-size: 0.82rem;
}

.hero-card,
.step-card,
.pricing-card,
.payment-card,
.reserve-form,
.faq-item,
.preview-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 57, 66, 0.08);
  box-shadow: 0 18px 44px rgba(17, 43, 49, 0.1);
}

.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(17, 43, 49, 0.58);
  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(24, 57, 66, 0.04);
  border: 1px solid rgba(24, 57, 66, 0.08);
}

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

.metric span {
  color: rgba(17, 43, 49, 0.72);
  font-size: 0.82rem;
}

.hero-offer {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(24, 57, 66, 0.1);
  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,
.benefits-grid,
.gallery-grid,
.blog-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,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.blog-card {
  display: grid;
  gap: 0.9rem;
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 57, 66, 0.08);
  box-shadow: 0 18px 44px rgba(17, 43, 49, 0.1);
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(239, 170, 37, 0.7);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  color: rgba(17, 43, 49, 0.58);
  font-size: 0.84rem;
}

.article-hero {
  display: grid;
  gap: 0.8rem;
  max-width: 48rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.6fr);
  gap: 1.4rem;
}

.article-body {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 57, 66, 0.08);
  box-shadow: 0 18px 44px rgba(17, 43, 49, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
}

.article-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  max-width: none;
  margin-top: 0.5rem;
}

.article-body p {
  margin: 0;
  color: rgba(17, 43, 49, 0.82);
  line-height: 1.72;
}

.article-side {
  display: grid;
  align-content: start;
}

.pricing-card-note {
  display: flex;
  align-items: center;
}

.pricing-card-note p {
  margin: 0;
}

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

.price-previous {
  color: rgba(17, 43, 49, 0.42);
  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 {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(17, 43, 49, 0.78);
}

.areas-table-wrap {
  overflow-x: auto;
}

.areas-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 57, 66, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17, 43, 49, 0.1);
}

.areas-table th,
.areas-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(24, 57, 66, 0.08);
  vertical-align: middle;
}

.areas-table th {
  color: rgba(17, 43, 49, 0.62);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(24, 57, 66, 0.03);
}

.areas-table tbody tr:last-child td {
  border-bottom: 0;
}

.areas-table td strong {
  font-weight: 400;
}

.areas-table td span {
  color: rgba(17, 43, 49, 0.72);
}

.areas-table td[data-label="Actual prices"] strong {
  color: var(--amber);
}

.button-inline {
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.waitlist-copy {
  display: grid;
  gap: 1rem;
}

.waitlist-regions {
  display: grid;
  gap: 1rem;
}

.waitlist-region,
.waitlist-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 57, 66, 0.08);
  box-shadow: 0 18px 44px rgba(17, 43, 49, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.waitlist-region h3,
.waitlist-card h3 {
  margin-bottom: 0.55rem;
}

.waitlist-region p,
.waitlist-card p {
  margin: 0;
  color: rgba(17, 43, 49, 0.78);
  line-height: 1.65;
}

.waitlist-pill {
  margin-top: 1rem;
  width: fit-content;
}

.waitlist-card {
  display: grid;
  gap: 0.9rem;
}

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

.benefits-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 57, 66, 0.08);
}

.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(17, 43, 49, 0.65);
  background:
    linear-gradient(180deg, rgba(239, 170, 37, 0.04), rgba(239, 170, 37, 0.01)),
    rgba(24, 57, 66, 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(17, 43, 49, 0.78);
}

.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(24, 57, 66, 0.14);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(24, 57, 66, 0.03);
  color: var(--midnight-deep);
}

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

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

.reserve-form textarea {
  resize: vertical;
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: rgba(17, 43, 49, 0.42);
}

.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(24, 57, 66, 0.1);
}

.footer-meta {
  text-align: right;
  color: rgba(17, 43, 49, 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,
  .waitlist-layout,
  .reserve-layout,
  .article-shell,
  .steps,
  .pricing-grid,
  .benefits-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

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

  .areas-table,
  .areas-table thead,
  .areas-table tbody,
  .areas-table tr,
  .areas-table th,
  .areas-table td {
    display: block;
    width: 100%;
  }

  .areas-table thead {
    display: none;
  }

  .areas-table {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .areas-table tr {
    margin-bottom: 0.9rem;
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 57, 66, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 32px rgba(17, 43, 49, 0.08);
  }

  .areas-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .areas-table td {
    border-bottom: 0;
    padding: 0.6rem 1rem;
  }

  .areas-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.2rem;
    color: rgba(17, 43, 49, 0.56);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
}

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

  .brand-logo {
    width: min(13.2rem, 72vw);
  }

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

  .hero-actions {
    width: 100%;
  }

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