@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Public+Sans:wght@400;500;700&display=swap');
/* tailwind build import removed for static deploy */
@source "../src";

:root {
  --ink: #141210;
  --copper: #B45F2E;
  --copper-dark: #8F4A22;
  --copper-light: #D98D5B;
  --paper: #FAF7F2;
  --sand: #F1ECE3;
  --muted: #6B625A;
  --line: rgba(20, 18, 16, 0.18);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-lockup {
  font-family: "Fraunces", Georgia, serif;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(180, 95, 46, 0.28), transparent 34%),
    var(--ink);
  color: var(--paper);
}

.site-header {
  position: relative;
  z-index: 3;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.16);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.brand-lockup b {
  color: var(--copper-light);
}

.brand-mark {
  width: 64px;
  height: 36px;
  flex: 0 0 64px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 19px;
  border: 1px solid var(--copper-light);
  border-radius: 8px;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-call:hover {
  background: rgba(180, 95, 46, 0.24);
}

.header-call:active {
  transform: translateY(1px);
}

.hero-main {
  position: relative;
  z-index: 2;
  display: block;
  padding-block: clamp(64px, 10vw, 116px) 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  animation: hero-rise 700ms cubic-bezier(.2,.7,.2,1) both;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--copper-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(47px, 5.8vw, 78px);
  font-weight: 700;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--copper-light);
}

.hero-subhead {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(250, 247, 242, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-booking {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--copper);
  border-radius: 8px;
  background: var(--copper);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 9px 30px rgba(143, 74, 34, 0.24);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-booking:hover {
  background: var(--copper-dark);
  box-shadow: 0 12px 34px rgba(143, 74, 34, 0.36);
  transform: translateY(-2px);
}

.hero-booking:active {
  transform: translateY(1px) scale(0.99);
}

.hero-pricing {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(250, 247, 242, 0.42);
  border-radius: 8px;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-pricing:hover {
  border-color: var(--copper-light);
  color: var(--copper-light);
}

.hero-pricing:active {
  transform: translateY(1px);
}

.hero-art {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 141, 91, 0.4);
  border-radius: var(--radius);
  background: #211A16;
  box-shadow: 0 28px 80px rgba(20, 18, 16, 0.42);
  animation: hero-settle 850ms cubic-bezier(.2,.7,.2,1) both;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(20, 18, 16, 0.22);
  transition: background-color 380ms ease;
}

.hero-art:hover::after {
  background: rgba(20, 18, 16, 0.02);
}

.hero-art img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  transition: filter 380ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.hero-art:hover img {
  filter: saturate(1) brightness(1.02);
  transform: scale(1.018);
}

.hero-art figcaption {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  left: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(20, 18, 16, 0.8);
  color: var(--paper);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 247, 242, 0.18);
}

.hero-stats p {
  margin: 0;
  padding: 23px 24px 27px 0;
}

.hero-stats p + p {
  padding-left: 24px;
  border-left: 1px solid rgba(250, 247, 242, 0.18);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--copper-light);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}

.hero-stats span {
  color: rgba(250, 247, 242, 0.68);
  font-size: 14px;
}

.how {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 8vw, 110px);
  padding-block: clamp(82px, 11vw, 140px);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 28px;
}

.section-intro h2,
.pricing-heading h2,
.faq h2,
.ticket h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.5vw, 70px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--copper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.95;
}

.step h3 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.step p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.pricing {
  padding-block: clamp(82px, 11vw, 140px);
  background: var(--sand);
}

.pricing-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.pricing-heading p {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  align-items: stretch;
  gap: 14px;
}

.plan {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(20, 18, 16, 0.15);
  border-radius: var(--radius);
  background: var(--paper);
}

.plan-featured {
  background: var(--copper);
  color: var(--paper);
  box-shadow: 0 18px 55px rgba(143, 74, 34, 0.18);
}

.popular {
  align-self: flex-start;
  margin-bottom: 28px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.plan-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.plan-price strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1;
}

.plan-price span {
  margin-top: 5px;
  color: var(--muted);
}

.plan-featured .plan-price span {
  color: rgba(250, 247, 242, 0.76);
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(20, 18, 16, 0.16);
  list-style: none;
}

.plan-featured ul {
  border-color: rgba(250, 247, 242, 0.34);
}

.plan li {
  position: relative;
  padding-left: 23px;
}

.plan li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  transform: rotate(-45deg);
}

.plan-featured li::before {
  border-color: var(--paper);
}

.plan-call {
  min-height: 50px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(20, 18, 16, 0.3);
  border-bottom: 1px solid rgba(20, 18, 16, 0.3);
  color: var(--copper-dark);
  font-weight: 700;
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.plan-featured .plan-call {
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--paper);
}

.plan-call:hover {
  padding-inline: 8px;
}

.promise-strip {
  padding-block: clamp(76px, 9vw, 116px);
  background: var(--ink);
  color: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(217, 141, 91, 0.5);
  border-bottom: 1px solid rgba(217, 141, 91, 0.5);
}

.promise-grid article {
  min-height: 330px;
  padding: 34px clamp(20px, 3vw, 40px) 42px;
}

.promise-grid article + article {
  border-left: 1px solid rgba(217, 141, 91, 0.5);
}

.promise-grid span {
  color: var(--copper-light);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
}

.promise-grid h2 {
  min-height: 125px;
  margin: 32px 0 30px;
  color: var(--paper);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.promise-grid p {
  margin-bottom: 0;
  color: rgba(250, 247, 242, 0.72);
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 8vw, 120px);
  padding-block: clamp(82px, 11vw, 140px);
}

.faq-heading p {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary span {
  color: var(--copper);
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  text-align: center;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin: 0;
  padding: 0 48px 28px 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(64px, 9vw, 110px) 0;
  background-color: var(--sand);
  background-image:
    linear-gradient(rgba(241, 236, 227, 0.93), rgba(241, 236, 227, 0.93)),
    url("/assets/oss-pattern.png");
  background-size: auto, 560px 560px;
}

.ticket {
  max-width: 980px;
  padding: clamp(48px, 8vw, 90px) clamp(24px, 7vw, 86px);
  border: 1px solid rgba(20, 18, 16, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(107, 98, 90, 0.13);
  text-align: center;
}

.ticket h2 {
  max-width: 800px;
  margin-inline: auto;
}

.ticket p {
  max-width: 660px;
  margin: 22px auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.ticket a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--copper);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, gap 180ms ease, transform 180ms ease;
}

.ticket a:hover {
  gap: 28px;
  background: var(--copper-dark);
}

.ticket a:active {
  transform: translateY(1px);
}

.site-footer {
  padding-block: 30px;
  background: var(--ink);
  color: var(--paper);
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-line a {
  color: var(--copper-light);
  text-decoration-color: rgba(217, 141, 91, 0.5);
  text-underline-offset: 4px;
}

.root-state {
  min-height: 100dvh;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 32px;
  background: var(--paper);
  text-align: center;
}

.root-state h1,
.root-state p {
  margin: 0;
}

.root-state a,
.root-state button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: var(--copper);
  color: var(--paper);
  font: 700 16px "Public Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.root-state-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

@keyframes hero-rise {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

@keyframes hero-settle {
  from { transform: translateY(22px) scale(0.985); }
  to { transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .hero-main,
  .how,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero-main {
    padding-top: 48px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-art {
    max-height: 520px;
  }

  .hero-art img {
    min-height: 0;
  }

  .section-intro {
    position: static;
  }

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

  .plan {
    min-height: 0;
  }

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

  .promise-grid article {
    min-height: 0;
  }

  .promise-grid article + article {
    border-top: 1px solid rgba(217, 141, 91, 0.5);
    border-left: 0;
  }

  .promise-grid h2 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand-lockup {
    max-width: 248px;
    font-size: 16px;
  }

  .brand-mark {
    width: 52px;
    height: 32px;
    flex-basis: 52px;
  }

  .header-call {
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 62px);
    line-height: 0.98;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-booking,
  .hero-pricing {
    width: 100%;
  }

  .hero-art {
    max-height: 440px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-stats p {
    padding: 16px 0;
  }

  .hero-stats p + p {
    padding-left: 0;
    border-top: 1px solid rgba(250, 247, 242, 0.18);
    border-left: 0;
  }

  .how,
  .faq {
    gap: 42px;
  }

  .step {
    grid-template-columns: 74px 1fr;
    gap: 16px;
  }

  .step-number {
    font-size: 44px;
  }

  .pricing-heading {
    margin-bottom: 34px;
  }

  .promise-grid article {
    padding: 28px 4px 34px;
  }

  .faq summary {
    min-height: 76px;
    font-size: 16px;
    line-height: 1.35;
  }

  .ticket {
    width: min(100% - 32px, 980px);
  }

  .ticket a {
    width: 100%;
    padding-inline: 14px;
  }

  .footer-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-art img,
  .hero-art:hover img {
    filter: saturate(1) brightness(1);
    transform: none;
  }
}
