@charset "UTF-8";

:root {
  --color-orange: #f57a1f;
  --color-orange-dark: #dd5f0a;
  --color-peach: #fff0e5;
  --color-cream: #fffaf3;
  --color-pink: #f4879c;
  --color-pink-soft: #fff0f2;
  --color-purple: #aa7ab5;
  --color-brown: #5d3024;
  --color-text: #51382f;
  --color-white: #fff;
  --color-border: #f0d9c8;
  --content-width: 1180px;
  --side-space: max(4vw, 24px);
  --radius-large: 30px;
  --radius-medium: 18px;
  --shadow-soft: 0 12px 35px rgba(112, 61, 29, 0.12);
  --font-serif: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --font-sans: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.85;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.4;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 10px 18px;
  color: #fff;
  background: var(--color-brown);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus {
  top: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.content-wrap {
  width: min(calc(100% - (var(--side-space) * 2)), var(--content-width));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: clamp(68px, 8vw, 110px) 0;
}
.section-eyebrow {
  margin-bottom: 5px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 0.16em;
}
.section-highlight {
  color: var(--color-orange);
  font-weight: 700;
}
.rounded-photo {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-large);
}
.rounded-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 18px rgba(67, 39, 25, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (var(--side-space) * 2)), 1320px);
  height: 100%;
  margin: auto;
}
.logo,
.footer-logo {
  color: var(--color-orange);
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 2.3vw, 3.2rem);
  font-weight: 700;
  text-decoration: none;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}
.global-nav a {
  position: relative;
  font-weight: 700;
  text-decoration: none;
}
.global-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--color-orange);
  content: '';
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 11px 20px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 999px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 82px));
  color: #fff;
  isolation: isolate;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 42%;
}
.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(100, 43, 15, 0.83) 0%, rgba(116, 54, 17, 0.55) 37%, rgba(82, 39, 20, 0.08) 67%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - (var(--side-space) * 2)), 1320px);
  min-height: min(740px, calc(100vh - 82px));
  margin: auto;
  padding-block: 60px;
}
.hero-kicker {
  margin-bottom: 14px;
  font-weight: 700;
}
.hero h1 {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 5.2vw, 7.4rem);
  letter-spacing: 0.03em;
  text-shadow: 0 3px 12px rgba(61, 25, 9, 0.55);
}
.hero-lead {
  margin-bottom: 32px;
  font-size: clamp(1.7rem, 1.7vw, 2.1rem);
  font-weight: 700;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 50, 19, 0.2);
}
.button-primary {
  color: #fff;
  background: var(--color-orange);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-orange-dark);
}
.button-light {
  color: var(--color-brown);
  background: #fff;
}
.button-light:hover,
.button-light:focus-visible {
  color: var(--color-orange-dark);
}
.button-outline {
  color: var(--color-orange-dark);
  background: #fff;
  border-color: var(--color-orange);
}
.button-outline:hover,
.button-outline:focus-visible {
  color: #fff;
  background: var(--color-orange);
}

.about::before,
.about::after {
  position: absolute;
  z-index: -1;
  color: #efba77;
  font-size: 8rem;
  opacity: 0.45;
  content: '❀';
}
.about::before {
  top: 60px;
  left: 1.5%;
  transform: rotate(-18deg);
}
.about::after {
  right: 1.5%;
  bottom: 45px;
  transform: rotate(18deg);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.35fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}
.about-copy h2,
.practice h2,
.performance h2,
.contact h2 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 3.5vw, 4.6rem);
  color: var(--color-brown);
}
.about-copy p:last-child {
  margin-bottom: 0;
}
.about-photo {
  aspect-ratio: 1.7;
  box-shadow: var(--shadow-soft);
}

.beginner {
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
}
.decorated-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  text-align: center;
}
.decorated-title::before,
.decorated-title::after {
  width: min(16vw, 170px);
  border-top: 3px dotted #f2cda7;
  content: '';
}
.decorated-title span {
  color: #efb85a;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  text-align: center;
  box-shadow: 0 7px 22px rgba(86, 44, 26, 0.06);
}
.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 1.8rem;
}
.feature-card p {
  margin: 0;
}
.feature-pink {
  background: #fff5f6;
}
.feature-pink h3 {
  color: #e8677f;
}
.feature-orange {
  background: #fff8ed;
}
.feature-orange h3 {
  color: #ec921d;
}
.feature-purple {
  background: #fbf6fc;
}
.feature-purple h3 {
  color: #9f6bab;
}
.feature-coral {
  background: #fff5f4;
}
.feature-coral h3 {
  color: #df6475;
}
.feature-icon {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fff;
  background: var(--color-pink);
  border-radius: 50%;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
.feature-orange .feature-icon {
  background: #f5a523;
}
.feature-purple .feature-icon {
  background: var(--color-purple);
}
.feature-coral .feature-icon {
  background: #ec7890;
}
.beginner-note {
  margin: 28px 0 0;
  text-align: center;
}
.beginner-note span {
  color: var(--color-pink);
}

.practice {
  background: #fffaf5;
}
.practice-heading {
  margin-bottom: 34px;
}
.practice-heading p:last-child {
  margin-bottom: 0;
}
.practice-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}
.practice-grid figure {
  aspect-ratio: 1 / 1.12;
}
.practice-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 20px 0;
  list-style: none;
}
.practice-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 15px 17px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.practice-steps span {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--color-pink);
  border-radius: 50%;
  font-weight: 700;
}
.practice-steps li:nth-child(2) span {
  background: var(--color-purple);
}
.practice-steps li:nth-child(3) span {
  background: #f5a523;
}
.practice-steps small {
  font-size: 1.6rem;
}

.section-intro {
  margin: -28px 0 22px;
  text-align: center;
}
.activity-tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.activity-tags li {
  padding: 5px 22px;
  background: #fdeff1;
  border-radius: 999px;
  color: #df6e82;
  font-weight: 700;
}
.activity-tags li:nth-child(2) {
  color: #e78f2e;
  background: #fff2de;
}
.activity-tags li:nth-child(3) {
  color: #9b72aa;
  background: #f5edf8;
}
.activity-tags li:nth-child(4) {
  color: #6b9a42;
  background: #eff7e9;
}
.activity-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  align-items: stretch;
  gap: 20px;
}
.activity-main {
  aspect-ratio: 1.7;
}
.activity-side {
  height: 100%;
}
.activity-gallery img {
  object-position: center 42%;
}

.gallery {
  background: var(--color-cream);
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-grid figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 0.92;
  border-radius: 18px;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-grid figure:hover img {
  transform: scale(1.04);
}

.join {
  padding-top: 40px;
}
.join-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  align-items: center;
  gap: 36px;
  padding: clamp(32px, 5vw, 55px);
  background: linear-gradient(105deg, #fff0ed, #fff6e9);
  border-radius: var(--radius-large);
}
.join-message {
  text-align: center;
}
.join-message h2 {
  margin-bottom: 10px;
  color: var(--color-brown);
  font-family: var(--font-serif);
  font-size: clamp(2.7rem, 3vw, 4rem);
}
.join-message p {
  margin: 0;
}
.join-notes {
  display: block;
  color: #f6a084;
  font-size: 3rem;
}
.activity-info {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.activity-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--color-border);
}
.activity-info div:last-child {
  border-bottom: 0;
}
.activity-info dt,
.activity-info dd {
  margin: 0;
  padding: 8px 12px;
}
.activity-info dt {
  color: var(--color-orange);
  font-weight: 700;
}
.activity-info dd {
  border-left: 1px solid var(--color-border);
}

.performance {
  padding-top: 0;
}
.performance-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 330px;
  background: #fff8eb;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}
.performance-panel figure {
  align-self: stretch;
  margin: 0;
}
.performance-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.performance-copy {
  padding: clamp(35px, 6vw, 70px);
}
.performance-copy p:not(.section-eyebrow) {
  margin-bottom: 25px;
}

.contact {
  overflow: hidden;
  background: linear-gradient(100deg, #fff 0 53%, #fff8ed 53%);
}
.contact::after {
  position: absolute;
  right: 3%;
  bottom: -105px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 40% 35%, #fff59e 0 6%, transparent 7%), radial-gradient(circle at 60% 30%, #f8a9b5 0 7%, transparent 8%), radial-gradient(circle at 50% 52%, #f5b244 0 9%, transparent 10%), radial-gradient(ellipse at 50% 90%, #7ea85a 0 6%, transparent 7%);
  opacity: 0.55;
  content: '';
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}
.contact-form-wrap {
  position: relative;
  z-index: 1;
}
.contact-form-wrap form {
  display: grid;
  gap: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 12px;
}
.form-row label {
  font-weight: 700;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #d9d0ca;
  border-radius: 7px;
}
.form-row textarea {
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-orange);
  outline: 3px solid rgba(245, 122, 31, 0.18);
}
.submit-button {
  width: min(100%, 440px);
  margin-top: 5px;
  justify-self: end;
  border: 0;
}
.form-status {
  min-height: 1.85em;
  margin: 0;
  color: var(--color-orange-dark);
  font-weight: 700;
  text-align: right;
}
.contact-message {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--color-pink);
  text-align: center;
}
.contact-message p {
  margin: 0;
  font-size: 2rem;
}
.contact-message strong {
  font-size: clamp(2.4rem, 3vw, 3.7rem);
}
.contact-message > span {
  font-size: 3.5rem;
}

.site-footer {
  padding: 28px var(--side-space);
  color: var(--color-brown);
  background: #fff6e7;
  text-align: center;
}
.site-footer p {
  margin: 3px 0;
}
.site-footer small {
  font-size: 1.6rem;
}

.scroll-fadein {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--fade-delay, 0ms);
}
.scroll-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .global-nav {
    gap: 16px;
  }
  .global-nav a {
    font-size: 1.6rem;
  }
  .nav-cta {
    padding-inline: 14px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .practice-grid {
    grid-template-columns: 0.8fr 1fr;
  }
  .practice-grid figure:last-child {
    display: none;
  }
  .join-panel {
    grid-template-columns: 1fr 1fr;
  }
  .join-button {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --side-space: max(4vw, 18px);
    --radius-large: 22px;
  }
  html {
    scroll-padding-top: 70px;
  }
  .site-header {
    height: 70px;
  }
  .menu-toggle {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    color: var(--color-brown);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    transition:
      transform 0.25s,
      top 0.25s;
    content: '';
  }
  .menu-toggle-lines {
    position: relative;
  }
  .menu-toggle-lines::before {
    position: absolute;
    top: -8px;
  }
  .menu-toggle-lines::after {
    position: absolute;
    top: 8px;
  }
  .menu-toggle[aria-expanded='true'] .menu-toggle-lines {
    background: transparent;
  }
  .menu-toggle[aria-expanded='true'] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .global-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px var(--side-space) 28px;
    background: #fff;
    box-shadow: 0 15px 24px rgba(66, 32, 14, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 0.2s,
      transform 0.2s;
  }
  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .global-nav a {
    padding: 13px 5px;
    border-bottom: 1px solid var(--color-border);
  }
  .global-nav .nav-cta {
    margin-top: 12px;
    border: 0;
    text-align: center;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    justify-content: flex-end;
    min-height: 680px;
    padding-bottom: 55px;
  }
  .hero-image {
    object-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(0deg, rgba(82, 35, 14, 0.88) 0%, rgba(80, 34, 14, 0.58) 52%, rgba(80, 34, 14, 0.08) 80%);
  }
  .hero h1 {
    font-size: clamp(3.5rem, 9.6vw, 5.2rem);
  }
  .hero-kicker {
    margin-bottom: 8px;
  }
  .hero-lead br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 440px;
  }
  .section {
    padding-block: 68px;
  }
  .about-grid,
  .performance-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    aspect-ratio: 1.35;
  }
  .about-copy {
    order: 1;
  }
  .about-photo {
    order: 0;
  }
  .decorated-title {
    gap: 9px;
    font-size: 2.6rem;
  }
  .decorated-title::before,
  .decorated-title::after {
    width: 32px;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .practice-grid figure {
    aspect-ratio: 1.3;
  }
  .practice-grid figure:last-child {
    display: block;
  }
  .practice-steps {
    padding: 0;
  }
  .activity-gallery {
    grid-template-columns: 1fr;
  }
  .activity-gallery figure {
    aspect-ratio: 1.45;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .join {
    padding-top: 28px;
  }
  .join-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .join-button {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }
  .performance-panel figure {
    aspect-ratio: 1.55;
  }
  .performance-copy {
    padding: 36px 24px 42px;
  }
  .contact {
    background: linear-gradient(180deg, #fff 0 63%, #fff8ed 63%);
  }
  .contact-grid {
    gap: 70px;
  }
  .contact-message {
    padding: 35px 0;
  }
}

@media (max-width: 520px) {
  .section {
    padding-block: 58px;
  }
  .hero {
    min-height: calc(100svh - 70px);
  }
  .hero-content {
    min-height: calc(100svh - 70px);
  }
  .hero-content br {
    display: none;
  }
  .hero h1 br {
    display: block;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: center;
    padding: 22px;
    text-align: left;
  }
  .feature-icon {
    grid-row: 1 / 3;
    width: 58px;
    height: 58px;
    font-size: 2.3rem;
  }
  .feature-card h3 {
    margin: 0 0 5px;
  }
  .feature-card p {
    grid-column: 2;
  }
  .activity-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    text-align: center;
  }
  .activity-tags li {
    padding-inline: 8px;
  }
  .photo-grid {
    gap: 10px;
  }
  .photo-grid figure {
    aspect-ratio: 1;
    border-radius: 13px;
  }
  .activity-info div {
    grid-template-columns: 96px 1fr;
  }
  .activity-info dt,
  .activity-info dd {
    padding: 8px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .submit-button {
    width: 100%;
  }
  .form-status {
    text-align: left;
  }
  .contact-message {
    gap: 7px;
  }
  .contact-message > span {
    font-size: 2.5rem;
  }
  .contact-message strong {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .scroll-fadein {
    opacity: 1;
    transform: none;
  }
}
