@charset "utf-8";
/* CSS Document */


  :root {
    --cream: #f5efe5;
    --cream-2: #efe7d8;
    --paper: #f8f3e9;
    --ink: #1f1c18;
    --ink-2: #2a2520;
    --ink-soft: #3a342e;
    --body: #4d463f;
    --muted: #8b8278;
    --gold: #c9a86c;
    --gold-strong: #b8924e;
    --gold-soft: #e3c990;
    --line: rgba(31,28,24,.12);
    --line-dark: rgba(245,239,229,.18);
  }
  * {
	 box-sizing: border-box;
	}
html, body {
	margin: 0;
	padding: 0;
	}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1.8;
	}
.serif {
	font-family: 'Noto Serif JP', serif;
	}
  .en { font-family: 'Cormorant Garamond', 'Noto Serif JP', serif; letter-spacing: .25em; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
    display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 22px 56px;
    color: #fff;
    transition: background-color .35s ease, padding .35s ease, color .35s ease;
  }
  .nav.scrolled {
    background: rgba(20,17,13,.88);
    backdrop-filter: blur(8px);
    padding: 14px 56px;
  }
  .brand {
    display: flex; align-items: baseline; gap: 14px;
  }
  .brand .logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px; font-weight: 500; letter-spacing: .08em;
  }
  .brand .tag {
    font-size: 11px; letter-spacing: .15em; opacity: .82;
    font-weight: 300;
  }
  .navlinks {
    display: flex; align-items: center; gap: 36px;
    font-size: 13px; letter-spacing: .22em; font-weight: 500;
  }
  .navlinks a {
    position: relative; padding: 4px 0;
    transition: opacity .2s;
  }
  .navlinks a:hover { opacity: .65; }
  .navlinks a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--gold); transform: scaleX(0);
    transform-origin: left; transition: transform .25s ease;
  }
  .navlinks a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 600;
    transition: background .2s;
  }
  .nav-cta::after {
	display: none;
	}
  .nav-cta:hover {
	background: var(--gold-strong); opacity: 1 !important;
	}

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 100vh; min-height: 720px;
    overflow: hidden;
    color: #fff;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('../img/hero01.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(15,12,9,.45) 0%, rgba(15,12,9,.25) 35%, rgba(15,12,9,.05) 70%, rgba(15,12,9,0) 100%),
      linear-gradient(180deg, rgba(15,12,9,.2) 0%, rgba(15,12,9,0) 25%, rgba(15,12,9,0) 75%, rgba(15,12,9,.25) 100%);
  }
  .hero-inner {
    position: relative; height: 100%;
    max-width: 1320px; margin: 0 auto; padding: 0 56px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .42em;
    font-size: 14px;
    color: var(--gold-soft);
    margin-bottom: 28px;
    font-weight: 400;
  }
  .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 1.32;
    letter-spacing: .04em;
    margin: 0 0 36px;
    text-shadow: 0 2px 22px rgba(0,0,0,.45);
}
  .hero-title .accent { color: var(--gold-soft); }
  .hero-sub {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .08em;
    color: rgba(255,255,255,.92);
    max-width: 520px;
    margin: 0 0 44px;
    font-weight: 300;
  }
  .hero-ctas { 
	display: flex; 
	gap: 16px; 
}
  .btn {
    display: inline-flex;
	align-items: center;
	justify-content: center;
    height: 54px;
	padding: 0 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
	letter-spacing: .22em;
	font-weight: 500;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: all .25s ease;
    border-radius: 2px;
  }
  .btn-primary {
    background: var(--gold-soft);
    color: #2a2018;
    border-color: var(--gold-soft);
    font-weight: 600;
  }
  .btn-primary:hover {
    background: #fff;
    border-color: #fff;
  }
  .btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.85);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.1);
  }
  .hero-scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 10px;
    letter-spacing: .35em;
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-scroll::after {
    content: '';
	display: block;
	width: 1px;
	height: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,.8) 0%, transparent 100%);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine { 0%,100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }

  /* ============ CONCEPT ============ */
  section {
	 position: relative;
}
  .section-eyebrow {
    display: inline-flex;
	align-items: center;
	gap: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; letter-spacing: .35em;
    color: var(--gold-strong);
    font-weight: 500;
    margin-bottom: 26px;
  }
  .section-eyebrow::after {
    content: '';
	width: 38px;
	height: 1px;
	background: var(--gold-strong);
  }
  .concept {
    background: var(--paper);
    padding: 140px 0 160px;
  }
  .concept-wrap {
    max-width: 1180px;
	margin: 0 auto;
    padding: 0 56px;
    display: grid;
	grid-template-columns: 600px 400px;
	justify-content: space-between;
    gap: 100px;
    align-items: center;
  }
  .concept-images {
    position: relative;
	width: 100%;
    aspect-ratio: 600 / 540;
  }
  .concept-images .img1 {
    position: absolute;
    top: 0;
	left: 0;
    aspect-ratio: 500/500;
    overflow: hidden;
	border: 3px solid var(--paper);
    box-shadow: 0 20px 60px rgba(20,15,10,.18);
	margin: 0 0 40px;
  }
.concept-images .img1 img,
.concept-images .img2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
  .concept-images .img2 {
    position: absolute;
	bottom: 0;
	right: 0;
    aspect-ratio: 280/280;
    overflow: hidden;
	border: 3px solid var(--paper);
    box-shadow: 0 24px 60px rgba(20,15,10,.28);
  }
  .concept-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: .04em;
    margin: 0 0 38px;
    font-weight: 500;
    color: var(--ink);
  }
.concept-body {
	width: 100%;
	max-width: 400px;
}
  .concept-body p {
    font-size: 16px;
    line-height: 2.15;
    color: var(--body);
    margin: 0 0 22px;
    letter-spacing: .03em;
  }
  .text-link {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--gold-strong);
    font-size: 13px; letter-spacing: .22em; font-weight: 500;
    margin-top: 16px;
    transition: gap .2s;
  }
  .text-link:hover { gap: 22px; }
  .text-link .arr {
    width: 28px; height: 1px; background: currentColor; position: relative;
  }
  .text-link .arr::after {
    content: ''; position: absolute; right: 0; top: -3px;
    width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }

  /* ============ FEATURES ============ */
  .features {
    background: var(--ink);
    color: #f1ebe0;
    padding: 130px 0 0;
  }
  .features-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .features-head .section-eyebrow {
    color: var(--gold-soft);
  }
  .features-head .section-eyebrow::after { 
	background: var(--gold-soft);
}
  .features-head .section-eyebrow {
    margin-bottom: 22px;
  }
  .features-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: .06em;
    margin: 0;
    color: #f5ecd9;
  }
.features-title span {
	color: var(--gold-strong);
}

.feat-cards {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.feat-card {
    background: var(--paper);
    color: var(--ink);
    padding: 56px 38px 50px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.45);
}
.feat-icon {
	width: 40px;
    height: 40px;
    display: flex;
	align-items: center;
	justify-content: center;
    color: var(--gold-strong);
    margin: 0 auto 18px;
}
.feat-num {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .35em;
    font-size: 13px;
    color: var(--gold-strong);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding: 0 26px;
}
.feat-num::before, .feat-num::after {
    content: '';
	position: absolute;
	top: 50%;
	width: 18px;
	height: 1px;
    background: var(--gold-strong);
}
.feat-num::before {
	left: 0;
}
.feat-num::after {
	right: 0;
}
.feat-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .08em;
    margin: 22px 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.feat-card p {
    font-size: 13px;
    line-height: 2;
    color: var(--body);
    margin: 0;
    text-align: left;
    letter-spacing: .03em;
}


.feat-grid {
    margin-top: 110px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; 
    grid-template-rows: auto auto; 
    gap: 5px;
    width: 100%;
}
.feat-grid > div:not(.big) {
    aspect-ratio: 355 / 255;
    overflow: hidden;
}
.feat-grid .big {
    grid-column: 1;
    grid-row: 1 / span 2;
	aspect-ratio: 720 / 515; 
    overflow: hidden;
    height: 100%; 
}

.feat-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
    display: block;
}
.feat-grid > div:hover img {
	transform: scale(1.05);
}
.features-cta {
    display: flex;
	justify-content: center;
    padding: 80px 0 130px;
}
.btn-light {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
.btn-light:hover {
	background: #fff;
	border-color: #fff;
}

  /* ============ STORY ============ */
  .story {
    background: var(--paper);
    padding: 150px 0 140px;
  }
  .story-wrap {
    max-width: 1180px;
	margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 90px;
    align-items: center;
  }
  .story-img {
    overflow: hidden;
    max-width: 600px;
    aspect-ratio: 600/350;
    box-shadow: 0 20px 60px rgba(20,15,10,.15);
  }
  .story-img img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
}
  .story-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    line-height: 1.55;
    letter-spacing: .05em;
    margin: 0 0 36px;
    font-weight: 500;
  }
  .story-divider {
    height: 1px; 
	background: var(--gold-strong); 
	width: 100%;
    margin-bottom: 36px;
	opacity: .5;
  }
  .story p {
    font-size: 16px;
    line-height: 2.2;
    color: var(--body);
    margin: 0 0 22px;
    letter-spacing: .03em;
  }

  /* ============ RESERVATION ============ */
  .reservation {
    background: #333;
    padding: 110px 0;
  }
  .reservation-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .reservation-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    line-height: 1.55;
    letter-spacing: .05em;
    color: var(--paper);
    font-weight: 500;
    margin: 0 0 30px;
  }
  .reservation p {
    font-size: 14px;
    line-height: 2;
    color: var(--paper);
    margin: 0;
  }
  .btn-reserve {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    justify-self: end;
    padding: 0 44px;
    height: 60px;
  }
  .btn-reserve:hover { background: var(--gold-strong); border-color: var(--gold-strong); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink);
    color: #d8cfbf;
    padding: 90px 0 32px;
  }
  .foot-wrap {
    max-width: 1220px; margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .foot-brand .flogo {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    letter-spacing: .12em;
    color: #f5ecd9;
    margin-bottom: 4px;
  }
  .foot-brand .ftag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--gold-soft);
    margin-bottom: 26px;
  }
  .foot-brand .faddr {
    font-size: 12px;
    line-height: 2.1;
    color: #b6ac9c;
    letter-spacing: .04em;
  }
  .foot-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: .35em;
    color: var(--gold-soft);
    font-weight: 500;
    margin: 6px 0 22px;
  }
  .foot-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .foot-col a {
    font-size: 13px; color: #d8cfbf;
    letter-spacing: .05em;
    transition: color .2s;
  }
  .foot-col a:hover { color: var(--gold-soft); }
  .copyright {
    max-width: 1220px;
    margin: 70px auto 0;
    padding: 24px 56px 0;
    border-top: 1px solid var(--line-dark);
    font-size: 11px;
    color: #6f6657;
    letter-spacing: .15em;
  }

  /* ============ REVEAL ============ */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .reveal.in { opacity: 1; transform: none; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    .nav {
		padding: 16px 24px;
	  }
    .navlinks {
		display: none;
	  }
    .hero-inner {
		padding: 0 24px;
	  }
    .hero-title {
		font-size: 44px;
	  }
    .concept-wrap, .story-wrap, .reservation-wrap {
		grid-template-columns: 1fr;
		gap: 50px; 
		padding: 0 24px;
	  }
    .concept { 
		padding: 90px 0; 
	  }
    .features { 
		padding: 90px 0 0; 
	  }
    .feat-cards { 
		grid-template-columns: 1fr; 
		padding: 0 24px; 
	  }
    .feat-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto; 
    }

    .feat-grid .big {
        grid-column: 1 / span 2; 
        grid-row: auto;
        aspect-ratio: 16 / 9; 
    }

    .feat-grid > div:not(.big) {
        aspect-ratio: 355 / 255;
    }
    .features-title, .reservation-title { 
		font-size: 28px; 
	  }
    .concept-title, .story-title { 
		font-size: 28px; 
	  }
    .foot-wrap { 
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		padding: 0 24px;
	  }
    .btn-reserve {
		justify-self: start;
	  }
    .reservation {
		padding: 70px 0;
	  }
    .story {
		padding: 90px 0;
	  }
    .copyright { 
		padding: 24px 24px 0;
	  }
  }