:root {
      /* Palette sampled from the Shika & Crumb concept mockup */
      --paper: #F8F4EF;
      --ivory: #EDE6DF;
      --stone: #D3CBC3;
      --taupe: #B2A193;
      --brown: #8F745A;
      --ink: #3E342C;
      --line: rgba(62, 52, 44, 0.16);

      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Work Sans", Arial, sans-serif;
      --jp: "Noto Sans JP", sans-serif;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
    }

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

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

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    /* ---------------- PRE-LAUNCH POPUP ---------------- */

    .launch-popup {
      position: fixed;
      inset: 0;
      z-index: 9999;

      display: flex;
      align-items: center;
      justify-content: center;

      padding: 24px;

      background: rgba(62, 52, 44, 0.32);
      backdrop-filter: blur(5px);
    }

    .launch-popup-card {
      position: relative;

      width: min(90vw, 480px);
      padding: 58px 48px 45px;

      background: var(--paper);
      border: 1px solid var(--line);

      color: var(--ink);
      text-align: center;
    }

    .launch-popup-card .eyebrow {
      margin-bottom: 24px;
    }

    .launch-popup-card h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      line-height: 1.05;
    }

    .launch-popup-card p {
      max-width: 330px;
      margin: 24px auto 0;

      color: rgba(62, 52, 44, 0.62);

      font-size: 0.96rem;
      line-height: 1.8;
    }

    .launch-popup-close {
      position: absolute;
      top: 16px;
      right: 19px;

      border: 0;
      background: transparent;
      color: var(--ink);

      font-family: var(--serif);
      font-size: 1.4rem;

      cursor: pointer;
      opacity: 0.55;
    }

    .launch-popup-close:hover {
      opacity: 1;
    }

    .launch-popup-link {
      display: inline-block;

      margin-top: 28px;
      padding-bottom: 4px;

      border-bottom: 1px solid var(--brown);

      color: var(--ink);

      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .launch-popup-enter {
      display: block;

      margin: 25px auto 0;
      padding: 0;

      border: 1px solid var(--line);
      border-radius: 10%;
      background: transparent;

      color: rgba(62, 52, 44, 0.5);

      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.08em;

      cursor: pointer;
    }

    .launch-popup-enter:hover {
      color: var(--ink);
    }

    .launch-popup.is-hidden {
      display: none;
    }

    @media (max-width: 600px) {
      .launch-popup-card {
        padding: 52px 28px 38px;
      }
    }

    /* ---------------- BACK TO TOP ---------------- */

    .back-to-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 100;

      width: 42px;
      height: 42px;

      display: flex;
      align-items: center;
      justify-content: center;

      border: 1px solid var(--line);
      border-radius: 50%;

      background: rgba(246, 241, 235, 0.9);
      color: var(--ink);

      font-size: 0.9rem;
      text-decoration: none;

      backdrop-filter: blur(6px);

      transition:
        background 0.25s ease,
        transform 0.25s ease;
    }

    .back-to-top:hover {
      background: var(--ink);
      color: var(--paper);
      transform: translateY(-3px);
    }

    @media (max-width: 600px) {
      .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 38px;
        height: 38px;
      }
    }

    /* ---------------- HERO ---------------- */

    .hero {
      min-height: 300px;
      display: grid;
      place-items: center;
      padding: 20px 20px 20px;
      text-align: center;
    }

    .hero-inner {
      width: min(100%, 920px);
    }

    .hero-mark {
      width: 126px;
      height: 150px;
      object-fit: cover;
      object-position: center;
      margin: 0 auto 14px;
      mix-blend-mode: multiply;
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.1rem, 3.2vw, 5.8rem);
      line-height: 0.95;
      font-weight: 400;
      letter-spacing: 0.11em;
    }

    .hero-rule {
      width: 76px;
      height: 1px;
      margin: 26px auto 22px;
      background: var(--brown);
    }

    .tagline {
      font-size: clamp(0.66rem, 1vw, 0.8rem);
      text-transform: lowercase;
      font-weight: 500;
      letter-spacing: 0.32em;
    }

    .jp-line {
      margin-top: 12px;
      font-family: var(--jp);
      color: var(--taupe);
      font-size: 0.85rem;
      letter-spacing: 0.2em;
    }

    .scroll-note {
      margin-top: 35px;
      font-size: 0.58rem;
      text-transform: uppercase;
      letter-spacing: 0.23em;
      opacity: 0.66;
    }

    /* ---------------- IDENTITY GRID ---------------- */

    .identity-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      min-height: 300px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .identity-card {
      min-height: 300px;
      padding: 36px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .identity-card:last-child {
      border-right: 0;
    }

    .identity-card:nth-child(2) {
      background: var(--ivory);
    }

    .circle-lockup {
      width: 190px;
      height: 155px;
      border: 1px solid var(--brown);
      border-radius: 50%;
      display: grid;
      place-items: center;
      padding: 25px;
    }

    .circle-lockup strong {
      display: block;
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.12rem;
      letter-spacing: 0.16em;
      line-height: 1.3;
    }

    .circle-lockup span {
      display: block;
      margin-top: 16px;
      font-size: 0.54rem;
      letter-spacing: 0.22em;
    }

    .stack-lockup .mini-mark {
      width: 85px;
      margin: 0 auto 18px;
      mix-blend-mode: multiply;
    }

    .stack-lockup h2 {
      font-family: var(--serif);
      font-size: 2.05rem;
      line-height: 0.9;
      font-weight: 400;
    }

    .stack-lockup p {
      margin-top: 18px;
      font-size: 0.61rem;
      letter-spacing: 0.21em;
    }

    .vertical-lockup {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      align-items: center;
      gap: 26px;
      width: 100%;
      max-width: 280px;
    }

    .vertical-lockup .mark {
      width: 82px;
      margin: 0 auto;
      mix-blend-mode: multiply;
    }

    .vertical-lockup .divider {
      height: 155px;
      background: var(--brown);
    }

    .vertical-lockup .letters {
      font-family: var(--serif);
      font-size: 1.6rem;
      line-height: 1.12;
      letter-spacing: 0.22em;
      writing-mode: vertical-rl;
      text-orientation: upright;
      margin: 0 auto;
    }

    /* ---------------- SHARED SECTIONS ---------------- */

    .section {
      padding: 96px 0;
    }

    .eyebrow {
      margin-bottom: 16px;
      font-size: 0.64rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--brown);
    }

    .section-title {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(2.2rem, 4.2vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.02em;
    }

    /* ---------------- PHILOSOPHY + IDEA ---------------- */

.brand-thoughts {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-thoughts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.thought-box {
  min-height: 420px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thought-box:nth-child(2n) {
  border-right: 0;
}

.thought-box:nth-child(3),
.thought-box:nth-child(4) {
  border-bottom: 0;
}

.thought-copy {
  padding: 58px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thought-copy .eyebrow {
  margin-bottom: 18px;
}

.thought-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 400;
}

.thought-lead {
  max-width: 430px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.55;
}

.thought-small {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(62, 52, 44, 0.62);
  font-size: 0.76rem;
  line-height: 1.8;
}

.thought-lead,
.thought-small,
.idea-block blockquote {
  margin-left: auto;
  margin-right: auto;
}

.thought-copy .eyebrow {
  text-align: center;
}

.idea-block .jp-line {
  text-align: center;
}

.idea-block {
  background: var(--ivory);
}

.idea-block blockquote {
  max-width: 440px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.idea-block .jp-line {
  margin-top: 22px;
  font-size: 0.68rem;
}

.thought-image {
  overflow: hidden;
  background: var(--stone);
}

.thought-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.thought-image:nth-child(2) img {
  object-position: center 48%;
}

.thought-image:nth-child(3) img {
  object-position: center 52%;
}

@media (max-width: 700px) {
  .brand-thoughts-grid {
    grid-template-columns: 1fr;
  }

  .thought-box {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .thought-box:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .thought-copy {
    padding: 50px 28px;
  }

  .thought-image img {
    min-height: 200px;
    height: 200;
  }
}

/* ---------------- TOP ORDER BUTTON ---------------- */

    .top-actions {
      position: absolute;
      top: 32px;
      right: 38px;
      z-index: 20;

      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }


    /* ORDER */

    .top-order-btn {
      padding: 10px 22px;

      border: 1px solid rgba(62, 52, 44, 0.45);
      border-radius: 100px;

      background: transparent;
      color: var(--ink);

      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;

      transition: all 0.25s ease;
    }

    .top-order-btn:hover {
      background: var(--ink);
      color: var(--paper);
      border-color: var(--ink);
    }


    /* SOCIAL ICONS */

    .top-socials {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .top-socials a {
      width: 28px;
      height: 28px;

      display: flex;
      align-items: center;
      justify-content: center;

      border: 1px solid rgba(62, 52, 44, 0.25);
      border-radius: 50%;

      color: var(--ink);

      opacity: 0.7;

      transition:
        opacity 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    }

    .top-socials a:hover {
      opacity: 1;
      border-color: rgba(62, 52, 44, 0.55);
      transform: translateY(-2px);
    }

    .top-socials svg {
      width: 13px;
      height: 13px;

      fill: none;
      stroke: currentColor;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

/* ---------------- BREAD ---------------- */

    .bread {
      background: var(--paper);
    }

    .bread-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--line);
    }

    .bread-note {
      max-width: 380px;
      font-size: 0.8rem;
      color: rgba(62, 52, 44, 0.68);
    }

    .bread-list {
      margin-top: 10px;
    }

    .bread-row {
      display: grid;
      grid-template-columns: 110px 1fr 1.5fr auto;
      gap: 28px;
      align-items: center;

      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .bread-thumb {
      width: 110px;
      height: 110px;
      overflow: hidden;
    }

    .bread-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .bread-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      line-height: 1.2;
      min-width: 0;
    }

    .bread-desc {
      font-size: 0.76rem;
      color: rgba(62, 52, 44, 0.62);
    }

    .bread-price {
      font-size: 0.75rem;
      white-space: nowrap;
    }

    /* ---------------- ORDER ---------------- */

    .order {
      background: var(--ink);
      color: var(--paper);
    }

    .order .eyebrow {
      color: var(--taupe);
    }

    .order-heading {
      max-width: 650px;
    }

    .order-intro {
      max-width: 430px;
      margin-top: 24px;

      color: rgba(248, 244, 239, 0.62);
      font-size: 0.82rem;
    }


    /* STEPS */

    .order-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);

      margin-top: 30px;
      border-top: 1px solid rgba(248, 244, 239, 0.18);
      border-bottom: 1px solid rgba(248, 244, 239, 0.18);
    }

    .order-step {
      padding: 36px 38px 42px 0;
    }

    .order-step + .order-step {
      padding-left: 38px;
      border-left: 1px solid rgba(248, 244, 239, 0.18);
    }

    .step-number {
      display: block;
      margin-bottom: 10px;
      color: var(--taupe);
      font-size: 1rem;
      letter-spacing: 0.18em;
    }

    .order-step h3 {
      font-family: var(--serif);
      font-size: 1.45rem;
      font-weight: 400;
    }

    .order-step p {
      max-width: 270px;
      margin-top: 12px;

      color: rgba(248, 244, 239, 0.58);

      font-size: 0.84rem;
      line-height: 1.8;
    }


    /* BOTTOM */

    .order-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;

      margin-top: 40px;
    }

    .order-footer p {
      margin: 0;

      color: rgba(248, 244, 239, 0.5);
      font-size: 0.8rem;
    }

    /* WHATSAPP BUTTON */

    .order-footer .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 13px 26px;

      border: 1px solid rgba(248, 244, 239, 0.65);
      border-radius: 100px;

      background: transparent;
      color: var(--paper);

      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;

      transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    }

    .order-footer .button:hover {
      background: var(--paper);
      color: var(--ink);
      border-color: var(--paper);
    }

    /* MOBILE */

    @media (max-width: 700px) {

      .order-steps {
        grid-template-columns: 1fr;
        margin-top: 30px;
      }

      .order-step {
        padding: 26px 0;
      }

      .order-step + .order-step {
        padding: 26px 0;
        border-left: 0;
        border-top: 1px solid rgba(248, 244, 239, 0.18);
      }

      .step-number {
        margin-bottom: 12px;
      }

      .order-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 32px;
      }
    }

    /* SOCIAL MEDIA */
    .social-links {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      gap: 8px;

      color: var(--ink);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-decoration: none;

      opacity: 0.7;
      transition: opacity 0.25s ease;
    }

    .social-links a:hover {
      opacity: 1;
    }

    .social-links svg {
      width: 16px;
      height: 16px;

      fill: none;
      stroke: currentColor;
      stroke-width: 1.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ---------------- FOOTER ---------------- */

    footer {
      padding: 60px 0 34px;
      background: var(--paper);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 60px;
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 2.2rem;
      letter-spacing: 0.07em;
    }

    .footer-tagline {
      margin-top: 10px;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      font-weight: 500;
      color: var(--brown);
    }

    .footer-heading {
      margin-bottom: 16px;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .footer-links a {
      display: block;
      margin: 7px 0;
      font-size: 0.8rem;
      color: rgba(62, 52, 44, 0.72);
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 0.58rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(62, 52, 44, 0.55);
    }

    
    /* ---------------- MOCKUP IMAGE STRIP ---------------- */

    .mockup-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .mockup-strip img {
      width: 100%;
      aspect-ratio: 1.1 / 1;
      object-fit: cover;
      border-right: 1px solid var(--line);
    }

    .mockup-strip img:last-child {
      border-right: 0;
    }

    /* ---------------- RESPONSIVE ---------------- */

    @media (max-width: 600px) {

    .bread-row {
      grid-template-columns: 52px 1fr auto;
      gap: 14px;
      padding: 14px 0;
    }

    .bread-thumb {
      width: 52px;
      height: 52px;
    }

    .bread-desc {
      grid-column: 2 / 4;
      font-size: 0.72rem;
    }

    .bread-price {
      align-self: start;
    }
  }

    @media (max-width: 600px) {

    .top-actions {
      top: 20px;
      right: 20px;
      gap: 9px;
    }

    .top-order-btn {
      padding: 8px 16px;
      font-size: 0.54rem;
    }

    .top-socials a {
      width: 25px;
      height: 25px;
    }

    .top-socials svg {
      width: 12px;
      height: 12px;
    }
  }

    @media (max-width: 850px) {
      .nav-group {
        display: none;
      }

      .nav {
        grid-template-columns: 1fr auto 1fr;
      }

      .menu-button {
        display: block;
        justify-self: start;
      }

      .identity-grid {
        grid-template-columns: 1fr;
      }

      .mockup-strip {
        grid-template-columns: 1fr 1fr;
      }

      .mockup-strip img:nth-child(2) {
        border-right: 0;
      }

      .identity-card {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .identity-card:last-child {
        border-bottom: 0;
      }

      .philosophy-grid,
      .order-grid {
        grid-template-columns: 1fr;
        gap: 46px;
      }

      .order-actions {
        justify-content: flex-start;
      }

      .bread-head {
        display: block;
      }

      .bread-note {
        margin-top: 24px;
      }
    }

    @media (max-width: 600px) {
      .container {
        width: min(calc(100% - 32px), var(--max));
      }

      .wordmark {
        font-size: 1.25rem;
      }

      .hero {
        min-height: 720px;
        padding: 58px 20px 70px;
      }

      .hero-mark {
        width: 125px;
        height: 115px;
      }

      .hero h1 {
        font-size: clamp(3.1rem, 14vw, 5.4rem);
        letter-spacing: 0.05em;
      }

      .tagline {
        line-height: 2;
        letter-spacing: 0.22em;
      }

      .section {
        padding: 72px 0;
      }

      .mockup-strip {
        grid-template-columns: 1fr 1fr;
      }

      .philosophy-grid {
        gap: 28px;
      }

      

      .bread-desc {
        grid-column: 1 / -1;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top > :first-child {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }
