/* ==========================================
   KIZUNA Atelier — Design System & Styles
   ========================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors — Tropical Pastel Palette */
  --coral: #FF8FA3;
  --coral-light: #FFB8C6;
  --coral-bg: #FFF0F3;
  --sky: #7EC8E3;
  --sky-light: #B8E2F2;
  --sky-bg: #EEF8FC;
  --yellow: #FFD166;
  --yellow-light: #FFE6A0;
  --yellow-bg: #FFFBF0;
  --mint: #06D6A0;
  --mint-light: #72EFCA;
  --mint-bg: #EDFFF8;
  --purple: #6C5CE7;
  --purple-light: #A29BFE;
  --purple-bg: #F3F1FF;
  --ivory: #FFF8F0;
  --white: #FFFFFF;
  --charcoal: #2D3436;
  --gray-dark: #4A5568;
  --gray: #718096;
  --gray-light: #CBD5E0;
  --gray-lighter: #E2E8F0;
  --line-green: #06C755;

  /* Typography */
  --font-body: 'Noto Sans JP', sans-serif;
  --font-heading: 'Zen Kaku Gothic New', sans-serif;
  --font-en: 'Outfit', sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-px: clamp(20px, 5vw, 80px);
  --container-max: 1200px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow-coral: 0 4px 30px rgba(255, 143, 163, 0.3);
  --shadow-glow-mint: 0 4px 30px rgba(6, 214, 160, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.text-accent {
  color: var(--coral);
}

/* ---------- Section Label ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-label__en {
  font-family: var(--font-en);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

.section-label__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  padding-left: 16px;
  border-left: 1px solid var(--gray-light);
}

/* ---------- Animations ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--transition) forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.is-scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav__logo-en {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.nav__logo-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta-btn {
  background: var(--line-green) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav__cta-btn::after {
  display: none !important;
}

.nav__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 248, 240, 0.92) 0%,
      rgba(255, 248, 240, 0.75) 30%,
      rgba(255, 248, 240, 0.60) 60%,
      rgba(255, 248, 240, 0.80) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  padding-left: 0.5em;
}

.hero__label {
  font-family: var(--font-en);
  font-size: clamp(12px, 1.5vw, 16px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--coral) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gray-dark);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--coral), #e67e94);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-glow-coral);
}

.hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 143, 163, 0.45);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--coral);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

/* ---------- CONCEPT ---------- */
.concept {
  padding: var(--section-py) 0;
  background: var(--white);
}

.concept__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.4;
}

.concept__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concept__text p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2;
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.concept__text strong {
  color: var(--coral);
  font-weight: 700;
}

.concept__visual {
  position: relative;
  padding: 60px 40px;
}

.concept__deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.concept__deco--1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--coral-light), var(--yellow-light));
  top: 0;
  right: 0;
  filter: blur(40px);
}

.concept__deco--2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--sky-light), var(--mint-light));
  bottom: 20px;
  left: 0;
  filter: blur(30px);
}

.concept__deco--3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--purple-light), var(--coral-light));
  top: 40%;
  left: 30%;
  filter: blur(25px);
}

.concept__quote {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 700;
  text-align: center;
  padding: 32px;
  background: rgba(255, 248, 240, 0.8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 143, 163, 0.2);
}

/* ---------- EVENTS ---------- */
.events {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.events__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.4;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.event-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card__img {
  transform: scale(1.05);
}

.event-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.event-card[data-color="coral"] .event-card__badge {
  background: var(--coral);
}

.event-card[data-color="mint"] .event-card__badge {
  background: var(--mint);
}

.event-card[data-color="purple"] .event-card__badge {
  background: var(--purple);
}

.event-card__body {
  padding: 28px;
}

.event-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.event-card[data-color="coral"] .event-card__tag {
  background: var(--coral-bg);
  color: var(--coral);
}

.event-card[data-color="mint"] .event-card__tag {
  background: var(--mint-bg);
  color: var(--mint);
}

.event-card[data-color="purple"] .event-card__tag {
  background: var(--purple-bg);
  color: var(--purple);
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.event-card__desc {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.event-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

.event-card__price {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
}

.event-card__price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.event-card__duration {
  font-size: 13px;
  color: var(--gray);
}

/* ---------- FEATURES ---------- */
.features {
  padding: var(--section-py) 0;
  background: var(--white);
}

.features__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  line-height: 1.4;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-item[data-color="yellow"] {
  background: var(--yellow-bg);
}

.feature-item[data-color="coral"] {
  background: var(--coral-bg);
}

.feature-item[data-color="mint"] {
  background: var(--mint-bg);
}

.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.feature-item[data-color="yellow"] .feature-item__icon {
  color: var(--yellow);
}

.feature-item[data-color="coral"] .feature-item__icon {
  color: var(--coral);
}

.feature-item[data-color="mint"] .feature-item__icon {
  color: var(--mint);
}

.feature-item__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-item__desc {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.9;
}

/* ---------- PROFILE ---------- */
.profile {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--coral-bg) 100%);
}

.profile__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.profile__img-wrap {
  position: relative;
}

.profile__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.profile__img-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--coral-light), var(--yellow-light));
  border-radius: 50%;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}

.profile__title-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}

.profile__name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
}

.profile__name small {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

.profile__tagline {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-lighter);
}

.profile__bio p {
  font-size: 15px;
  line-height: 2;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.profile__brand {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile__brand-logo {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 12px 24px;
  border: 2px solid var(--coral-light);
  border-radius: var(--radius-sm);
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
}

.gallery__grid {
  columns: 3;
  column-gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* gallery__item--tall and --wide: no special sizing needed in column layout */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition);
}

.lightbox__close:hover {
  transform: scale(1.2);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 36px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__prev {
  left: 24px;
}

.lightbox__next {
  right: 24px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.testimonials__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.testimonial-card[data-color="coral"]::before {
  background: var(--coral);
}

.testimonial-card[data-color="mint"]::before {
  background: var(--mint);
}

.testimonial-card[data-color="purple"]::before {
  background: var(--purple);
}

.testimonial-card__stars {
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card__detail {
  font-size: 12px;
  color: var(--gray);
}

/* ---------- CTA ---------- */
.cta {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      var(--coral-bg) 0%,
      var(--sky-bg) 30%,
      var(--mint-bg) 60%,
      var(--yellow-bg) 100%);
}

.cta__bg::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-light), var(--yellow-light));
  top: -100px;
  right: -100px;
  opacity: 0.3;
  filter: blur(60px);
}

.cta__bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-light), var(--sky-light));
  bottom: -80px;
  left: -80px;
  opacity: 0.3;
  filter: blur(50px);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__icon {
  margin-bottom: 24px;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 36px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(6, 199, 85, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(6, 199, 85, 0.5);
}

.cta__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 32px;
  background: var(--charcoal);
  color: var(--white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer__logo-en {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer__logo-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  color: var(--coral-light);
  margin-left: 6px;
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--coral-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {

  .events__grid,
  .features__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile__img-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery__grid {
    columns: 2;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }

  .nav__links.is-open {
    right: 0;
  }

  .nav__links a {
    font-size: 18px;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .events__grid,
  .features__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    columns: 2;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    columns: 1;
  }

  .cta__btn {
    padding: 16px 32px;
    font-size: 16px;
  }
}