:root {
  --ink: #2d2721;
  --muted: #766d64;
  --line: #ded7cd;
  --paper: #faf7f1;
  --paper-deep: #eee8df;
  --white: #fffdf9;
  --accent: #2d2119;
  --max: 1180px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(246, 240, 230, 0.6)),
    var(--paper);
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  line-break: strict;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  min-height: 70px;
  padding: 0 clamp(22px, 4vw, 54px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 247, 241, 0.94);
  box-shadow: 0 12px 28px rgba(61, 48, 36, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__name {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  white-space: nowrap;
}

.brand__copy {
  color: #5f574e;
  font-family: var(--sans);
  font-size: 0.72rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 20px;
  color: #4e463f;
  font-family: var(--sans);
  font-size: 0.82rem;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  color: #fff;
  background: var(--accent);
  font-family: var(--serif);
  font-size: 1rem;
  border: 1px solid rgba(45, 33, 25, 0.2);
}

.header-cta::after,
.primary-button::after,
.ghost-button::after {
  content: "›";
  margin-left: 26px;
  font-size: 1.55rem;
  line-height: 1;
}

.menu-button {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
}

.menu-button span + span {
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/actual-exterior.png") center center / cover no-repeat;
  animation: heroImageIn 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 253, 249, 0.82) 28%, rgba(255, 253, 249, 0.22) 58%, rgba(255, 253, 249, 0) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.26), rgba(255, 253, 249, 0.08));
  animation: heroVeilIn 2.1s ease both;
}

.hero__content {
  width: min(620px, calc(100% - 48px));
  padding: 185px 0 0 clamp(28px, 7vw, 100px);
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-date-label,
.hero-schedule,
.hero-meta,
.hero .note,
.hero-coffee {
  animation: heroTextIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  animation-delay: 0.28s;
}

.hero-copy {
  animation-delay: 0.48s;
}

.hero-date-label {
  animation-delay: 0.64s;
}

.hero-schedule {
  animation-delay: 0.72s;
}

.hero-meta {
  animation-delay: 0.88s;
}

.hero .note {
  animation-delay: 1.02s;
}

.hero-coffee {
  animation-delay: 1.18s;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: #3f3934;
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0;
}

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 22px;
  margin: 0 0 28px;
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.hero-area {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.35;
  white-space: nowrap;
}

.hero-copy {
  margin: 0 0 26px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-date-label {
  margin: 0 0 8px;
  color: #5f574e;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-schedule {
  margin: 0 0 24px;
  font-size: clamp(1.45rem, 3.6vw, 2.8rem);
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  font-family: var(--sans);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(45, 39, 33, 0.18);
  background: rgba(255, 253, 249, 0.7);
  font-size: 0.86rem;
}

.hero-place {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.2;
}

.note {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
}

.hero-coffee {
  display: inline-grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: min(420px, 100%);
  margin-top: 24px;
  padding: 12px 18px 12px 12px;
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(222, 215, 205, 0.8);
  backdrop-filter: blur(10px);
}

.hero-coffee img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(61, 48, 36, 0.14));
}

.hero-coffee p {
  margin: 0;
  color: #5f564d;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.75;
}

.hero-coffee span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.25;
}

.overview {
  width: min(var(--max), calc(100% - 48px));
  margin: 22px auto 0;
  padding: 34px 42px 36px;
  position: relative;
  z-index: 3;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 18px 48px rgba(86, 69, 50, 0.1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.045);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes heroVeilIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.overview h2,
.gallery h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.overview-grid article {
  min-width: 0;
  padding: 0 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.overview-grid article:first-child {
  border-left: 0;
}

.icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #72675d;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.icon-calendar {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='10' width='32' height='30' rx='3' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M8 18H40' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M17 7V13' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M31 7V13' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='27' r='2' fill='black'/%3E%3Ccircle cx='30' cy='27' r='2' fill='black'/%3E%3Ccircle cx='18' cy='34' r='2' fill='black'/%3E%3Ccircle cx='30' cy='34' r='2' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='10' width='32' height='30' rx='3' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M8 18H40' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M17 7V13' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M31 7V13' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Ccircle cx='18' cy='27' r='2' fill='black'/%3E%3Ccircle cx='30' cy='27' r='2' fill='black'/%3E%3Ccircle cx='18' cy='34' r='2' fill='black'/%3E%3Ccircle cx='30' cy='34' r='2' fill='black'/%3E%3C/svg%3E");
}

.icon-pin {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 42C24 42 37 29 37 18C37 10.8 31.2 5 24 5C16.8 5 11 10.8 11 18C11 29 24 42 24 42Z' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Ccircle cx='24' cy='18' r='5' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 42C24 42 37 29 37 18C37 10.8 31.2 5 24 5C16.8 5 11 10.8 11 18C11 29 24 42 24 42Z' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Ccircle cx='24' cy='18' r='5' stroke='black' stroke-width='2.8'/%3E%3C/svg%3E");
}

.icon-clock {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='17' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M24 14V25L31 30' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='17' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M24 14V25L31 30' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-people {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='6' stroke='black' stroke-width='2.8'/%3E%3Ccircle cx='32' cy='20' r='5' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M8 39C9 31 13 27 18 27C23 27 27 31 28 39' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M26 30C29 28 35 28 39 38' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='18' cy='18' r='6' stroke='black' stroke-width='2.8'/%3E%3Ccircle cx='32' cy='20' r='5' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M8 39C9 31 13 27 18 27C23 27 27 31 28 39' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M26 30C29 28 35 28 39 38' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-coffee {
  mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19H31V29C31 35 27 39 21 39C15 39 11 35 11 29V19Z' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M31 22H35C38 22 40 24 40 27C40 30 38 32 35 32H31' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M15 12C14 10 14 8 16 6' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M23 12C22 10 22 8 24 6' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M9 42H34' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19H31V29C31 35 27 39 21 39C15 39 11 35 11 29V19Z' stroke='black' stroke-width='2.8' stroke-linejoin='round'/%3E%3Cpath d='M31 22H35C38 22 40 24 40 27C40 30 38 32 35 32H31' stroke='black' stroke-width='2.8'/%3E%3Cpath d='M15 12C14 10 14 8 16 6' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M23 12C22 10 22 8 24 6' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M9 42H34' stroke='black' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.overview-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
}

.overview-main {
  margin: 0 0 8px;
  font-size: clamp(0.94rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
}

small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.concept {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  align-items: stretch;
  width: min(var(--max), calc(100% - 48px));
  margin: 18px auto 0;
  background: linear-gradient(90deg, #fffdf9 0%, rgba(255, 253, 249, 0.92) 40%, rgba(255, 253, 249, 0.22) 68%);
}

.concept__text {
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
}

.concept h2,
.features h2,
.recommend h2,
.info-band h2,
.soft-cta h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.concept p:not(.section-kicker),
.features p,
.recommend p,
.soft-cta p,
.soft-cta small,
.faq-answer p {
  color: #5f564d;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 2;
}

.concept img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.features {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 42px 46px;
  background: rgba(255, 253, 249, 0.76);
}

.features__intro {
  padding: 18px 12px 0 0;
}

.features article {
  position: relative;
  min-width: 0;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.48);
}

.point-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 0 12px;
  color: #fffdf9;
  background: #8b715d;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.feature-illust {
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 0 18px;
  color: #8b715d;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.feature-illust-courtyard {
  mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 49H54' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M14 49V19H50V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M23 49V32H41V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M32 32V17' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M32 19C27 13 21 14 18 19C23 20 28 22 32 19Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M32 19C37 13 43 14 46 19C41 20 36 22 32 19Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 49H54' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M14 49V19H50V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M23 49V32H41V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M32 32V17' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M32 19C27 13 21 14 18 19C23 20 28 22 32 19Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M32 19C37 13 43 14 46 19C41 20 36 22 32 19Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feature-illust-ldk {
  mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 49H52' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M18 49V14H46V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M18 29H46' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M26 49V38H38V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M26 22H38' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M32 9V19' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M27 14H37' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 49H52' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M18 49V14H46V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M18 29H46' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M26 49V38H38V49' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M26 22H38' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M32 9V19' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M27 14H37' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-illust-flow {
  mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 18H50V46H14V18Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M24 18V46' stroke='black' stroke-width='3'/%3E%3Cpath d='M40 18V46' stroke='black' stroke-width='3'/%3E%3Cpath d='M14 32H50' stroke='black' stroke-width='3'/%3E%3Cpath d='M20 25C26 25 28 39 35 39C39 39 42 36 44 32' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M44 32L43 39' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M44 32L37 33' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 18H50V46H14V18Z' stroke='black' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M24 18V46' stroke='black' stroke-width='3'/%3E%3Cpath d='M40 18V46' stroke='black' stroke-width='3'/%3E%3Cpath d='M14 32H50' stroke='black' stroke-width='3'/%3E%3Cpath d='M20 25C26 25 28 39 35 39C39 39 42 36 44 32' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M44 32L43 39' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M44 32L37 33' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.features h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.features p {
  margin: 0;
}

.gallery {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.gallery-window {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
}

.gallery-track {
  display: flex;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-track img {
  flex: 0 0 100%;
  min-width: 0;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
  scroll-snap-align: start;
}

.gallery-arrow {
  width: 34px;
  height: 34px;
  margin: auto;
  color: #72675d;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7cfc4;
}

.gallery-dots span.is-active {
  background: var(--accent);
}

.soft-cta {
  display: grid;
  grid-template-columns: minmax(210px, 260px) 1fr auto;
  align-items: center;
  gap: 40px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 28px 42px;
  background: linear-gradient(90deg, #efe6dc, #d7c8ba);
}

.soft-cta > * {
  min-width: 0;
}

.coffee-logo {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 0;
}

.coffee-logo img {
  width: min(230px, 100%);
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(61, 48, 36, 0.14));
}

.soft-cta p {
  margin: 0 0 10px;
}

.soft-cta h2 {
  line-height: 1.55;
}

.soft-cta .primary-button {
  min-width: 280px;
}

.recommend {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 36px;
  padding: 42px;
  background: rgba(255, 253, 249, 0.78);
}

.recommend__intro {
  padding: 4px 0 0;
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
}

.recommend-list li {
  position: relative;
  padding-left: 28px;
  color: #5f564d;
  font-size: 0.95rem;
  line-height: 1.8;
}

.recommend-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b715d;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 20px;
  padding: 0 28px;
  border: 1px solid #d6cfc5;
  background: rgba(255, 253, 249, 0.46);
  font-size: 0.92rem;
}

.info-band {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 10px;
  padding: clamp(36px, 6vw, 72px) clamp(24px, 6vw, 84px);
  background: rgba(255, 253, 249, 0.78);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.faq-heading .section-kicker {
  margin-bottom: 14px;
}

.faq-list {
  margin: 0;
  font-family: var(--sans);
}

.faq-item {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q. ";
  color: #8b715d;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #8b715d;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  margin: 0;
  padding: 0 44px 24px 31px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0.72em;
}

.final-cta {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #2f261f, #5b4b3e);
  overflow: hidden;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 24, 19, 0.72);
}

.final-cta__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.7fr auto;
  align-items: center;
  gap: 30px;
  min-height: 142px;
  padding: 28px 42px;
}

.final-cta h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.final-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.final-details p {
  margin: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 1.25rem;
  line-height: 1.45;
}

.final-details span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--sans);
  font-size: 0.75rem;
}

.primary-button--light {
  color: var(--ink);
  background: #fffdf9;
}

.site-footer {
  padding: 18px;
  text-align: center;
  background: var(--paper);
}

.mobile-break {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand__copy,
  .nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .nav.is-open {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(250, 247, 241, 0.97);
    border-top: 1px solid var(--line);
  }

  .nav.is-open a {
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
  }

  .overview-grid,
  .features,
  .recommend,
  .final-cta__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 12px;
  }

  .overview-grid article:first-child,
  .overview-grid article:nth-child(2) {
    border-top: 0;
  }

  .features__intro {
    grid-column: 1 / -1;
  }

  .soft-cta {
    grid-template-columns: minmax(180px, 220px) 1fr;
  }

  .soft-cta .primary-button {
    grid-column: 2;
    min-width: 0;
  }

  .faq-section {
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
    gap: 42px;
  }

  .final-details,
  .final-cta .primary-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding: 0 18px;
    gap: 10px;
  }

  .brand__name {
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    background-position: center top;
  }

  .hero__image::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.82) 45%, rgba(255, 253, 249, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 253, 249, 0.62), rgba(255, 253, 249, 0.1));
  }

  .hero__content {
    width: calc(100% - 36px);
    padding: 104px 18px 0;
  }

  .hero-coffee {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 10px 12px 10px 10px;
  }

  .hero-coffee img {
    width: 58px;
    height: 58px;
  }

  .hero-coffee p {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .hero-coffee span {
    font-size: 0.88rem;
  }

  .hero h1 {
    display: grid;
    gap: 8px;
    font-size: clamp(3rem, 14vw, 4.05rem);
  }

  .hero-area {
    font-size: 1.02rem;
  }

  .overview,
  .concept,
  .features,
  .gallery,
  .soft-cta,
  .recommend,
  .info-band,
  .final-cta {
    width: calc(100% - 28px);
  }

  .overview {
    margin-top: 16px;
    padding: 24px 18px;
  }

  .overview-grid,
  .concept,
  .features,
  .recommend,
  .info-band,
  .soft-cta,
  .final-cta__content,
  .final-details {
    grid-template-columns: 1fr;
  }

  .overview-grid article:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .overview-grid {
    gap: 0;
  }

  .overview-grid article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    padding: 16px 0;
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .overview-grid article:first-child {
    border-top: 0;
  }

  .overview-grid .icon {
    grid-row: 1 / span 3;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .overview-label {
    margin-bottom: 3px;
  }

  .overview-main {
    margin-bottom: 3px;
    font-size: 0.96rem;
  }

  .concept__text,
  .features,
  .recommend,
  .info-band,
  .final-cta__content {
    padding: 30px 22px;
  }

  .features {
    gap: 14px;
  }

  .features article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    padding: 22px 18px;
  }

  .point-label {
    grid-column: 1 / -1;
    margin-bottom: 14px;
    width: fit-content;
  }

  .feature-illust {
    grid-row: 2 / span 2;
    width: 50px;
    height: 50px;
    margin: 4px 0 0;
  }

  .features h3 {
    margin-bottom: 6px;
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .features p {
    line-height: 1.75;
  }

  .concept img {
    min-height: 240px;
  }

  .gallery-window {
    grid-template-columns: 36px 1fr 36px;
  }

  .gallery-track {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-track img {
    flex-basis: 100%;
    aspect-ratio: 1.15 / 1;
  }

  .gallery-track::-webkit-scrollbar {
    display: none;
  }

  .soft-cta {
    gap: 20px;
    padding: 22px;
  }

  .soft-cta h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .soft-cta .primary-button {
    grid-column: auto;
    width: 100%;
  }

  .coffee-logo {
    min-height: 178px;
  }

  .coffee-logo img {
    width: min(178px, 100%);
  }

  .recommend-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-details p {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .final-cta {
    box-sizing: border-box;
    width: 100%;
    max-width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .final-cta__content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    gap: 20px;
    min-height: 0;
    padding: 28px 20px;
    overflow: hidden;
  }

  .final-cta__content > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .final-cta h2 {
    width: 100%;
    margin: 0;
    font-size: clamp(1.16rem, 5.4vw, 1.32rem);
    line-height: 1.65;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .mobile-break {
    display: block;
  }

  .final-details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0;
  }

  .final-details p {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .final-cta .primary-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 18px;
  }

  .final-cta .primary-button::after {
    margin-left: 12px;
  }

  .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 66px;
    padding: 16px 0;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .faq-answer {
    padding: 0 4px 22px 28px;
  }

  .faq-answer p {
    font-size: 0.86rem;
    line-height: 1.85;
  }

  .primary-button {
    width: 100%;
    min-height: 58px;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-schedule {
    font-size: 1.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
