/* ===================================================
   Na'au Noa BODY detox — Luxury Natural Stylesheet
   =================================================== */

/* ===== Design Tokens ===== */
:root {
  /* Colour — deep ocean, muted teal, warm sand, amber gold */
  --deep:        #1a3240;
  --teal:        #2d6b7a;
  --teal-mid:    #4a8d9b;
  --teal-light:  #7dbbc6;
  --teal-pale:   #cde4e9;
  --sage:        #68796b;
  --amber:       #9e6c38;
  --amber-mid:   #b57d44;
  --amber-light: #d4a469;
  --ivory:       #f8f4ed;
  --sand:        #ede5d4;
  --sand-mid:    #ddd0bc;
  --sand-dark:   #c4b49c;
  --stone:       #968880;
  --white:       #ffffff;
  --text-dark:   #26201a;
  --text-mid:    #5a5048;
  --text-light:  #8e8480;

  /* Typography */
  --font-serif: 'Noto Serif JP', Georgia, serif;
  --font-sans:  'Noto Sans JP', 'Hiragino Sans', sans-serif;

  /* Elevation */
  --shadow-xs: 0 1px 6px rgba(30,50,40,.06);
  --shadow-sm: 0 2px 14px rgba(30,50,40,.08);
  --shadow-md: 0 6px 32px rgba(30,50,40,.11);
  --shadow-lg: 0 14px 54px rgba(30,50,40,.14);

  /* Shape */
  --radius:    16px;
  --radius-sm: 8px;
  --ease:      .38s cubic-bezier(.4,0,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
/* Form / utility elements stay in sans, non-italic */
input, textarea, select, button,
.section-tag, .menu-card-tag, label,
.required, .nav-menu li a, .nav-logo,
.footer-address, .footer-copy,
.btn, .menu-entry-tag, .menu-entry-divider span {
  font-family: var(--font-sans);
  font-style: normal;
}

/* Shared image tone */
.site-img { filter: saturate(1.04) brightness(1.01); }

/* ===== Layout ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 112px 0; }

.section-tag {
  font-size: .7rem;
  letter-spacing: .38em;
  color: var(--teal-mid);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.section-lead {
  font-family: var(--font-serif);
  font-size: .97rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 68px;
  line-height: 2;
  font-weight: 300;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  border: 1.5px solid transparent;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* Amber gold — primary CTA (replaces coral) */
.btn-booking {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-mid) 60%, #9c6830 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(158,108,56,.35);
  font-weight: 600;
}
.btn-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(158,108,56,.5);
  filter: brightness(1.07);
}
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* White outline for dark / image backgrounds */
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Teal outline */
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* White outline for featured card */
.btn-feat-outline {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.5);
}
.btn-feat-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--white);
}

.btn-submit {
  background: linear-gradient(135deg, var(--teal-mid), var(--deep));
  color: var(--white);
  width: 100%;
  padding: 16px;
  font-size: .97rem;
  border: none;
  letter-spacing: .1em;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.06); }

/* ===== Scroll Animations ===== */
.fade-in, .fade-up {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in        { transform: translateY(0); }
.fade-up        { transform: translateY(28px); }
.fade-in.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(248,244,237,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(30,40,30,.08);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--white); letter-spacing: .08em;
  transition: color var(--ease); z-index: 1;
}
.nav.scrolled .nav-logo { color: var(--deep); }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu li a {
  font-size: .845rem; color: rgba(255,255,255,.85);
  letter-spacing: .06em; transition: color var(--ease);
}
.nav.scrolled .nav-menu li a { color: var(--text-dark); }
.nav-menu li a:hover { color: var(--amber-light) !important; }

.nav-cta {
  background: var(--amber); color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px;
}
.nav-cta:hover { background: var(--amber-mid) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; border-radius: 2px;
  background: var(--white); transition: all var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--deep); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(172deg,#0a1e2d 0%,#1a3240 22%,#1f5060 45%,#2d6b7a 65%,#5a9aaa 82%,#a0c8d2 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  filter: saturate(1.08) brightness(.82);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(8,20,32,.46); z-index: 1;
}
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.12), transparent 70%);
  animation: bubbleFloat linear infinite;
}
.b1 { width:260px; height:260px; top:8%;  left:6%;  animation-duration:16s; }
.b2 { width:160px; height:160px; top:55%; left:72%; animation-duration:11s; animation-delay:-5s; }
.b3 { width:110px; height:110px; top:28%; left:62%; animation-duration:13s; animation-delay:-8s; }

@keyframes bubbleFloat {
  0%,100% { transform: translateY(0) scale(1);     opacity:.45; }
  50%      { transform: translateY(-22px) scale(1.04); opacity:.75; }
}

.hero-content { position: relative; z-index: 3; text-align: center; padding: 20px; }
.hero-sub {
  font-family: var(--font-sans);
  font-size: .78rem; color: rgba(255,255,255,.7);
  letter-spacing: .28em; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
  text-shadow: 0 2px 32px rgba(0,20,40,.5);
  letter-spacing: .05em;
}
.hero-title span {
  display: block;
  font-size: clamp(1rem, 2.6vw, 1.85rem);
  font-weight: 400; letter-spacing: .24em;
  margin-top: 10px; color: rgba(255,255,255,.84);
}
.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(.9rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  letter-spacing: .5em; margin-bottom: 54px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 4; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== Concept ===== */
.concept { background: var(--ivory); }
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-top: 64px;
}
.concept-hawaiian {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--teal);
  margin-bottom: 6px; letter-spacing: .04em;
  font-weight: 300;
}
.concept-meaning {
  font-family: var(--font-serif);
  font-size: .93rem; color: var(--amber-mid);
  margin-bottom: 32px; letter-spacing: .16em;
  font-weight: 300;
}
.concept-text p { color: var(--text-mid); margin-bottom: 18px; line-height: 2.1; font-weight: 300; }

.concept-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.concept-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s ease;
}
.concept-img-wrap:hover .concept-img { transform: scale(1.04); }
.concept-img-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.18); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.32); border-radius: 50px;
  padding: 10px 28px; text-align: center; color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,.3); white-space: nowrap;
}
.badge-text {
  display: block; font-family: var(--font-serif);
  font-size: 1.55rem; font-weight: 300; letter-spacing: .06em;
}
.badge-sub { display: block; font-size: .7rem; letter-spacing: .18em; opacity: .8; margin-top: 5px; font-family: var(--font-sans); }

/* ===== AET ===== */
.aet { background: linear-gradient(180deg,#f2f6f4 0%, var(--ivory) 100%); position: relative; }
.aet-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--deep), var(--teal), var(--teal-light), var(--teal), var(--deep));
}
.aet-intro {
  background: linear-gradient(135deg, var(--deep), var(--teal));
  color: rgba(255,255,255,.92); padding: 44px 52px;
  border-radius: var(--radius); margin-top: 16px; margin-bottom: 0;
  line-height: 2.1; font-size: 1rem; box-shadow: var(--shadow-lg);
  font-weight: 300;
}
.aet-intro strong { color: var(--teal-pale); font-weight: 500; }

/* Parallax Banner */
.parallax-wrap { position: relative; height: 340px; overflow: hidden; margin: 60px 0; }
.parallax-img {
  position: absolute; top: -25%; left: 0;
  width: 100%; height: 150%; object-fit: cover;
  will-change: transform; transform: translateY(0);
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,35,55,.65) 0%, rgba(26,80,98,.52) 100%);
  z-index: 1;
}
.parallax-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 20px; text-align: center;
}
.parallax-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.8vw, 1.65rem);
  color: var(--white); letter-spacing: .2em; line-height: 2.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.38); font-weight: 300;
}

.aet-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.aet-block {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 26px; box-shadow: var(--shadow-xs);
  border-top: 2px solid var(--teal-light);
  transition: transform var(--ease), box-shadow var(--ease);
}
.aet-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aet-block-icon { font-size: 1.2rem; color: var(--teal-mid); margin-bottom: 14px; }
.aet-block h3 {
  font-family: var(--font-serif); font-size: 1.08rem;
  margin-bottom: 12px; color: var(--deep); line-height: 1.5; font-weight: 600;
}
.aet-block p { color: var(--text-mid); line-height: 1.95; font-size: .9rem; font-weight: 300; }
.aet-block strong { color: var(--text-dark); font-weight: 500; }

.aet-message {
  background: var(--sand); border-radius: var(--radius);
  padding: 50px 56px; margin-bottom: 44px;
  border-left: 3px solid var(--amber-light);
}
.aet-message p { color: var(--text-mid); line-height: 2.1; margin-bottom: 18px; font-weight: 300; }
.aet-message p:last-child { margin-bottom: 0; }
.aet-message strong { color: var(--text-dark); font-weight: 500; }

.aet-closing { text-align: center; padding: 44px 0 10px; }
.aet-closing p {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--text-mid); line-height: 2.3; letter-spacing: .06em; font-weight: 300;
}
.aet-closing-strong {
  font-size: 1.22rem !important; color: var(--deep) !important;
  font-weight: 600 !important; margin-top: 16px !important; letter-spacing: .04em !important;
}

/* ===== Recommend ===== */
.recommend { background: linear-gradient(150deg, var(--deep) 0%, var(--teal) 60%, var(--teal-mid) 100%); }
.recommend .section-tag   { color: rgba(255,255,255,.55); }
.recommend .section-title { color: var(--white); }
.recommend .section-lead  { color: rgba(255,255,255,.7); }

.recommend-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 820px; margin: 0 auto; }
.recommend-item {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius);
  padding: 18px 26px; display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,.92); font-size: .93rem; line-height: 1.65;
  transition: background var(--ease); font-family: var(--font-serif); font-weight: 300;
}
.recommend-item:hover { background: rgba(255,255,255,.17); }
.recommend-highlight {
  background: rgba(158,108,56,.28) !important;
  border-color: rgba(158,108,56,.45) !important;
  grid-column: span 2; font-weight: 400;
}
.check {
  flex-shrink: 0; width: 28px; height: 28px;
  background: rgba(158,108,56,.7); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--white); line-height: 1;
  font-family: var(--font-sans);
}
.check-highlight { background: rgba(255,255,255,.25); }

/* ===== Menu ===== */
.menu { background: var(--ivory); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 16px; align-items: start; }

.menu-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  border: 1px solid rgba(196,180,156,.35);
  transition: transform var(--ease), box-shadow var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card-img { height: 160px; overflow: hidden; flex-shrink: 0; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }

/* Featured card — sunset BG */
.menu-card-featured {
  position: relative; background: transparent;
  transform: scale(1.04); box-shadow: var(--shadow-lg); border: none;
}
.menu-card-featured:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 18px 56px rgba(26,50,64,.28); }
.menu-feat-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: saturate(1.05) brightness(.78);
}
.menu-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,42,60,.86) 0%, rgba(20,76,100,.76) 100%);
  z-index: 1;
}
.menu-feat-content {
  position: relative; z-index: 2;
  padding: 26px 26px 30px;
  display: flex; flex-direction: column; gap: 12px; min-height: 440px;
}

.menu-card-badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.15);
  padding: 5px 14px; border-radius: 50px; align-self: flex-start;
  font-family: var(--font-sans);
}
.menu-card-tag { font-size: .72rem; letter-spacing: .16em; color: var(--teal-mid); font-weight: 500; }
.menu-tag-light { color: rgba(255,255,255,.62); }

.menu-card-title { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.7; color: var(--text-dark); font-weight: 600; }
.menu-title-light { color: var(--white); }

.menu-divider { width: 32px; height: 1px; background: var(--sand-dark); }
.menu-divider-light { background: rgba(255,255,255,.28); }

/* price with strikethrough original */
.menu-price-orig-line {
  font-family: var(--font-sans);
  font-size: .82rem; color: var(--text-light);
  text-decoration: line-through;
  letter-spacing: .04em;
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 700;
  color: var(--deep); line-height: 1.25;
}
.menu-price-light { color: var(--white); font-size: 1.4rem; }
.menu-price-free  { color: var(--teal); font-size: 1.7rem; }

.menu-desc { color: var(--text-mid); font-size: .88rem; line-height: 1.95; flex-grow: 1; font-weight: 300; }
.menu-desc-light { color: rgba(255,255,255,.8); }
.menu-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ===== Profile ===== */
.profile { background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%); }
.profile-grid { display: grid; grid-template-columns: 240px 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.profile-left { text-align: center; }

.avatar-wrap {
  width: 196px; height: 196px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 22px;
  box-shadow: 0 12px 44px rgba(26,80,98,.2);
  border: 3px solid rgba(196,180,156,.5);
  background: linear-gradient(145deg, var(--teal-light), var(--deep));
}
.avatar-portrait { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.profile-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.profile-kana  { font-size: .78rem; color: var(--text-light); letter-spacing: .12em; margin-bottom: 10px; font-family: var(--font-sans); }
.profile-role  { font-size: .8rem; color: var(--teal-mid); letter-spacing: .06em; line-height: 1.7; font-family: var(--font-sans); }

.profile-message {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 52px; border-left: 3px solid var(--amber-light);
  margin-bottom: 40px; box-shadow: var(--shadow-xs);
  position: relative;
}
.profile-message::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem; line-height: 1;
  color: rgba(181,125,68,.15);
  position: absolute; top: 12px; left: 28px;
  pointer-events: none;
}
.profile-message p {
  font-family: var(--font-serif);
  color: var(--text-dark); line-height: 2.2; margin-bottom: 18px;
  font-weight: 300; font-size: 1.02rem; position: relative; z-index: 1;
}
.profile-message p:last-child { margin-bottom: 0; }

.credentials-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--deep); padding-bottom: 12px;
  border-bottom: 1px solid var(--sand-dark);
  margin-bottom: 20px; letter-spacing: .06em; font-weight: 600;
}
.credentials-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(0,0,0,.045);
  color: var(--text-mid); font-size: .88rem;
  line-height: 1.7; position: relative; font-weight: 300;
}
.credentials-list li::before { content: '—'; position: absolute; left: 0; color: var(--teal-light); }
.credentials-highlight { color: var(--deep) !important; font-weight: 600 !important; }

/* ===== Access ===== */
.access { background: var(--ivory); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 60px; align-items: start; }
.access-info { display: flex; flex-direction: column; gap: 0; }

.access-item {
  display: flex; align-items: flex-start; gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand-mid);
}
.access-item:first-child { border-top: 1px solid var(--sand-mid); }
.access-item strong {
  display: block; font-size: .78rem;
  color: var(--deep); letter-spacing: .1em;
  margin-bottom: 5px; font-weight: 600; font-family: var(--font-sans);
  min-width: 80px;
}
.access-item p { color: var(--text-mid); font-size: .92rem; line-height: 1.8; font-weight: 300; }

.access-map-col { display: flex; flex-direction: column; gap: 14px; }
.access-scene { position: relative; border-radius: var(--radius); overflow: hidden; height: 148px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.access-scene-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.access-scene-caption {
  position: absolute; bottom: 10px; right: 14px;
  color: rgba(255,255,255,.85); font-size: .72rem;
  letter-spacing: .12em; text-shadow: 0 1px 8px rgba(0,0,0,.5);
  font-family: var(--font-sans);
}
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; }
.access-map iframe { width: 100%; height: 360px; display: block; }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%); }

.booking-banner {
  background: linear-gradient(135deg, var(--deep), var(--teal));
  border-radius: var(--radius); padding: 36px 48px;
  margin-bottom: 52px; box-shadow: var(--shadow-md);
}
.booking-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.booking-banner-label { font-size: .7rem; letter-spacing: .2em; color: rgba(255,255,255,.55); margin-bottom: 6px; text-transform: uppercase; font-family: var(--font-sans); }
.booking-banner-desc { font-family: var(--font-serif); font-size: 1.02rem; color: var(--white); line-height: 1.6; font-weight: 300; }
.booking-banner-btn { flex-shrink: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0; padding-top: 6px; }
.contact-item { display: flex; align-items: flex-start; gap: 0; padding: 16px 0; border-bottom: 1px solid var(--sand-mid); }
.contact-item:first-child { border-top: 1px solid var(--sand-mid); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; color: var(--teal); line-height: 1.5; margin-right: 14px; margin-top: 2px; }
.contact-icon-svg { display: inline-flex; align-items: center; margin-top: 2px; margin-right: 14px; color: var(--teal); }

.contact-item strong { display: block; font-size: .78rem; color: var(--deep); letter-spacing: .1em; margin-bottom: 5px; font-weight: 600; font-family: var(--font-sans); }
.contact-link { color: var(--text-dark); font-size: .92rem; line-height: 1.7; word-break: break-all; transition: color var(--ease); font-weight: 300; }
.contact-link:hover { color: var(--teal-mid); }

.form-header { font-family: var(--font-serif); font-size: .97rem; color: var(--deep); margin-bottom: 26px; padding-bottom: 12px; border-bottom: 1px solid var(--sand-dark); letter-spacing: .06em; font-weight: 600; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 44px 46px; box-shadow: var(--shadow-sm); border: 1px solid rgba(196,180,156,.3); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: .84rem; color: var(--text-dark); font-weight: 500; margin-bottom: 8px; font-family: var(--font-sans); }
.required { background: var(--amber); color: var(--white); font-size: .67rem; padding: 2px 7px; border-radius: 3px; margin-left: 8px; font-weight: 400; vertical-align: middle; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--sand-dark); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .94rem;
  color: var(--text-dark); background: var(--ivory);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal-mid); box-shadow: 0 0 0 3px rgba(74,141,155,.14); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== Footer ===== */
.footer { background: var(--deep); padding: 64px 0 44px; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 28px; text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.22rem; color: var(--white); letter-spacing: .08em; margin-bottom: 12px; font-weight: 300; }
.footer-address { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 28px; line-height: 1.8; }
.footer-sns { margin-bottom: 32px; }
.footer-sns a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .86rem; padding: 8px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 50px; transition: all var(--ease); }
.footer-sns a:hover { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.35); }

/* ===== Floating CTA ===== */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 990; opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; pointer-events: none; }
.float-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta-btn {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-mid));
  color: var(--white); padding: 14px 22px; border-radius: 50px;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 6px 26px rgba(158,108,56,.48);
  transition: all var(--ease); white-space: nowrap; letter-spacing: .05em;
  font-family: var(--font-sans);
}
.float-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(158,108,56,.62); filter: brightness(1.07); }

/* ===== Menu split entry styles ===== */
.menu-entry { display: flex; flex-direction: column; gap: 8px; padding: 18px 0; }
.menu-entry:first-of-type { padding-top: 0; }
.menu-entry:last-of-type  { padding-bottom: 0; }
.menu-entry-tag   { font-size: .7rem; letter-spacing: .16em; color: var(--teal-mid); font-weight: 500; }
.menu-entry-title { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.6; color: var(--text-dark); font-weight: 600; }
.menu-entry-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--deep); line-height: 1.25; }
.menu-entry-price-free  { color: var(--teal); }
.menu-entry-price-orig  { font-family: var(--font-sans); font-size: .82rem; color: var(--text-light); text-decoration: line-through; letter-spacing: .04em; font-style: normal; }
.menu-entry-desc  { color: var(--text-mid); font-size: .85rem; line-height: 1.9; font-weight: 300; }
.menu-entry-btn   { margin-top: 4px; }
.menu-entry-divider {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0; margin: 2px 0;
}
.menu-entry-divider::before,
.menu-entry-divider::after { content: ''; flex: 1; height: 1px; background: var(--sand-dark); }
.menu-entry-divider span { font-size: .75rem; color: var(--text-light); letter-spacing: .12em; white-space: nowrap; }

/* ===================================================
   Responsive — Tablet (≤ 960px)
   =================================================== */
@media (max-width: 960px) {
  .section { padding: 80px 0; }

  .concept-grid, .profile-grid, .access-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .concept-img-wrap { order: -1; aspect-ratio: 16/9; }

  .aet-blocks { grid-template-columns: 1fr; }
  .aet-intro  { padding: 30px 26px; }
  .aet-message { padding: 34px 26px; }
  .parallax-wrap { height: 260px; }

  .menu-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .menu-card-featured { transform: none; order: -1; }
  .menu-card-featured:hover { transform: translateY(-4px); }
  .menu-feat-content { min-height: auto; }

  .recommend-list { grid-template-columns: 1fr; }
  .recommend-highlight { grid-column: span 1; }

  .profile-message { padding: 36px 28px; }

  .booking-banner { padding: 26px 28px; }
  .booking-banner-inner { flex-direction: column; align-items: flex-start; }

  .contact-form-wrap { padding: 34px 26px; }
  .access-map iframe { height: 300px; }
  .float-cta { bottom: 20px; right: 20px; }
}

/* ===================================================
   Responsive — Mobile (≤ 640px)
   =================================================== */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero-title { font-size: 2.1rem; }
  .hero-title span { font-size: .92rem; }
  .hero-catch { letter-spacing: .28em; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }

  /* Nav hamburger */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(248,244,237,.98); backdrop-filter: blur(20px);
    padding: 8px 22px 24px; flex-direction: column; gap: 0;
    box-shadow: 0 10px 30px rgba(20,40,30,.12);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; border-bottom: 1px solid var(--sand-mid); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu li a { display: block; padding: 13px 0; color: var(--text-dark) !important; font-size: .94rem; }
  .nav-cta { background: none !important; color: var(--amber) !important; padding: 13px 0 !important; border-radius: 0 !important; font-weight: 600; }

  /* Sections */
  .aet-intro, .aet-message { padding: 24px 18px; }
  .parallax-wrap { height: 190px; margin: 40px 0; }
  .parallax-quote { font-size: .95rem; letter-spacing: .12em; }

  .menu-btns { flex-direction: column; }
  .menu-btns .btn, .menu-btns a { width: 100%; text-align: center; }
  .menu-feat-content .btn { width: 100%; text-align: center; }

  .profile-grid { gap: 32px; }
  .profile-message { padding: 26px 18px; }
  .profile-message::before { font-size: 4rem; top: 8px; left: 14px; }

  .booking-banner { padding: 20px 18px; }
  .contact-form-wrap { padding: 24px 18px; }
  .access-map iframe { height: 250px; }
  .access-scene { height: 110px; }

  .float-cta { bottom: 14px; right: 14px; }
  .float-cta-btn { font-size: .8rem; padding: 12px 16px; gap: 6px; }
}

/* ===================================================
   Responsive — Small mobile (≤ 380px)
   =================================================== */
@media (max-width: 380px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.4rem; }
  .menu-card-title { font-size: 1.05rem; }
  .menu-price { font-size: 1.5rem; }
  .profile-message p { font-size: .95rem; }
  .contact-form-wrap { padding: 20px 14px; }
}
