@charset "UTF-8";


/* =========================================================
   SAKURAOKA CORE
   Shared components for Good Life / Sondre / Norheim

   Components:
   - People / Chef / Sommelier
   - Hokkaido Wine Pairing
   - N.Domon Lounge
   - Winebar MARU
========================================================= */


/* =========================================================
   01. BASE
========================================================= */

.sk-experience,
.sk-experience * {
  box-sizing: border-box;
}

.sk-experience {
  --sk-ink: #282721;
  --sk-muted: #77736b;
  --sk-line: rgba(40, 39, 33, 0.16);
  --sk-bg: #f4f1ea;
  --sk-max: 1280px;
  --sk-gap: clamp(20px, 4.5vw, 72px);

  position: relative !important;
  z-index: 50 !important;
  isolation: isolate;

  color: var(--sk-ink);
}


/* =========================================================
   02. COMMON LAYOUT
========================================================= */

.sk-experience__inner {
  position: relative !important;
  z-index: 2 !important;

  width: min(
    calc(100% - (var(--sk-gap) * 2)),
    var(--sk-max)
  );

  margin-inline: auto;
}

.sk-experience__section {
  position: relative !important;
  z-index: 1 !important;

  padding-block: clamp(80px, 9vw, 140px);

  background-color: #fff;
}

.sk-experience__section--bg {
  background-color: var(--sk-bg) !important;
}


/* =========================================================
   03. COMMON TYPOGRAPHY
========================================================= */

.sk-eyebrow {
  margin: 0 0 18px;

  color: var(--sk-muted);

  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sk-heading {
  margin: 0;

  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.sk-intro {
  max-width: 720px;

  margin-top: 30px;
  margin-bottom: 0;

  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.95;
}

.sk-copy {
  font-size: 14px;
  line-height: 2;
}

.sk-copy p {
  margin: 0 0 1.5em;
}

.sk-copy p:last-child {
  margin-bottom: 0;
}

.sk-note {
  margin-top: 24px;

  color: var(--sk-muted);

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   04. PEOPLE
   Chef / Sommelier
========================================================= */

.sk-people__grid {
  position: relative !important;
  z-index: 2 !important;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: clamp(56px, 7vw, 96px);

  border-top: 1px solid var(--sk-line);
}

.sk-person {
  padding: 32px 34px 36px 0;

  border-bottom: 1px solid var(--sk-line);
}

.sk-person + .sk-person {
  padding-left: 34px;

  border-left: 1px solid var(--sk-line);
}

.sk-person__role {
  display: block;

  margin-bottom: 14px;

  color: var(--sk-muted);

  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sk-person__name {
  margin: 0 0 20px;

  font-size: clamp(22px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.35;
}

.sk-person__en {
  display: block;

  margin-top: 5px;

  color: var(--sk-muted);

  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.sk-person__bio {
  margin: 0;

  font-size: 13px;
  line-height: 1.9;
}


/* =========================================================
   05. HOKKAIDO WINE PAIRING
========================================================= */

.sk-pairing__layout {
  position: relative !important;
  z-index: 2 !important;

  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: clamp(50px, 8vw, 120px);

  align-items: start;
}

.sk-pairing__price {
  margin-top: 22px;

  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.sk-pairing__statement {
  margin: 40px 0;
  padding: 26px 0;

  border-top: 1px solid var(--sk-line);
  border-bottom: 1px solid var(--sk-line);

  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.65;
}


/* =========================================================
   06. N.DOMON LOUNGE / WINEBAR MARU
========================================================= */

.sk-night__layout {
  position: relative !important;
  z-index: 2 !important;

  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: clamp(50px, 8vw, 120px);

  align-items: start;
}

.sk-night__meta {
  margin-top: 32px;
  padding-top: 22px;

  border-top: 1px solid var(--sk-line);
}

.sk-night__meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;

  gap: 20px;

  padding: 8px 0;

  font-size: 12px;
  line-height: 1.7;
}

.sk-night__meta-label {
  color: var(--sk-muted);

  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sk-winebar-mark {
  display: block;

  margin-bottom: 22px;

  color: var(--sk-muted);

  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* =========================================================
   07. LINK RESET
   Future shared components
========================================================= */

.sk-experience a {
  color: inherit;
}

.sk-experience a:hover {
  color: inherit;
}


/* =========================================================
   08. TABLET
========================================================= */

@media screen and (max-width: 1024px) {

  .sk-experience {
    --sk-gap: 32px;
  }

}


/* =========================================================
   09. TABLET / SMALL DESKTOP
========================================================= */

@media screen and (max-width: 900px) {

  /* People */

  .sk-people__grid {
    grid-template-columns: 1fr;
  }

  .sk-person,
  .sk-person + .sk-person {
    padding: 28px 0 32px;

    border-left: 0;
  }


  /* Pairing */

  .sk-pairing__layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  /* Lounge / Winebar */

  .sk-night__layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }

}


/* =========================================================
   10. MOBILE
========================================================= */

@media screen and (max-width: 767px) {

  .sk-experience {
    --sk-gap: 16px;
  }

  .sk-experience__inner {
    width: calc(100% - 32px);
  }

  .sk-experience__section {
    padding-block: 72px;
  }


  /* Typography */

  .sk-eyebrow {
    margin-bottom: 15px;
  }

  .sk-heading {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.2;
  }

  .sk-intro {
    margin-top: 24px;

    font-size: 16px;
    line-height: 1.9;
  }

  .sk-copy {
    font-size: 14px;
    line-height: 1.95;
  }


  /* People */

  .sk-people__grid {
    margin-top: 48px;
  }

  .sk-person,
  .sk-person + .sk-person {
    padding: 25px 0 29px;
  }

  .sk-person__role {
    margin-bottom: 11px;
  }

  .sk-person__name {
    margin-bottom: 17px;

    font-size: 23px;
  }

  .sk-person__bio {
    font-size: 13px;
    line-height: 1.9;
  }


  /* Pairing */

  .sk-pairing__layout {
    gap: 36px;
  }

  .sk-pairing__price {
    margin-top: 17px;

    font-size: 28px;
  }

  .sk-pairing__statement {
    margin: 32px 0;
    padding: 22px 0;

    font-size: 21px;
    line-height: 1.65;
  }


  /* Lounge / Winebar */

  .sk-night__layout {
    gap: 36px;
  }

  .sk-night__meta {
    margin-top: 26px;
  }

  .sk-night__meta-row {
    grid-template-columns: 85px 1fr;

    gap: 12px;
  }

}


/* =========================================================
   11. STACKING / LEGACY GOOD LIFE FIX
   Prevent existing backgrounds or pseudo-elements
   from covering Sakuraoka Core sections.
========================================================= */

.sk-experience {
  position: relative !important;
  z-index: 20 !important;
  isolation: isolate;
}

.sk-experience__section {
  position: relative !important;
  z-index: 50 !important;
}

.sk-experience__inner,
.sk-pairing__layout,
.sk-people__grid,
.sk-night__layout {
  position: relative !important;
  z-index: 2 !important;
}


/* =========================================================
   12. BACKGROUND SAFETY
========================================================= */

.sk-experience.sk-experience__section {
  background-color: #fff;
}

.sk-experience.sk-experience__section--bg {
  background-color: var(--sk-bg) !important;
}


/* =========================================================
   END OF SAKURAOKA CORE
========================================================= */