@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Inter+Tight:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --page: #f4f7f5;
  --surface: #ffffff;
  --surface-soft: #edf3ef;
  --ink: #111312;
  --muted: #5d655f;
  --edge: #dfe7e2;
  --heat: #f4b23f;
  --hot: #d86432;
  --sage: #b8d8c1;
  --cool: #dbece5;
  --shadow: 0 22px 50px -34px rgba(17, 19, 18, 0.32);
  --radius: 8px;
  --container: 1180px;
  --pad: clamp(1rem, 4vw, 2rem);
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 178, 63, 0.2), transparent 32rem),
    linear-gradient(180deg, #fbfcfb 0%, var(--page) 32rem, #ffffff 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 100, 50, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--pad) * 2), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.concept-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem var(--pad);
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
}

.concept-bar p {
  margin: 0;
}

.concept-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 245, 0.9);
  border-bottom: 1px solid rgba(223, 231, 226, 0.85);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 86px;
  height: auto;
}

.brand span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a,
.story-links a,
.arrival-grid a,
.class-card a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.story-links a:hover,
.arrival-grid a:hover,
.class-card a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--edge);
}

.hero {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: 5.6rem;
  line-height: 1.01;
}

h1 span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.25rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 38rem;
  margin: 0;
}

.quick-facts div {
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

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

.class-ticket {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.ticket-label {
  margin-bottom: 0.3rem;
  color: var(--hot);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.class-ticket strong,
.class-ticket span,
.class-ticket a {
  display: block;
}

.class-ticket span {
  margin: 0.2rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.class-ticket a {
  font-weight: 800;
}

.trust-strip {
  padding: 1rem 0 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.fact-grid div {
  min-height: 150px;
  padding: 1.25rem;
  border-right: 1px solid var(--edge);
}

.fact-grid div:last-child {
  border-right: 0;
}

.fact-grid span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-grid strong {
  display: block;
  margin: 0.25rem 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.fact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.class-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.2rem;
  box-shadow: 0 16px 42px -34px rgba(17, 19, 18, 0.4);
}

.class-card p {
  color: var(--muted);
}

.class-card a {
  margin-top: auto;
  font-weight: 800;
}

.heat-chip {
  align-self: flex-start;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.class-card.hot .heat-chip {
  background: rgba(216, 100, 50, 0.15);
  color: #8f3519;
}

.class-card.warm .heat-chip {
  background: rgba(244, 178, 63, 0.22);
  color: #785108;
}

.class-card.calm .heat-chip {
  background: rgba(184, 216, 193, 0.5);
  color: #24513a;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 1rem;
}

.inline-cta p {
  margin: 0;
  font-weight: 700;
}

.inline-cta .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  flex: 0 0 auto;
}

.first-visit {
  background: linear-gradient(180deg, rgba(237, 243, 239, 0.75), rgba(255, 255, 255, 0.96));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.prep-list {
  display: grid;
  gap: 1rem;
}

.prep-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem;
}

.prep-list span {
  grid-row: span 2;
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 999px;
  background: var(--cool);
  color: #24513a;
  font-weight: 900;
}

.prep-list p {
  margin: 0;
  color: var(--muted);
}

.studio-story {
  background: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid p {
  color: var(--muted);
}

.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1.4rem;
  font-weight: 800;
}

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

.arrival-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.2rem;
}

.arrival-grid p {
  color: var(--muted);
}

.arrival-grid a {
  margin-top: auto;
  font-weight: 800;
}

.owner-cta {
  padding: 1rem 0 5rem;
}

.owner-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 178, 63, 0.25), transparent 45%),
    var(--ink);
  color: #fff;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.owner-panel h2,
.owner-panel .eyebrow {
  color: #fff;
}

.owner-panel h2 {
  max-width: 720px;
  font-size: 2.8rem;
}

.owner-panel p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.owner-panel .btn {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.site-footer {
  border-top: 1px solid var(--edge);
  background: #fff;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.site-footer img {
  margin-bottom: 0.8rem;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.2rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 920px) {
  .concept-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .story-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .owner-panel h2 {
    font-size: 2.55rem;
  }

  .hero-media,
  .hero-media > img {
    min-height: 420px;
  }

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

  .fact-grid div:nth-child(2) {
    border-right: 0;
  }

  .fact-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--edge);
  }

  .footer-grid,
  .owner-panel,
  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .concept-bar {
    font-size: 0.75rem;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 0.75rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 74px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2,
  .owner-panel h2 {
    font-size: 2.25rem;
  }

  .quick-facts,
  .fact-grid,
  .class-grid,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--edge);
  }

  .fact-grid div:last-child {
    border-bottom: 0;
  }

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

  .class-ticket {
    position: static;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .prep-list div {
    grid-template-columns: 1fr;
  }

  .prep-list span {
    grid-row: auto;
    margin-bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
