:root {
  --ink: #252525;
  --muted: #685f55;
  --paper: #faf5ec;
  --cream: #efe3d2;
  --yellow: #d9b93b;
  --sage: #5f715f;
  --sage-soft: #dfe6d8;
  --clay: #9d6f54;
  --line: #ddcfbb;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(239, 227, 210, 0.96);
  border-bottom: 1px solid rgba(157, 111, 84, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.3vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 72px) clamp(54px, 8vw, 96px);
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8.4vw, 128px);
  font-weight: 500;
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  margin: 28px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.secondary {
  background: rgba(95, 113, 95, 0.08);
  border-color: rgba(95, 113, 95, 0.38);
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(37, 37, 37, 0.1);
  background: var(--cream);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--paper);
  background: var(--sage);
}

.intro-band p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
}

.section,
.split-section,
.about-section,
.contact-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 42px;
}

.offer-card {
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-card[open] {
  border-color: rgba(89, 104, 92, 0.42);
  background: #fbf8f2;
  box-shadow: 0 18px 38px rgba(37, 37, 37, 0.07);
}

.offer-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  cursor: pointer;
  list-style: none;
}

.offer-card summary::-webkit-details-marker {
  display: none;
}

.offer-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(95, 113, 95, 0.32);
  border-radius: 50%;
  color: var(--sage);
  font-size: 24px;
  line-height: 1;
}

.offer-card[open] summary::after {
  content: "-";
}

.offer-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.offer-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 36px;
  background: url("assets/chandra-symbol-site.png") center / contain no-repeat;
  opacity: 0.82;
}

.offer-title {
  display: block;
  grid-column: 1 / -1;
  margin-top: -2px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.offer-detail {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.offer-detail h4 {
  margin: 18px 0 0;
  color: var(--sage);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-detail h4:first-child {
  margin-top: 0;
}

.offer-detail p {
  margin-top: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background: #f2eadf;
}

.split-section p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.18);
}

.schedule-item span {
  color: var(--sage);
  font-weight: 700;
}

.schedule-item strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.schedule-detail {
  display: grid;
  gap: 10px;
}

.schedule-detail p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-badge.available {
  color: var(--paper);
  background: var(--sage);
}

.status-badge.full {
  color: var(--paper);
  background: var(--clay);
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card.featured {
  border-color: rgba(95, 113, 95, 0.42);
  background: #f8f5ec;
}

.price-card.trial {
  background: var(--sage-soft);
}

.price-card h3 {
  margin-bottom: 18px;
}

.price {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.price-card p:not(.price) {
  margin: 18px 0 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.about-visual {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}

.profile-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  color: var(--paper);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: var(--sage-soft);
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(251, 247, 239, 0.76);
  font-size: 19px;
}

.contact-section .location-line {
  margin: 18px 0 0;
  color: var(--sage-soft);
  font-weight: 800;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--sage-soft);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-page {
  min-height: calc(100vh - 150px);
  padding-top: clamp(88px, 10vw, 140px);
}

.legal-page h1 {
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 1;
}

.legal-section:nth-of-type(even) {
  background: #f6efe4;
}

.legal-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.legal-content {
  max-width: 860px;
  color: var(--muted);
}

.legal-content h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 380px;
  }

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

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

  .contact-section {
    align-items: start;
  }

  .legal-section {
    grid-template-columns: 1fr;
  }

  .legal-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 15px;
  }

  .hero-actions,
  .site-footer,
  .intro-band {
    flex-direction: column;
  }

  .intro-band,
  .offer-grid,
  .schedule-item {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .about-visual {
    min-height: 360px;
  }

  .profile-photo {
    min-height: 360px;
  }

  .contact-link,
  .button {
    width: 100%;
  }

  .contact-options {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
