/* ===================================
   S Resort El Nido — Main Stylesheet
   Japanese Minimalist Aesthetic
=================================== */

/* === CSS Variables === */
:root {
  --washi:        #F7F4EF;
  --sumi:         #2C2C2A;
  --kareki:       #A89880;
  --mist:         #D8D4CC;
  --kokedama:     #8A9B7E;
  --coral:        #C8B49A;
  --body-text:    #4A4845;

  --font-serif:   'Cormorant Garamond', 'Noto Serif TC', Georgia, serif;
  --font-sans:    'DM Sans', 'Noto Sans TC', system-ui, sans-serif;

  --gap-section:  80px;
  --gap-block:    80px;
  --container:    1280px;
  --pad-x:        10vw;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 110px; }
body {
  background: var(--washi);
  color: var(--sumi);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; cursor: default; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* No underline on nav, buttons, logos, cards, image-only links */
.nav__logo:hover,
.nav__links a:hover,
.nav__book:hover,
.nav__mobile a:hover,
.btn:hover,
.home-card:hover,
.home-card a:hover,
.partner-block a:hover,
.service-item__icon a:hover,
.room-card:hover,
.room-card a:hover,
.full-bleed a:hover,
.footer__brand-wrap a:hover,
.footer__social a:hover,
.footer__nav-links a:hover { text-decoration: none; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
h1 { font-size: clamp(48px, 6.5vw, 88px); }
h2 { font-size: clamp(32px, 3.5vw, 52px); letter-spacing: 0.08em; }
h3 { font-size: clamp(22px, 2vw, 30px); letter-spacing: 0.08em; }
h4 { font-size: clamp(16px, 1.5vw, 20px); letter-spacing: 0.12em; }
p  { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.9; color: var(--body-text); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kareki);
  display: block;
  margin-bottom: 16px;
}
.caption {
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: var(--kareki);
  text-transform: uppercase;
}
.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* === Language Toggle === */
body.lang-en  .zh { display: none; }
body.lang-zh  .en { display: none; }
body:not(.lang-zh) .zh { display: none; }

/* === Container === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px var(--pad-x);
  box-shadow: 0 1px 0 var(--mist);
}

/* Logo */
.nav__logo {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--washi);
  transition: color 0.4s ease;
  line-height: 1.2;
  display: flex; align-items: center; gap: 12px;
}
.nav__logo-img {
  height: 48px; width: auto;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
}
.nav__logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  font-family: var(--font-sans);
  opacity: 0.7;
  margin-top: 2px;
}
.nav.scrolled .nav__logo { color: var(--sumi); }
.nav__logo-img { transition: filter 0.4s ease; filter: brightness(0) invert(1); }
.nav.scrolled .nav__logo-img { filter: none; }

/* Footer logo */
.footer__brand-wrap { margin-bottom: 16px; }
.footer__brand-img {
  height: 52px; width: auto;
  object-fit: contain;
  display: block;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--sumi); }
.lang-zh .nav__links a .zh { font-size: 13px; letter-spacing: 0.06em; }

/* Language dropdown (desktop) */
.nav__lang { position: relative; }
.nav__lang-trigger {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
  background: none;
  border: none;
  cursor: default;
  font-family: var(--font-sans);
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav__lang-trigger:hover { color: var(--washi); }
.nav.scrolled .nav__lang-trigger { color: var(--sumi); }

.nav__lang:hover .nav__lang-dropdown,
.nav__lang:focus-within .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__lang-dropdown .lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: default;
  padding: 11px 26px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--font-sans);
  color: var(--sumi);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__lang-dropdown .lang-option:hover { color: var(--kareki); background: rgba(44,44,42,0.04); }
.nav__lang-dropdown .lang-option.active { color: var(--kareki); }

/* Book Now btn */
.nav__book {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 28px;
  border: none;
  border-radius: 2px;
  color: #fff;
  cursor: default;
  background: var(--coral);
  font-family: var(--font-sans);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(200, 180, 154, 0.45);
}
.nav__book:hover {
  background: #b8a08a;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(200, 180, 154, 0.6);
}
.nav.scrolled .nav__book { background: var(--sumi); color: var(--washi); box-shadow: none; }
.nav.scrolled .nav__book:hover { background: #444; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: default;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--washi);
  transition: background 0.4s ease;
}
.nav.scrolled .nav__hamburger span { background: var(--sumi); }

/* Mobile Menu */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--washi);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 110px 24px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--sumi);
  transition: color 0.3s ease;
}
.nav__mobile a:hover { color: var(--kareki); }
.nav__close {
  position: absolute;
  top: 28px; right: var(--pad-x);
  font-size: 28px;
  cursor: default;
  background: none;
  border: none;
  color: var(--sumi);
  line-height: 1;
  font-family: var(--font-sans);
  font-weight: 300;
}
/* Desktop dropdown */
.nav__links li.has-dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%; left: 0;
  transform: translateY(6px);
  min-width: 230px;
  padding: 10px 0;
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav__links li.has-dropdown:hover .nav__dropdown,
.nav__links li.has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown li { display: block; }
.nav__dropdown a {
  display: block;
  padding: 11px 26px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav .nav__dropdown a,
.nav.scrolled .nav__dropdown a { color: var(--sumi); }
.nav__dropdown a::after { content: none; }
.nav__dropdown a:hover { color: var(--kareki); background: rgba(44,44,42,0.04); }

/* Mobile grouped submenu */
.nav__mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.nav__mobile-group__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nav__mobile-toggle {
  background: none;
  border: none;
  color: var(--sumi);
  cursor: default;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__mobile-toggle span {
  display: block;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--sumi);
  border-bottom: 1.5px solid var(--sumi);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}
.nav__mobile-group.open .nav__mobile-toggle span { transform: rotate(-135deg); margin-top: 4px; }
.nav__mobile-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: -2px;
}
.nav__mobile-group.open .nav__mobile-sub { display: flex; }
.nav__mobile-sub a {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kareki);
}
.nav__mobile-sub a:hover { color: var(--sumi); }

/* Language dropdown (mobile) */
.nav__mobile-lang-label {
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--sumi);
}
.nav__mobile-sub .lang-option {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kareki);
  background: none;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__mobile-sub .lang-option:hover { color: var(--sumi); }
.nav__mobile-sub .lang-option.active { color: var(--sumi); font-weight: 500; }

/* ===========================
   HERO (Homepage)
=========================== */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.6s var(--ease-out);
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,44,42,0.65) 0%,
    rgba(44,44,42,0.15) 55%,
    transparent 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) 88px;
  max-width: var(--container);
  margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 20px;
}
.hero__title {
  color: var(--washi);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.0;
  max-width: 720px;
}
.hero__sub {
  color: rgba(247,244,239,0.75);
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.04em;
  margin-top: 28px;
  max-width: 38ch;
  font-family: var(--font-serif);
  font-style: italic;
}
.hero__scroll {
  position: absolute;
  bottom: 52px; right: var(--pad-x);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: rgba(247,244,239,0.55);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; z-index: 2;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 52px;
  background: rgba(247,244,239,0.4);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 1;   transform: scaleY(0.4); transform-origin: top; }
  100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
}

/* ===========================
   PAGE HERO (sub-pages)
=========================== */
.page-hero {
  position: relative;
  height: 72vh; min-height: 480px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,20,18,0.80) 0%,
    rgba(20,20,18,0.50) 45%,
    rgba(20,20,18,0.25) 75%,
    rgba(20,20,18,0.10) 100%
  );
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) 80px;
  max-width: var(--container);
  margin: 0 auto; width: 100%;
}
.page-hero__title {
  color: var(--washi);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* ===========================
   SECTION LABEL
=========================== */
.section-label {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 48px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--kareki);
}
.section-label span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kareki);
  font-family: var(--font-sans);
}

/* ===========================
   INTRO TEXT (pull-quote block)
=========================== */
.intro-text {
  padding: 100px var(--pad-x) 72px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: flex-end;
}
.intro-text__inner {
  max-width: 52%;
  border-left: 2px solid var(--kareki);
  padding-left: 40px;
}
.intro-text__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.55;
  color: var(--sumi);
  margin-bottom: 24px;
  font-weight: 300;
}
.intro-text__body { font-size: 16px; line-height: 1.9; }

/* ===========================
   THREE ENTRY CARDS (Homepage)
=========================== */
.home-cards {
  padding: var(--gap-section) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.home-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.home-card {
  display: flex; flex-direction: column;
  cursor: default; overflow: hidden;
}
.home-card__image {
  overflow: hidden; margin-bottom: 24px;
  position: relative;
}
.home-card__image img {
  width: 100%; height: 440px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.home-card:hover .home-card__image img { transform: scale(1.05); }
.home-card__num {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--washi);
  font-family: var(--font-serif);
}
.home-card__title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.home-card__text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

/* ===========================
   LINK ARROW
=========================== */
.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sumi);
  transition: gap 0.3s ease;
}
.link-arrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.link-arrow:hover { gap: 16px; }
.link-arrow:hover::after { width: 44px; }
.link-arrow--white { color: var(--washi); }
.partner-block__hours-label { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--kareki); margin-bottom: 6px; }
.partner-block__hours-value { font-size: 15px; color: var(--sumi); }

/* ===========================
   PARTNER BLOCKS (Explore)
=========================== */
.partner-block {
  padding: 72px 0;
  overflow: hidden;
}
.partner-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 8vw;
  align-items: center;
}
.partner-block--reverse .partner-block__inner {
  grid-template-columns: 45fr 55fr;
}
.partner-block--reverse .partner-block__image { order: 2; }
.partner-block--reverse .partner-block__text  { order: 1; }

.partner-block__image {
  position: relative; overflow: hidden;
}
.partner-block__image img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.partner-block__image:hover img { transform: scale(1.04); }
.partner-block__image::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(44,44,42,0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.partner-block__image:hover::after { background: rgba(44,44,42,0.12); }

.partner-block__text { padding: 32px 0; }
.partner-block__title {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300; margin-bottom: 8px;
}
.partner-block__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--kareki);
  margin-bottom: 28px;
}
.partner-block__text p { margin-bottom: 28px; max-width: 42ch; }

/* ===========================
   DOUBLE COLUMN CARDS
=========================== */
.double-col {
  padding: 72px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.double-col__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.double-col__card { display: flex; flex-direction: column; }
.double-col__image { overflow: hidden; margin-bottom: 28px; }
.double-col__image img {
  width: 100%; height: 380px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.double-col__card:hover .double-col__image img { transform: scale(1.04); }
.double-col__title {
  font-size: clamp(22px, 2.2vw, 34px);
  margin-bottom: 14px; font-weight: 300;
}
.double-col__text { font-size: 15px; line-height: 1.85; margin-bottom: 24px; flex: 1; }

/* ===========================
   TRIPLE COLUMN CARDS
=========================== */
.triple-col {
  padding: 72px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.triple-col__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.triple-col__card { display: flex; flex-direction: column; }
.triple-col__image { overflow: hidden; margin-bottom: 20px; }
.triple-col__image img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.triple-col__card:hover .triple-col__image img { transform: scale(1.04); }
.triple-col__title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.triple-col__text { font-size: 14px; line-height: 1.8; flex: 1; margin-bottom: 18px; }

/* ===========================
   OUR IMPACT (horizontal scroll)
=========================== */
.impact-section { padding: 100px 0 120px; }
.impact-scroll {
  margin-top: 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
}
.impact-scroll::-webkit-scrollbar { height: 6px; }
.impact-scroll::-webkit-scrollbar-track { background: transparent; }
.impact-scroll::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 4px; }
.impact-scroll__track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 0 var(--pad-x) 0 calc(max(0px, (100vw - var(--container)) / 2) + var(--pad-x) + 42px);
}
.impact-card {
  scroll-snap-align: start;
  width: min(360px, 78vw);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.impact-card__image { overflow: hidden; margin-bottom: 22px; }
.impact-card__image img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.impact-card:hover .impact-card__image img { transform: scale(1.04); }
.impact-card__title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  margin: 8px 0 10px;
  letter-spacing: 0.03em;
}
.impact-card__text { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.impact-card .link-arrow { margin-top: auto; }

/* ===========================
   FULL BLEED
=========================== */
.full-bleed {
  position: relative;
  width: 100%; height: 62vh; min-height: 420px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.full-bleed--facilities { height: auto; min-height: 0; padding: 100px 0; }
.full-bleed__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.full-bleed__overlay {
  position: absolute; inset: 0;
  background: rgba(44,44,42,0.42);
}
.full-bleed__content {
  position: relative; z-index: 2;
  text-align: center; color: var(--washi); padding: 0 var(--pad-x);
}
.full-bleed__title {
  font-size: clamp(32px, 5vw, 68px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 300; margin-bottom: 16px;
}
.full-bleed__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(247,244,239,0.8);
}
.full-bleed__sub a { border-bottom: 1px solid rgba(247,244,239,0.4); transition: border-color 0.3s ease; }
.full-bleed__sub a:hover { border-color: rgba(247,244,239,0.9); }
.intro-text__body a { font-weight: 600; transition: color 0.3s ease; }
.intro-text__body a:hover { color: var(--kareki); }

/* ===========================
   HALF SPLIT
=========================== */
.half-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px; overflow: hidden;
}
.half-split__image { overflow: hidden; }
.half-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.half-split:hover .half-split__image img { transform: scale(1.03); }
.half-split__text {
  background: var(--washi);
  padding: 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.half-split__text h2 { margin-bottom: 16px; }
.half-split__text .italic-serif {
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--kareki); margin-bottom: 32px;
}
.half-split__text p { margin-bottom: 36px; max-width: 44ch; }

/* ===========================
   ROOMS GRID
=========================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.room-card { cursor: default; }
.room-card__image { overflow: hidden; margin-bottom: 24px; position: relative; }
.room-card__image img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.room-card:hover .room-card__image img { transform: scale(1.04); }
.room-card__tag {
  position: absolute; top: 18px; left: 18px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--washi);
  background: rgba(44,44,42,0.48);
  padding: 6px 14px;
  font-family: var(--font-sans);
}
.room-card__title { font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.room-card__specs {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--kareki);
  margin-bottom: 16px;
}
.room-card__desc { font-size: 15px; line-height: 1.85; margin-bottom: 24px; }

/* ===========================
   ABOUT — STORY SECTION
=========================== */
.about-story { padding: 120px 0; }
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-story__img img {
  width: 100%; height: 600px;
  object-fit: cover;
}

/* ===========================
   SERVICES GRID
=========================== */
.about-services { background: #F2EFE9; padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 56px;
}
.service-item { display: flex; flex-direction: column; gap: 14px; }
.service-item__icon {
  height: 112px;
  display: flex; align-items: center;
  margin-bottom: 20px;
  background: transparent; border: none;
}
.service-item__icon img {
  height: 100%; width: auto; max-width: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
  display: block;
}
.service-item__icon--photo {
  height: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-item__icon--photo a { width: 100%; height: 100%; }
.service-item__icon--photo img {
  width: 100%; height: 100%; max-width: none;
  object-fit: cover;
  mix-blend-mode: normal;
}
.service-item__icon a {
  display: flex; align-items: center; height: 100%;
  position: relative; z-index: 2;
  cursor: default;
  isolation: isolate;
}
.service-item__title a {
  color: inherit; text-decoration: none;
  cursor: default;
  display: inline-block;
  position: relative; z-index: 2;
}
.service-item__title a:hover { color: var(--kareki); }
.service-item__title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.05em;
}
.service-item__text { font-size: 14px; line-height: 1.85; }

/* ===========================
   RESTAURANT
=========================== */
.restaurant-feature {
  padding: 120px 0;
}
.restaurant-feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.restaurant-feature__img img {
  width: 100%; height: 560px;
  object-fit: cover;
}

.menu-list { max-width: 680px; margin: 0 auto; }
.menu-category { margin-bottom: 56px; }
.menu-category__title {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--kareki);
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 1px solid var(--mist);
}
.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(216,212,204,0.5);
}
.menu-item__name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  letter-spacing: 0.03em; margin-bottom: 4px;
}
.menu-item__desc { font-size: 13px; color: #6A6865; line-height: 1.6; }

/* ===========================
   MAP SECTION
=========================== */
.map-card {
  position: absolute;
  top: 50%; left: var(--pad-x);
  transform: translateY(-50%);
  background: var(--washi);
  padding: 40px 48px;
  min-width: 280px;
  box-shadow: 0 8px 48px rgba(44,44,42,0.12);
}
.map-card__title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.08em; margin-bottom: 24px;
}
.map-card__list { display: flex; flex-direction: column; gap: 12px; }
.map-card__list li {
  font-size: 13px; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 10px;
}
.map-card__list li::before {
  content: ''; display: block;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--kareki); flex-shrink: 0;
}

/* ===========================
   MAP SPLIT (Explore page)
=========================== */
.map-split__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.map-split__photo { overflow: hidden; position: relative; }
.map-split__photo-cta {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}
.map-split__photo-cta .btn {
  background: var(--sumi);
  color: var(--washi);
  border: 1px solid var(--sumi);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.map-split__photo-cta .btn::before { display: none; }
.map-split__photo-cta .btn:hover {
  background: var(--washi);
  color: var(--sumi);
  border-color: var(--washi);
}
.map-split__photo img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.map-split__map { position: relative; }
.map-split__frame { height: 480px; overflow: hidden; }
.map-split__frame iframe {
  width: 100%; height: 540px;
  margin-top: -72px;
  border: none; display: block;
  filter: grayscale(0.25) sepia(0.08);
}
.map-split__map .map-card { left: -60px; }
@media (max-width: 768px) {
  .map-split__grid { grid-template-columns: 1fr; }
  .map-split__photo img { min-height: 240px; }
}

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
  padding: var(--gap-section) var(--pad-x);
  max-width: var(--container); margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-item__label {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--kareki); margin-bottom: 8px;
}
.contact-item__value {
  font-family: var(--font-serif);
  font-size: 18px; line-height: 1.65; font-weight: 300;
}

/* Form */
.form-group { margin-bottom: 36px; }
.form-group label {
  display: block; font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--kareki); margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--mist);
  padding: 12px 0;
  font-size: 16px; font-family: var(--font-sans);
  color: var(--sumi); outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-bottom-color: var(--sumi); }
.form-group textarea { resize: none; height: 110px; }

/* ===========================
   BUTTON
=========================== */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-family: var(--font-sans);
  padding: 15px 36px;
  cursor: default; border: none; background: none;
  position: relative; overflow: hidden;
  transition: color 0.4s ease;
}
.btn-dark {
  border: 1px solid var(--sumi); color: var(--sumi);
}
.btn-dark::before {
  content: ''; position: absolute; inset: 0;
  background: var(--sumi);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn-dark:hover::before { transform: translateX(0); }
.btn-dark:hover { color: var(--washi); }

.btn-light {
  border: 1px solid var(--washi); color: var(--washi);
}
.btn-light::before {
  content: ''; position: absolute; inset: 0;
  background: var(--washi);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn-light:hover::before { transform: translateX(0); }
.btn-light:hover { color: var(--sumi); }

/* ===========================
   DIVIDERS & UTILITIES
=========================== */
.hr { border: none; border-top: 1px solid var(--mist); margin: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.section-pad { padding: var(--gap-section) 0; }
.block-pad { padding: var(--gap-block) 0; }

/* Brand statement */
.brand-statement {
  padding: var(--gap-section) var(--pad-x);
  max-width: var(--container); margin: 0 auto;
  text-align: center;
}
.brand-statement__line {
  width: 40px; height: 1px;
  background: var(--kareki); margin: 0 auto 40px;
}
.brand-statement__text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300; letter-spacing: 0.04em;
  line-height: 1.45; max-width: 22ch;
  margin: 0 auto; color: var(--sumi);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--sumi); color: var(--washi);
  padding: 80px var(--pad-x) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,244,239,0.1);
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 26px; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic; font-size: 15px;
  color: rgba(247,244,239,0.55);
  line-height: 1.75; max-width: 28ch; margin-bottom: 28px;
}
.footer__social { display: flex; gap: 20px; }
.footer__social a {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.45);
  transition: color 0.3s ease;
}
.footer__social a:hover { color: var(--washi); }
.footer__nav-title {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--kareki);
  margin-bottom: 22px;
}
.footer__nav-links { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-links a {
  font-size: 14px; color: rgba(247,244,239,0.65);
  letter-spacing: 0.04em; transition: color 0.3s ease;
}
.footer__nav-links a:hover { color: var(--washi); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer__copy {
  font-size: 12px; color: rgba(247,244,239,0.35);
  letter-spacing: 0.05em;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0; transform: translateX(64px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0; transform: translateX(-64px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  :root { --pad-x: 6vw; --gap-section: 56px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .partner-block__inner { gap: 6vw; }
}
@media (max-width: 768px) {
  :root { --pad-x: 5vw; --gap-section: 40px; }
  .nav__links, .nav__lang { display: none; }
  .nav__hamburger { display: flex; }
  .nav__book {
    font-size: 10px;
    padding: 9px 16px;
    white-space: nowrap;
  }

  .hero__title { font-size: 40px; }
  .home-cards__grid,
  .double-col__grid,
  .triple-col__grid,
  .rooms-grid,
  .about-story .container,
  .restaurant-feature .container,
  .contact-grid,
  .services-grid { grid-template-columns: 1fr; gap: 48px; }

  .partner-block__inner,
  .partner-block--reverse .partner-block__inner { grid-template-columns: 1fr; gap: 32px; }
  .partner-block--reverse .partner-block__image { order: 0; }
  .partner-block--reverse .partner-block__text  { order: 0; }

  .half-split { grid-template-columns: 1fr; }
  .half-split__image img { height: 380px; }
  .half-split__text { padding: 60px var(--pad-x); }

  .intro-text { justify-content: flex-start; }
  .intro-text__inner { max-width: 100%; }

  .full-bleed__bg { background-attachment: scroll; }

  .map-card { position: static; transform: none; margin: 24px var(--pad-x); }
  .map-split__frame { height: 360px; }
  .map-split__frame iframe { height: 420px; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-story__img img,
  .restaurant-feature__img img { height: 340px; }
}
@media (max-width: 480px) {
  .home-cards__grid { gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 34px; }
  .brand-statement__text { font-size: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .photo-grid-2 { grid-template-columns: 1fr; }
  .rooms-duo { grid-template-columns: 1fr; }
}

/* ===========================
   GUEST REVIEWS
=========================== */
.reviews-section { background: #F2EFE9; padding: var(--gap-section) 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.review-card {
  background: var(--washi);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--mist);
}
.review-card__stars {
  font-size: 14px; letter-spacing: 0.08em; color: var(--kareki);
}
.review-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7; font-weight: 300;
  color: var(--sumi); flex: 1;
}
.review-card__name {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sumi);
}
.review-card__meta {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--kareki); margin-top: 4px;
}
.review-rating-hero {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-grid--extra { margin-top: 32px; }
.reviews-load-more { text-align: center; margin-top: 48px; }
.review-rating-hero__num {
  font-family: var(--font-serif);
  font-size: 80px; font-weight: 300; line-height: 1;
  color: var(--sumi);
}
.review-rating-hero__label {
  font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--kareki);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===========================
   FAQ
=========================== */
.faq-section { padding: var(--gap-section) 0; }
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-item__q {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 300; letter-spacing: 0.03em;
  padding: 28px 0;
  cursor: default;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  color: var(--sumi); line-height: 1.4;
}
.faq-item__q::after {
  content: '+'; font-size: 22px;
  font-family: var(--font-sans); font-weight: 300;
  flex-shrink: 0; color: var(--kareki);
  transition: transform 0.35s ease;
  line-height: 1;
}
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  font-size: 15px; line-height: 1.9;
  color: var(--body-text);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-item__a { max-height: 300px; padding-bottom: 28px; }

/* ===========================
   RESTAURANT PHOTO GRID
=========================== */
.photo-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 72px;
}
.photo-grid-2 img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.photo-grid-2 figure:hover img { transform: scale(1.03); }
.photo-grid-2 figure { overflow: hidden; }
.photo-slot-empty {
  height: 420px;
  background: #EDE9E3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.photo-slot-empty span {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--kareki);
}
@media (max-width: 768px) { .photo-grid-2 { grid-template-columns: 1fr; } }

/* ===========================
   ROOMS — FEATURED LAYOUT
=========================== */
.rooms-featured { display: flex; flex-direction: column; gap: 56px; }
.room-card--featured .room-card__image img { height: 560px; }
.rooms-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
@media (max-width: 768px) {
  .rooms-duo { grid-template-columns: 1fr; gap: 48px; }
  .room-card--featured .room-card__image img { height: 320px; }
}

/* ===========================
   ROOM GALLERY BUTTONS
=========================== */
.room-card__actions {
  display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap;
}
.room-card__actions .btn {
  flex: 1; min-width: 140px; text-align: center; font-size: 11px; padding: 12px 20px;
}
.btn-filled {
  border: 1px solid var(--sumi); color: var(--washi) !important; background: var(--sumi);
}
.btn-filled:hover { background: #444; border-color: #444; text-decoration: none; }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(20,20,18,0.94);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; gap: 20px;
}
.lightbox__img {
  width: 80vw; height: 85vh;
  object-fit: contain; display: block;
  border-radius: 2px;
}
.lightbox__btn {
  background: none; border: none; color: rgba(247,244,239,0.7);
  font-size: 32px; cursor: default; padding: 12px;
  transition: color 0.2s ease; line-height: 1; flex-shrink: 0;
  font-family: var(--font-sans); font-weight: 300;
}
.lightbox__btn:hover { color: var(--washi); }
.lightbox__close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: rgba(247,244,239,0.7);
  font-size: 28px; cursor: default; padding: 8px;
  transition: color 0.2s ease; font-family: var(--font-sans); font-weight: 300;
}
.lightbox__close:hover { color: var(--washi); }
.lightbox__counter {
  position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em; color: rgba(247,244,239,0.5);
  font-family: var(--font-sans);
}

/* ===========================
   TRANSPORT GRID (About page)
=========================== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 100%;
  padding-left: 42px;
}
.transport-item {
  border: 1px solid var(--mist);
  padding: 40px 36px;
  border-radius: 2px;
}
.transport-item__icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--kareki);
}
.transport-item__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--sumi);
}
.transport-item__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 20px;
}
.transport-item__cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kareki);
  display: inline-block;
}
.transport-item__cta:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
  .transport-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===========================
   HOME ABOUT SECTION
=========================== */
.home-about__grid {
  display: block;
  max-width: 760px;
  margin-top: 48px;
}
.home-about__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}
.home-about__getting-here {
  border-top: 1px solid var(--mist);
  padding-top: 32px;
}
.home-about__routes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-about__route {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-about__route-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kareki);
  font-family: var(--font-sans);
}
.home-about__route-info {
  font-size: 15px;
  color: var(--body-text);
  font-family: var(--font-sans);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .home-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-about__image img { height: 320px; }
}

/* ===========================
   FACILITIES ICONS (full-bleed strip)
=========================== */
.facilities-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 48px 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(247,244,239,0.2);
}
.facilities-icon__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(247,244,239,0.9);
}
.facilities-icon__item svg {
  width: 48px; height: 48px;
  color: rgba(247,244,239,0.85);
}
.facilities-icon__item span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: rgba(247,244,239,0.75);
  text-align: center;
}
@media (max-width: 640px) {
  .facilities-icons { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .facilities-icon__item svg { width: 36px; height: 36px; }
}

/* ===========================
   RESTAURANT VISIT INFO
=========================== */
.restaurant-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.restaurant-info__item {
  border-left: 1px solid var(--mist);
  padding-left: 32px;
}
.restaurant-info__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.restaurant-info__value {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--sumi);
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 768px) {
  .restaurant-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .restaurant-info__item {
    border-left: none;
    border-top: 1px solid var(--mist);
    padding-left: 0;
    padding-top: 28px;
  }
  .restaurant-info__item:first-child { border-top: none; padding-top: 0; }
}

/* ===========================
   FAMILY BRAND GRID
=========================== */
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--mist);
}
.family-category {
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--mist);
}
.family-category:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}
.family-category:nth-child(2) {
  padding-left: 48px;
}
.family-category__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kareki);
  margin-bottom: 24px;
  font-family: var(--font-sans);
}
.family-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.family-list li {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--sumi);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.family-list li a {
  color: var(--sumi);
  text-decoration: none;
}
.family-list li a:hover {
  color: var(--kareki);
  text-decoration: none;
}
@media (max-width: 768px) {
  .family-grid {
    grid-template-columns: 1fr;
  }
  .family-category,
  .family-category:last-child,
  .family-category:nth-child(2) {
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid var(--mist);
  }
  .family-category:last-child { border-bottom: none; }
}

/* ===========================
   SERVICES GRID 4-COL + CATEGORIES
=========================== */
.services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 64px;
}
.services-category-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kareki);
  font-family: var(--font-sans);
  padding: 48px 0 28px;
  border-top: 1px solid var(--mist);
  margin-top: 16px;
}
.service-item__icon--text {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--kareki);
  border: 1px solid var(--mist);
  border-radius: 2px;
  padding: 8px 16px;
  width: fit-content;
  height: auto !important;
  min-height: 40px;
}
.family-footer {
  border-top: 1px solid var(--mist);
  margin-top: 16px;
  padding-top: 64px;
  padding-bottom: 16px;
}
.family-footer__inner {
  max-width: 640px;
}
.family-footer__inner h3 {
  margin: 12px 0 24px;
}
@media (max-width: 900px) {
  .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid--4 { grid-template-columns: 1fr; }
}

/* ===========================
   MOBILE CARD CAROUSELS
   (peek-style horizontal scroll)
=========================== */
@media (max-width: 768px) {
  .transport-grid,
  .services-grid--4,
  .rooms-duo,
  .double-col__grid,
  .triple-col__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .transport-grid::-webkit-scrollbar,
  .services-grid--4::-webkit-scrollbar,
  .rooms-duo::-webkit-scrollbar,
  .double-col__grid::-webkit-scrollbar,
  .triple-col__grid::-webkit-scrollbar { display: none; height: 0; }

  .transport-grid > .transport-item,
  .services-grid--4 > .service-item,
  .rooms-duo > .room-card,
  .double-col__grid > .double-col__card,
  .triple-col__grid > .triple-col__card {
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: start;
  }

  .rooms-duo > .room-card .room-card__actions {
    flex-direction: column;
  }
  .rooms-duo > .room-card .room-card__actions .btn {
    width: 100%;
  }

  /* Lightbox: stack nav row below the photo, full-width centered image */
  .lightbox__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "img img img" "prev counter next";
    max-width: 94vw;
    max-height: none;
    gap: 16px;
    align-items: center;
    justify-items: center;
  }
  .lightbox__img {
    grid-area: img;
    width: 90vw;
    max-width: 90vw;
    height: 60vh;
  }
  .lightbox__btn:first-of-type { grid-area: prev; justify-self: end; }
  .lightbox__btn:last-of-type { grid-area: next; justify-self: start; }
  .lightbox__close { top: -40px; }
  .lightbox__counter {
    grid-area: counter;
    position: static;
    transform: none;
    white-space: nowrap;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  height: 56px;
  border-radius: 999px;
  background: var(--sumi);
  color: var(--washi);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  overflow: hidden;
  transition: background 0.3s ease;
}
.whatsapp-float:hover { background: var(--kareki); }
.whatsapp-float.whatsapp-float--on-dark { background: var(--washi); color: var(--sumi); }
.whatsapp-float.whatsapp-float--on-dark:hover { background: var(--kareki); color: var(--washi); }
.whatsapp-float__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float__icon svg { width: 24px; height: 24px; }
.whatsapp-float__label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: max-width 0.35s var(--ease-out), opacity 0.25s ease;
}
.whatsapp-float:hover .whatsapp-float__label {
  max-width: 220px;
  opacity: 1;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .whatsapp-float { right: 16px; bottom: 16px; height: 48px; }
  .whatsapp-float__icon { width: 48px; height: 48px; }
}
