:root {
  --ink: #18231f;
  --muted: #68716c;
  --gold: #a87942;
  --gold-dark: #80572c;
  --paper: #f5f1e8;
  --cream: #fcfaf5;
  --line: rgba(24, 35, 31, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.site-header {
  display: flex;
  width: min(calc(100% - 2.5rem), 1180px);
  margin: 0 auto;
  padding: 1.5rem 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: grid;
  width: 3.125rem;
  height: 3.125rem;
  place-items: center;
  border: 1px solid rgba(168, 121, 66, 0.65);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-indent: 0.1em;
}

.header-contact,
.phone-link,
footer a {
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 650;
  text-underline-offset: 0.25rem;
}

.section-shell {
  width: min(calc(100% - 2.5rem), 1180px);
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: 680px;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.hero-content {
  text-align: left;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

h1,
h2,
h3 { font-family: Georgia, "Times New Roman", serif; }

h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(3.25rem, 5.4vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 560px;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.remote-note {
  margin: 1rem 0 0;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.6;
}

.hero-media {
  position: relative;
  width: 100%;
  padding: 0.65rem;
  border: 1px solid rgba(168, 121, 66, 0.42);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 1.75rem 4rem rgba(24, 35, 31, 0.12);
}

.hero-media::before {
  position: absolute;
  inset: -0.75rem auto auto -0.75rem;
  width: 3.5rem;
  height: 3.5rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  content: "";
}

.hero-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 18px;
  background: #17201d;
  object-fit: contain;
}

.actions {
  display: flex;
  margin-top: 2.5rem;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--gold); border-color: var(--gold); }
.button-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.button-secondary { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-secondary:hover { background: #2b3934; border-color: #2b3934; }

.phone-link { display: inline-block; margin-top: 1.25rem; }

.content-section { padding-block: clamp(5rem, 9vw, 8rem); }
.section-heading { margin-bottom: 2.5rem; }
.section-heading.centered { text-align: center; }

.plans-hint {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item { padding: 2rem 1.5rem; border-right: 1px solid var(--line); }
.service-item:last-child { border-right: 0; }
.service-item span { color: var(--gold); font-size: 0.68rem; letter-spacing: 0.12em; }
.service-item h3 { margin: 2.5rem 0 0; font-size: 1.35rem; font-weight: 400; }

.plans-section {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--paper);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
}

.plan-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 1.25rem 3rem rgba(24, 35, 31, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.plan-card:hover { transform: translateY(-4px); border-color: rgba(168, 121, 66, 0.6); }
.plan-card.featured { border-color: var(--gold); background: #fffdf8; }
.plan-card[open],
.plan-card:focus-within { border-color: rgba(168, 121, 66, 0.78); box-shadow: 0 1.5rem 3.5rem rgba(24, 35, 31, 0.11); }

.plan-card summary {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: clamp(2rem, 4vw, 3rem);
  flex-direction: column;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.plan-card summary::-webkit-details-marker { display: none; }
.plan-card summary::marker { display: none; content: ""; }
.plan-card summary:focus-visible { box-shadow: inset 0 0 0 3px rgba(168, 121, 66, 0.42); }
.plan-label { margin: 0 0 3rem; color: var(--gold-dark); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.17em; text-transform: uppercase; }
.plan-hours { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.15; }
.plan-period { margin-top: 0.55rem; color: var(--muted); }

.plan-toggle {
  position: absolute;
  right: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(168, 121, 66, 0.55);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.15rem;
  transition: transform 220ms ease, background-color 220ms ease;
}

.plan-card[open] .plan-toggle { transform: rotate(45deg); background: rgba(168, 121, 66, 0.1); }

.plan-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 320ms ease, opacity 240ms ease;
}

.plan-details {
  min-height: 0;
  padding: 0 clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.plan-card[open] .plan-reveal,
.plan-card:hover .plan-reveal,
.plan-card:focus-within .plan-reveal {
  grid-template-rows: 1fr;
  opacity: 1;
}

.plan-details p { margin: 0 0 0.9rem; color: var(--gold-dark); font-size: 0.78rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.plan-details ul { margin: 0; padding-left: 1.15rem; color: var(--muted); line-height: 1.7; }
.plan-details li + li { margin-top: 0.35rem; }

.statement { padding: clamp(5rem, 10vw, 9rem) 0; text-align: center; }
.statement > p { max-width: 58rem; margin: 0 auto; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.3; }
.actions.compact { margin-top: 2.25rem; justify-content: center; }

footer {
  display: flex;
  width: min(calc(100% - 2.5rem), 1180px);
  margin: 0 auto;
  padding: 1.75rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

footer p { margin: 0; }

@media (max-width: 52rem) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-media { width: min(100%, 36rem); margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(2) { border-right: 0; }
  .service-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-label { margin-bottom: 2rem; }
}

@media (max-width: 36rem) {
  .site-header,
  .section-shell,
  footer { width: min(calc(100% - 2rem), 1180px); }
  .header-contact { display: none; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item,
  .service-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-item:last-child { border-bottom: 0; }
  .service-item h3 { margin-top: 1.5rem; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button,
  .plan-card,
  .plan-toggle,
  .plan-reveal { transition: none; }
}
