/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-dark:         #483125;
  --color-dark-beige:   #B59F93;
  --color-beige:        #D6C9C2;
  --color-light-beige:  #DDD5CF;
  --color-base:         #645A56;
  --color-bg-light:     #F0E8E5;
  --color-bg-gray:      #F4F3F1;
  --color-bg-white:     #FFFFFF;
  --color-text-dark:    #373737;

  --font-italiana: 'Italiana', serif;
  --font-inria:    'Inria Serif', serif;
  --font-noto:     'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

section[id],
.main-visual {
  scroll-margin-top: 100px;
}

body {
  background: var(--color-bg-white);
  min-width: 320px;
  overflow-x: hidden;
}

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

/* ===========================
   INTRO OVERLAY
   =========================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease;
}

.intro-text {
  font-family: var(--font-italiana);
  font-size: 52px;
  color: var(--color-dark);
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-text span {
  display: block;
  font-size: 20px;
  color: var(--color-dark-beige);
  letter-spacing: 0.25em;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  z-index: 100;
}

.nav-brand {
  font-family: var(--font-italiana);
  color: var(--color-dark);
  line-height: 1.5;
}

.nav-brand a {
  color: inherit;
  text-decoration: none;
}

.nav-brand-main {
  font-size: 24px;
}

.nav-brand-sub {
  font-size: 12px;
  color: var(--color-dark-beige);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  font-family: var(--font-italiana);
  font-size: 20px;
  color: var(--color-dark);
  text-decoration: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.65;
}

/* ===========================
   MAIN VISUAL
   =========================== */
.main-visual {
  width: 100%;
  height: 390px;
  overflow: hidden;
  position: relative;
  margin-top: 88px;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.logo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--font-italiana);
  font-size: 72px;
  font-weight: normal;
  color: var(--color-dark);
  white-space: nowrap;
  line-height: 1;
}

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

.main-visual.is-visible {
  opacity: 1;
}

.main-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

/* ===========================
   NEWS SECTION
   =========================== */
.sec-news {
  display: flex;
  justify-content: center;
  padding: 64px 24px;
  width: 100%;
  background: var(--color-bg-white);
}

.news-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 800px;
  max-width: 100%;
}

.news-heading {
  font-family: var(--font-italiana);
  font-size: 28px;
  letter-spacing: 0.15em;
  color: var(--color-dark-beige);
}

.news-list {
  list-style: none;
  width: 100%;
  border-top: 1px solid var(--color-beige);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--color-beige);
}

.news-date {
  font-family: var(--font-inria);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-dark-beige);
  flex-shrink: 0;
  width: 96px;
}

.news-category {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 88px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-bg-white);
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.news-category.is-empty {
  background: transparent;
}

.news-text {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-base);
  line-height: 1.6;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 32px;
  border: 1px solid var(--color-dark-beige);
  border-radius: 100px;
  font-family: var(--font-italiana);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.news-more-link:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-bg-white);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.sec-about {
  background: var(--color-bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 128px 100px;
  width: 100%;
  align-items: center;
}

.about-photo {
  position: relative;
  width: 493px;
  height: 308px;
  justify-self: start;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-message {
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: flex-start;
  padding: 0 97px 16px;
  justify-self: stretch;
}

.sec-heading {
  font-family: var(--font-italiana);
  font-size: 128px;
  color: var(--color-light-beige);
  line-height: 1;
}

.body-text {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-base);
  line-height: 1.75;
}

.about-instructor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-top: 8px;
}

.about-instructor-label {
  font-family: var(--font-italiana);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--color-dark-beige);
}

.about-instructor-name {
  font-family: var(--font-inria);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-dark);
}

.about-instructor-cred {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-base);
  margin-left: 8px;
}

/* ===========================
   LESSON SECTION
   =========================== */
.sec-lesson {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  padding: 128px 0;
  width: 100%;
}

.lesson-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 36px;
  width: 100%;
}

.lesson-heading {
  font-family: var(--font-italiana);
  font-size: 128px;
  color: var(--color-beige);
  text-align: center;
  width: 100%;
  line-height: 1;
}

.lesson-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lesson-desc p {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-base);
  width: 605px;
  line-height: 1.75;
  text-align: center;
}

.lesson-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 100px);
}

.lesson-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 340px;
  max-width: 380px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(72, 49, 37, 0.08);
}

.lesson-card-img {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.lesson-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lesson-card:hover .lesson-card-img img {
  transform: scale(1.05);
}

.lesson-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 28px;
  flex: 1;
  background: var(--color-bg-gray);
}

.lesson-card-category {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-dark-beige);
  text-transform: uppercase;
}

.lesson-card-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-dark);
  line-height: 1.4;
}

.lesson-card-text {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 15px;
  color: var(--color-base);
  line-height: 1.75;
}

/* ===========================
   SEASON LIMITED SECTION
   =========================== */
.sec-season {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  padding: 0 0 128px;
  width: 100%;
}

/* ===========================
   ORDER SECTION
   =========================== */
.sec-order {
  background: var(--color-bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 128px 100px;
  width: 100%;
  align-items: center;
}

.order-message {
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: flex-start;
  padding: 0 97px 16px;
  justify-self: stretch;
}

.order-heading-text {
  color: var(--color-light-beige);
}

.order-photo {
  position: relative;
  width: 493px;
  height: 308px;
  justify-self: end;
}

.order-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.sec-gallery {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
  width: 100%;
}

.gallery-item {
  width: 190px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item img {
  cursor: pointer;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px;
  z-index: 10000;
  cursor: zoom-out;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-img {
  max-width: min(640px, 65vw);
  max-height: 70vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--color-bg-white);
  text-align: center;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--color-bg-white);
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-italiana);
  cursor: pointer;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 0.65;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.sec-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 10px 80px;
  width: 100%;
}

.contact-box {
  border: 2px solid var(--color-beige);
  display: flex;
  gap: 41px;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  padding: 36px;
  width: 1034px;
}

.contact-brand {
  font-family: var(--font-italiana);
  font-size: 48px;
  color: var(--color-dark-beige);
  white-space: nowrap;
  line-height: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 580px;
}

.contact-title {
  font-family: var(--font-inria);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-dark-beige);
  line-height: 1;
}

.contact-text {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 16px;
  color: var(--color-dark-beige);
  line-height: 1.6;
}

.contact-link {
  color: var(--color-dark-beige);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.65;
}

/* ===========================
   NEWS PAGE (一覧)
   =========================== */
.news-page-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.news-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 220px 40px;
  width: 100%;
}

.news-page-heading {
  font-family: var(--font-italiana);
  font-size: 128px;
  color: var(--color-dark);
  line-height: 1;
  text-align: center;
}

.news-page-sub {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark-beige);
  text-align: center;
}

.news-page-line {
  width: 80px;
  height: 1px;
  background: var(--color-dark-beige);
}

.news-page-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 20px 220px 80px;
  width: 100%;
}

.news-page-empty {
  font-family: var(--font-noto);
  font-weight: 300;
  color: var(--color-base);
  padding: 40px 0;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 12px;
}

.news-filter-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid var(--color-light-beige);
  border-radius: 100px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-dark);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.news-filter-item.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-bg-white);
}

.news-filter-item:hover:not(.is-active) {
  border-color: var(--color-dark-beige);
}

.news-card {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 24px;
  width: 100%;
  background: var(--color-bg-white);
  border: 1px solid var(--color-light-beige);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(72, 49, 37, 0.03);
}

.news-card-img {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  border-radius: 4px;
  overflow: hidden;
}

.news-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 0;
  min-width: 0;
}

.news-card-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-card-title {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-dark);
  line-height: 1.4;
}

.news-card-excerpt {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-base);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-bottom-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
}

.news-pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.news-page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-light-beige);
  border-radius: 100px;
  font-family: var(--font-italiana);
  font-size: 16px;
  color: var(--color-dark);
  text-decoration: none;
  transition: border-color 0.2s;
}

.news-page-num.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-bg-white);
}

.news-page-num:hover:not(.is-active) {
  border-color: var(--color-dark-beige);
}

.news-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-italiana);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-dark-beige);
  text-decoration: none;
  transition: opacity 0.2s;
}

.news-back-top:hover {
  opacity: 0.65;
}

.news-back-top-arrow {
  font-size: 16px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 160px 24px;
  width: 100%;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-italiana);
  font-size: 20px;
  color: var(--color-dark);
  line-height: 1.5;
}

.footer-logo-text {
  font-family: var(--font-italiana);
  font-size: 32px;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer-brand-sub {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-base);
  line-height: 1.6;
}

.footer-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-share-label {
  font-family: var(--font-italiana);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--color-dark);
}

.footer-instagram {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.footer-instagram-icon {
  padding: 3px;
  display: flex;
  align-items: center;
}

.footer-instagram-icon img {
  width: 25px;
  height: 25px;
}

.footer-instagram:hover {
  opacity: 0.65;
}

/* ===========================
   FOOTER BOTTOM / COPYRIGHT
   =========================== */
.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
}

.footer-copyright {
  font-family: var(--font-noto);
  font-weight: 300;
  font-size: 10px;
  color: var(--color-dark-beige);
  text-align: center;
  white-space: nowrap;
}

.footer-top-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}

.footer-top-arrow {
  font-size: 16px;
  color: var(--color-dark);
}

.footer-top-label {
  font-family: var(--font-italiana);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--color-dark);
}

.footer-top-link:hover {
  opacity: 0.65;
}

/* ===========================
   HAMBURGER BUTTON
   =========================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   MEDIA QUERIES - TABLET / INTERMEDIATE
   =========================== */
@media (max-width: 1300px) {
  /* NAV */
  .nav-brand-main {
    font-size: 18px;
  }

  .nav-brand-sub {
    font-size: 10px;
  }

  .nav-link {
    font-size: 16px;
    padding: 8px 12px;
  }

  /* LOGO */
  .logo-text {
    font-size: 56px;
  }

  /* ABOUT */
  .sec-about {
    padding: 80px 48px;
  }

  .about-photo {
    width: 100%;
  }

  .about-message {
    padding: 0 32px 16px;
  }

  /* LESSON */
  .lesson-desc p {
    width: 90%;
  }

  /* ORDER */
  .sec-order {
    padding: 80px 48px;
  }

  .order-photo {
    width: 100%;
  }

  .order-message {
    padding: 0 32px 16px;
  }

  /* GALLERY */
  .sec-gallery {
    flex-wrap: wrap;
  }

  /* CONTACT */
  .contact-box {
    width: 92%;
  }

  /* NEWS PAGE */
  .news-page-title {
    padding: 60px 48px 32px;
  }

  .news-page-heading {
    font-size: 80px;
  }

  .news-page-list {
    padding: 20px 48px 80px;
  }

  .news-card {
    gap: 20px;
    padding: 20px;
  }

  .news-card-img {
    width: 180px;
    height: 130px;
  }

  /* FOOTER */
  .footer {
    padding: 40px 48px 24px;
  }
}

/* ===========================
   MEDIA QUERIES - SMARTPHONE
   =========================== */
@media (max-width: 768px) {
  body {
    min-width: 320px;
  }

  /* NAV */
  .nav {
    padding: 12px 20px;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
  }

  .nav-brand-main {
    font-size: 15px;
  }

  .nav-brand-sub {
    font-size: 9px;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 110;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(72, 49, 37, 0.15);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(72, 49, 37, 0.12);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    padding: 80px 24px 24px;
    z-index: 105;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 14px 20px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* LOGO */
  .logo-text {
    font-size: 40px;
  }

  /* MAIN VISUAL */
  .main-visual {
    height: 220px;
    margin-top: 60px;
  }

  /* NEWS */
  .sec-news {
    padding: 48px 24px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* ABOUT */
  .sec-about {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }

  .about-photo {
    width: 100%;
    height: 220px;
    justify-self: center;
  }

  .about-message {
    padding: 0;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .about-message .body-text {
    width: 100%;
  }

  .about-instructor {
    align-items: center;
    width: 100%;
  }

  .sec-heading {
    font-size: 56px;
  }

  /* LESSON */
  .sec-lesson {
    padding: 60px 0;
  }

  /* SEASON LIMITED */
  .sec-season {
    padding: 0 0 60px;
  }

  .lesson-heading {
    font-size: 56px;
  }

  .lesson-desc p {
    width: 90%;
    padding: 0 20px;
  }

  .lesson-card-body {
    padding: 20px;
  }

  .lesson-card-title {
    font-size: 1.2rem;
  }

  /* ORDER */
  .sec-order {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }

  .order-message {
    padding: 0;
    gap: 24px;
    order: 1;
    align-items: center;
    text-align: center;
  }

  .order-photo {
    width: 100%;
    height: 220px;
    justify-self: center;
    order: 2;
  }

  /* GALLERY */
  .sec-gallery {
    flex-wrap: wrap;
    padding: 60px 20px;
    gap: 12px;
  }

  .gallery-item {
    width: calc(50% - 6px);
    height: 160px;
  }

  /* LIGHTBOX */
  .lightbox-overlay {
    padding: 24px;
  }

  .lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  /* NEWS PAGE */
  .news-page-hero {
    height: 200px;
    margin-top: 60px;
  }

  .news-page-title {
    padding: 40px 24px 24px;
    gap: 12px;
  }

  .news-page-heading {
    font-size: 48px;
  }

  .news-page-list {
    padding: 12px 20px 60px;
    gap: 16px;
  }

  .news-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .news-card-img {
    width: 100%;
    height: 180px;
  }

  .news-filter {
    gap: 8px;
  }

  .news-filter-item {
    padding: 6px 14px;
    font-size: 12px;
  }

  /* CONTACT */
  .sec-contact {
    padding: 24px 20px 60px;
  }

  .contact-box {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .contact-brand {
    display: none;
  }

  .contact-info {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  /* FOOTER */
  .footer {
    gap: 24px;
    padding: 32px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    font-size: 13px;
  }

  .footer-logo-text {
    font-size: 26px;
  }
}
