:root {
  --ink: #16221d;
  --muted: #5d6a62;
  --line: #dfe6df;
  --paper: #fbfaf6;
  --white: #fff;
  --green: #123d2d;
  --teal: #0f766e;
  --gold: #c28b22;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 6px;
  font-size: 12px;
}

nav {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 61, 45, 0.9), rgba(18, 61, 45, 0.48), rgba(18, 61, 45, 0.12));
}

.hero-copy {
  position: relative;
  max-width: 850px;
  padding: 84px clamp(16px, 5vw, 72px);
  color: #fff;
}

.page-hero,
.band,
.split,
.cta,
.booking-section {
  padding: clamp(44px, 7vw, 88px) clamp(16px, 5vw, 72px);
}

.page-hero {
  color: #fff;
  background: var(--green);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.button.secondary {
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button-row.center {
  justify-content: center;
}

.section-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

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

.grid article,
.proof,
.capture-card,
.embed-placeholder {
  padding: clamp(20px, 4vw, 32px);
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.pricing-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pricing-card.featured {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: inset 0 0 0 2px rgba(15, 118, 110, 0.08);
}

.pricing-card.medical-card {
  border-color: rgba(194, 139, 34, 0.55);
  box-shadow: inset 0 0 0 2px rgba(194, 139, 34, 0.09);
}

.package-image {
  width: 100%;
  margin-bottom: 22px;
  border-radius: 6px;
  aspect-ratio: 1;
  object-fit: cover;
}

.price {
  margin: 10px 0 12px;
  color: var(--green);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 950;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #fff;
}

.proof,
.capture-card,
.embed-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 720px;
  margin: 14px auto;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.small {
  font-size: 13px;
}

.hidden-field {
  display: none;
}

.embed-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  text-align: center;
}

.booking-frame {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.embed-placeholder span {
  display: block;
  color: #a43d32;
  font-weight: 800;
}

.footer {
  padding: 24px clamp(16px, 5vw, 72px);
  color: #fff;
  background: var(--green);
}

.footer p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .grid.four,
  .split,
  .pricing-grid,
  .pricing-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(18, 61, 45, 0.9), rgba(18, 61, 45, 0.38));
  }
}

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

.blog-grid article {
  min-height: 220px;
}

.blog-grid a {
  text-decoration: none;
}

.blog-composer-section {
  align-items: stretch;
}

.blog-form {
  display: grid;
}

.saved-post-empty {
  padding: clamp(20px, 4vw, 32px);
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.saved-post-meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(16px, 5vw, 72px);
}

.article h1 {
  color: var(--green);
  font-size: clamp(38px, 6vw, 64px);
}

.article p {
  font-size: 18px;
}

.article-cta {
  margin-top: 36px;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}
