:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #1d2430;
  --muted: #5d6676;
  --line: rgba(29, 36, 48, 0.12);
  --accent: #0e5a63;
  --accent-dark: #0a434a;
  --accent-soft: rgba(14, 90, 99, 0.12);
  --warning: #7a3f1d;
  --shadow: 0 24px 60px rgba(28, 30, 37, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 90, 99, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(194, 151, 88, 0.16), transparent 24rem),
    linear-gradient(180deg, #f4efe6 0%, #f8f5ee 36%, #f3efe8 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #d6a15f);
  box-shadow: 0 0 0 0.35rem rgba(14, 90, 99, 0.1);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.site-nav a,
.button,
.surface-card strong,
.visit-block h3,
.detail-stack strong,
summary {
  letter-spacing: -0.02em;
}

.brand-copy span,
.site-footer p:last-child,
.request-note,
.section-body p,
.faq-list p,
.visit-block p,
.process-grid p,
.hero-text,
.hero-points,
.detail-label,
.notice span {
  color: var(--muted);
}

.brand-copy span,
.detail-label,
.surface-label,
.visit-type,
.eyebrow {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(25, 29, 34, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100svh - 88px);
  padding: 2rem 0 3rem;
}

.hero-copy,
.hero-panel,
.section,
.visit-grid,
.process,
.request-section,
.site-footer {
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 8vw, 6.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.hero-text {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
}

.status-line,
.hero-note,
.anticipated-price {
  line-height: 1.65;
}

.status-line {
  margin: 1rem 0 0;
  color: var(--accent);
  font-weight: 800;
}

.hero-note {
  max-width: 40rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-service-line {
  margin: 1rem 0 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 40px rgba(14, 90, 99, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
}

.hero-points li {
  padding-left: 1rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-surface {
  position: relative;
  width: min(100%, 30rem);
  min-height: 34rem;
  padding: 1.2rem;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.4) 58%, transparent 70%),
    linear-gradient(160deg, rgba(14, 90, 99, 0.16), rgba(214, 161, 95, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-surface::before,
.hero-surface::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.hero-surface::before {
  width: 16rem;
  height: 16rem;
  right: -3rem;
  top: -3rem;
  background: rgba(214, 161, 95, 0.18);
}

.hero-surface::after {
  width: 12rem;
  height: 12rem;
  left: -2rem;
  bottom: -2rem;
  background: rgba(14, 90, 99, 0.18);
}

.surface-card {
  position: absolute;
  left: 1.4rem;
  right: 4rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 36px rgba(28, 30, 37, 0.12);
  backdrop-filter: blur(12px);
}

.surface-card:first-child {
  top: 2rem;
}

.surface-card-secondary {
  top: 15rem;
  left: 4rem;
  right: 1.2rem;
}

.surface-card p {
  margin: 0.8rem 0 0;
  line-height: 1.65;
  color: var(--muted);
}

.surface-price {
  display: inline-block;
  margin-top: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.section,
.visit-grid,
.process,
.request-section,
.site-footer {
  margin-top: 2.5rem;
}

.section,
.process,
.request-section,
.site-footer {
  padding: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 34px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(31, 33, 40, 0.06);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.section-heading {
  max-width: 42rem;
}

.section-body p,
.section p,
.request-copy p,
.site-footer p,
.about p {
  margin: 0;
  line-height: 1.75;
}

.visit-grid,
.process-grid,
.section-columns,
.request-section {
  display: grid;
  gap: 1.2rem;
}

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

.visit-block {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(31, 33, 40, 0.08);
}

.visit-block p {
  max-width: 28rem;
  margin-top: 0.85rem;
}

.anticipated-price {
  font-weight: 800;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--accent);
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.resource-grid a {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.resource-grid span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.check-list,
.warning-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.warning-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-top: 0.9rem;
  line-height: 1.65;
}

.check-list li::before,
.warning-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.check-list li::before {
  background: var(--accent);
}

.warning-list li::before {
  background: var(--warning);
}

.safety-panel {
  padding: 1.75rem;
  border-radius: 30px;
  background: rgba(122, 63, 29, 0.08);
  border: 1px solid rgba(122, 63, 29, 0.12);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.process-grid article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.detail-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.detail-stack div {
  padding: 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

details {
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.75rem;
}

.request-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.anchor-alias {
  position: absolute;
  top: -6rem;
}

.notice {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.9rem 1rem;
  margin-top: 1.3rem;
  border-radius: 18px;
  background: rgba(122, 63, 29, 0.08);
  border: 1px solid rgba(122, 63, 29, 0.14);
}

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

.hidden {
  display: none;
}

.request-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}

.waitlist-safety-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(29, 36, 48, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(14, 90, 99, 0.18);
  border-color: rgba(14, 90, 99, 0.35);
}

.full-width {
  grid-column: 1 / -1;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer p:first-child {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-header,
  .site-nav,
  .hero,
  .section-split,
  .visit-grid,
  .resource-grid,
  .section-columns,
  .process-grid,
  .request-section,
  .site-footer,
  .request-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-header {
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
  }

  .site-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 0.65rem 0.9rem;
  }

  .hero {
    min-height: auto;
    gap: 1.25rem;
    padding: 0.75rem 0 1.5rem;
  }

  .hero-copy {
    padding: 1.25rem 0 0.25rem;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-surface {
    display: grid;
    gap: 0.85rem;
    min-height: auto;
    padding: 0.85rem;
    border-radius: 30px;
  }

  .surface-card {
    position: relative;
    inset: auto;
    padding: 1.1rem;
    border-radius: 24px;
  }

  .surface-card-secondary {
    inset: auto;
  }

  .form-meta,
  .site-footer {
    align-items: flex-start;
  }

}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-bottom: 1.5rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 0.75rem;
    height: 0.75rem;
    box-shadow: 0 0 0 0.25rem rgba(14, 90, 99, 0.1);
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span,
  .detail-label,
  .surface-label,
  .visit-type,
  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12vw, 3.2rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 0.45rem;
  }

  .hero {
    padding: 0.25rem 0 1rem;
  }

  .hero-copy {
    padding: 0.75rem 0 0;
  }

  .hero-service-line {
    margin-top: 0.35rem;
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-text {
    margin-top: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .status-line {
    margin-top: 0.65rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 0.95rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.72rem 1rem;
  }

  .hero-points {
    gap: 0.65rem;
    margin-top: 0.95rem;
    font-size: 0.86rem;
  }

  .hero-note {
    margin-top: 0.75rem;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-surface::before,
  .hero-surface::after {
    opacity: 0.55;
  }

  .section,
  .visit-grid,
  .process,
  .request-section,
  .site-footer {
    margin-top: 1.2rem;
  }

  .section,
  .process,
  .request-section,
  .site-footer,
  .visit-block {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .hero-surface {
    border-radius: 24px;
  }

  .surface-card p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .surface-price {
    margin-top: 0.65rem;
  }

  .section p,
  .request-copy p,
  .site-footer p,
  .visit-block p,
  .faq-list p,
  .process-grid p {
    line-height: 1.6;
  }

  .check-list li,
  .warning-list li {
    margin-top: 0.7rem;
    line-height: 1.55;
  }

  .notice {
    align-items: flex-start;
    margin-top: 1rem;
  }

  .request-form {
    gap: 0.8rem;
  }

  .request-form input,
  .request-form select,
  .request-form textarea {
    min-height: 2.9rem;
    padding: 0.82rem 0.9rem;
    border-radius: 16px;
  }

  .field-help,
  .waitlist-safety-line,
  #form-status,
  .site-footer p:last-child {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .form-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .form-meta .button {
    width: 100%;
  }
}
