/* ============================================================
   みんなのTRY＠Somethin'ELSE LP
   Base Styles
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Somethin'ELSE Green palette */
  --green-dark:    #2d5a27;
  --green-main:    #3d7a35;
  --green-mid:     #5a9e50;
  --green-light:   #8cc87a;
  --green-pale:    #e8f4e5;
  --green-xpale:   #f3faf2;

  /* Neutral */
  --off-white:     #f8f7f4;
  --cream:         #f2efe9;
  --warm-gray:     #e8e4dd;
  --mid-gray:      #b0a99e;
  --text-gray:     #6b6459;
  --text-dark:     #2a2520;
  --text-black:    #1a1714;
  --white:         #ffffff;

  /* Typography */
  --font-sans-jp:  'Noto Sans JP', sans-serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-en-serif: 'DM Serif Display', serif;
  --font-en-sans:  'Space Grotesk', sans-serif;

  /* Spacing */
  --section-pad-v: 100px;
  --container-w:   1100px;
  --side-pad:      24px;

  /* Transitions */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-sans-jp);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--warm-gray);
}

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

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

.sp-only { display: none; }

/* ============================================================
   Animation Classes
   ============================================================ */
.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.js-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ============================================================
   Common Section Parts
   ============================================================ */
.section-label {
  font-family: var(--font-en-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: var(--green-mid);
  flex-shrink: 0;
}
.section-label--light {
  color: rgba(255,255,255,0.75);
}
.section-label--light::before {
  background-color: rgba(255,255,255,0.75);
}

.section-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-black);
  margin-bottom: 32px;
}
.section-heading--light {
  color: var(--white);
}

/* ============================================================
   CTA Button
   ============================================================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  border-radius: 60px;
  font-family: var(--font-sans-jp);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.cta-btn:hover::before {
  transform: translateX(0);
}
.cta-btn--primary {
  background-color: var(--green-main);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(61, 122, 53, 0.45);
}
.cta-btn--primary:hover {
  background-color: var(--green-dark);
  box-shadow: 0 10px 36px rgba(61, 122, 53, 0.55);
  transform: translateY(-3px);
}
.cta-btn--dark {
  background-color: var(--text-black);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(26, 23, 20, 0.3);
}
.cta-btn--dark:hover {
  background-color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(45, 90, 39, 0.5);
}
.cta-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out);
}
.cta-btn:hover .cta-btn-arrow {
  transform: translateX(6px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 var(--side-pad);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header-logo {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}
.site-header.scrolled .header-logo {
  color: var(--text-black);
}
.header-cta-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.site-header.scrolled .header-cta-btn {
  border-color: var(--green-main);
  color: var(--green-main);
}
.header-cta-btn:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white) !important;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 40, 18, 0.72) 0%,
    rgba(30, 55, 25, 0.6) 50%,
    rgba(10, 20, 10, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 120px var(--side-pad) 100px;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.eyebrow-text {
  font-family: var(--font-en-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  line-height: 1.1;
}
.hero-title-jp {
  font-family: var(--font-serif-jp);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}
.hero-title-at {
  font-family: var(--font-en-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--green-light);
  line-height: 1.2;
}
.hero-title-en {
  font-family: var(--font-en-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-catch {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.meta-label {
  font-family: var(--font-en-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--green-light);
  min-width: 50px;
  text-align: right;
}
.meta-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-text {
  font-family: var(--font-en-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   EMPATHY
   ============================================================ */
.empathy {
  padding: var(--section-pad-v) 0;
  background-color: var(--off-white);
}
.empathy-inner {
  text-align: center;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.empathy-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.empathy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.card-photo-wrap {
  height: 220px;
  overflow: hidden;
}
.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.empathy-card:hover .card-photo {
  transform: scale(1.04);
}
.card-text {
  padding: 22px 24px 26px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-dark);
  font-weight: 400;
  border-left: 3px solid var(--green-light);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-pad-v) 0;
  background-color: var(--green-xpale);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-body {
  font-size: 1.05rem;
  line-height: 2.0;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.about-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 2px;
  margin-bottom: 28px;
}

.about-note {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-gray);
  padding: 18px 20px;
  border-left: 2px solid var(--green-main);
  background: rgba(255,255,255,0.5);
  border-radius: 0 8px 8px 0;
}

.about-photo-block {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.15);
}
.about-photo-block::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--green-pale);
  border-radius: 16px;
  z-index: -1;
}

/* ============================================================
   DETAILS
   ============================================================ */
.details {
  padding: var(--section-pad-v) 0;
  background-color: var(--cream);
}
.details-inner {
  text-align: center;
}

.details-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  text-align: left;
  align-items: center;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}
.details-table tr {
  border-bottom: 1px solid var(--warm-gray);
  transition: background 0.2s;
}
.details-table tr:last-child {
  border-bottom: none;
}
.details-table tr:hover {
  background: rgba(255,255,255,0.6);
}
.details-table th {
  font-family: var(--font-en-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  padding: 20px 16px 20px 0;
  width: 30%;
  vertical-align: top;
  white-space: nowrap;
}
.details-table td {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
  padding: 20px 0;
}
.td-note {
  font-size: 0.85rem;
  color: var(--text-gray);
}
.free-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 1rem;
  border: 1.5px solid var(--green-light);
}

.details-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   VENUE
   ============================================================ */
.venue {
  position: relative;
  overflow: hidden;
}
.venue-photo-full {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.venue-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  transition: transform 8s ease-out;
}
.venue.in-view .venue-bg-img {
  transform: scale(1.05);
}
.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 40, 18, 0.82) 0%,
    rgba(20, 40, 18, 0.55) 60%,
    rgba(20, 40, 18, 0.25) 100%
  );
}
.venue-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 80px var(--side-pad);
}
.venue-body {
  font-size: 1.0rem;
  line-height: 2.0;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 300;
}
.venue-link {
  display: inline-block;
  font-family: var(--font-sans-jp);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.venue-link:hover {
  color: var(--green-light);
  border-color: var(--green-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background-color: var(--green-xpale);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-deco-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en-serif);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 400;
  color: rgba(93, 158, 80, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-black);
  line-height: 1.4;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.0rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 44px;
}
.cta-caption {
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--text-black);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  text-align: center;
}
.footer-event-name {
  font-family: var(--font-serif-jp);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.footer-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-copy a {
  color: var(--green-light);
  transition: opacity 0.2s;
}
.footer-copy a:hover {
  opacity: 0.75;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --section-pad-v: 80px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-text-block {
    order: 1;
  }
  .about-photo-block {
    order: 2;
  }
  .about-photo {
    aspect-ratio: 16/9;
  }
  .about-photo-block::before {
    display: none;
  }

  .details-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .details-photo-wrap {
    order: -1;
  }

  .empathy-grid {
    grid-template-columns: 1fr;
  }
  .card-photo-wrap {
    height: 260px;
  }

  .venue-photo-full {
    min-height: 480px;
  }
  .venue-body {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --section-pad-v: 64px;
    --side-pad: 20px;
  }

  .sp-only { display: inline; }

  .hero-content {
    padding: 100px 20px 80px;
  }
  .hero-meta {
    padding: 18px 20px;
    gap: 12px;
  }
  .meta-item {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    width: 100%;
  }
  .meta-label {
    text-align: left;
    min-width: auto;
  }

  .cta-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

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

  .about-photo {
    aspect-ratio: 4/3;
  }

  .venue-photo-full {
    min-height: 420px;
  }
  .venue-content {
    padding: 60px 20px;
  }

  .details-table th {
    font-size: 0.65rem;
    padding: 16px 12px 16px 0;
  }
  .details-table td {
    padding: 16px 0;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-header {
    padding: 0 16px;
  }
  .header-inner {
    height: 60px;
  }
  .header-cta-btn {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
}

/* ============================================================
   Utility
   ============================================================ */
::selection {
  background: var(--green-light);
  color: var(--white);
}
