/* ================================================
   BAN-KANUM RESORT & GARDEN
   Thai / English Bilingual — Natural Forest Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Thai:wght@300;400;600;700&family=Sarabun:ital,wght@0,300;0,400;0,600;1,300&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── Reset ──────────────────────────── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

/* ── Design Tokens ──────────────────── */
:root {
  --forest:     #0d2e1a;
  --forest-mid: #1a4a28;
  --forest-lt:  #2d6e40;
  --leaf:       #4a9e5c;
  --leaf-lt:    #7dc48a;
  --gold:       #c8a84b;
  --gold-lt:    #e4cc85;
  --cream:      #f5f0e8;
  --cream-dk:   #ede6d5;
  --white:      #ffffff;
  --text-dark:  #1a2e1e;
  --text-gray:  #5a6b5e;

  --font-en:   'Cormorant Garamond', Georgia, serif;
  --font-body: 'Sarabun', 'Noto Serif Thai', sans-serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --t:      all 0.35s var(--ease);
  --shadow: 0 8px 40px rgba(13,46,26,0.14);
  --shadow-lg: 0 24px 64px rgba(13,46,26,0.22);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color:inherit; text-decoration:none; transition:var(--t); }
img { display:block; max-width:100%; }
h1,h2,h3,h4 { font-family:var(--font-en); line-height:1.15; }
p { margin:.7em 0; }

/* ── Utility ────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 28px; }

/* Bilingual label */
.label-th {
  display:block;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--leaf);
  margin-bottom:.35rem;
}

.label-en {
  display:block;
  font-family:var(--font-en);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.75rem;
}

/* Section headings with dual language */
.section-head { margin-bottom:3rem; }
.section-head.center { text-align:center; }

.title-th {
  font-family:var(--font-body);
  font-weight:600;
  font-size:clamp(1.5rem,3vw,2.25rem);
  color:var(--forest);
  display:block;
  line-height:1.3;
}

.title-en {
  font-family:var(--font-en);
  font-weight:400;
  font-style:italic;
  font-size:clamp(1rem,2vw,1.3rem);
  color:var(--text-gray);
  display:block;
  margin-top:.25rem;
}

.title-th.light { color:var(--cream); }
.title-en.light { color:rgba(245,240,232,0.6); }

.divider {
  width:52px; height:2px;
  background:linear-gradient(90deg,var(--forest-lt),var(--leaf-lt));
  margin:1.1rem 0 1.75rem;
}
.divider.center { margin-left:auto; margin-right:auto; }
.divider.gold { background:linear-gradient(90deg,var(--gold),var(--gold-lt)); }

/* ── Buttons ────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:13px 30px;
  font-family:var(--font-body);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  transition:var(--t);
}

.btn-forest {
  background:var(--forest-mid);
  color:var(--white);
}
.btn-forest:hover { background:var(--forest); transform:translateY(-2px); box-shadow:0 8px 24px rgba(13,46,26,.4); }

.btn-gold {
  background:var(--gold);
  color:var(--forest);
}
.btn-gold:hover { background:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(200,168,75,.4); }

.btn-outline-white {
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:var(--white); }

.btn-outline-forest {
  background:transparent;
  color:var(--forest-mid);
  border:1px solid var(--forest-mid);
}
.btn-outline-forest:hover { background:var(--forest-mid); color:var(--white); }


/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  transition:var(--t);
}

#navbar.scrolled {
  background:rgba(13,46,26,0.96);
  backdrop-filter:blur(14px);
  box-shadow:0 2px 28px rgba(0,0,0,.22);
}

#navbar .nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  transition:padding .35s ease;
}

#navbar.scrolled .nav-inner { padding:12px 0; }

/* Logo lockup */
.nav-logo {
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-logo img {
  width:44px; height:44px;
  object-fit:contain;
  filter:brightness(1.15);
  transition:var(--t);
}

#navbar.scrolled .nav-logo img { width:36px; height:36px; }

.nav-logo-text {
  display:flex;
  flex-direction:column;
  line-height:1;
}

.nav-logo-text .name-en {
  font-family:var(--font-en);
  font-weight:700;
  font-size:1.15rem;
  color:var(--white);
  letter-spacing:.08em;
}

.nav-logo-text .name-th {
  font-family:var(--font-body);
  font-size:.65rem;
  font-weight:400;
  color:var(--leaf-lt);
  letter-spacing:.2em;
  margin-top:2px;
}

#navbar ul {
  list-style:none;
  display:flex;
  align-items:center;
  gap:2.25rem;
}

#navbar ul li a {
  color:rgba(255,255,255,.82);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding-bottom:3px;
  position:relative;
}

#navbar ul li a::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:0; height:1px;
  background:var(--leaf-lt);
  transition:width .3s ease;
}

#navbar ul li a:hover::after,
#navbar ul li a.current::after { width:100%; }
#navbar ul li a:hover,
#navbar ul li a.current { color:var(--leaf-lt); }

.nav-fb {
  display:flex;
  align-items:center;
  gap:.4rem;
  color:rgba(255,255,255,.7) !important;
  font-size:.7rem !important;
  padding:6px 12px !important;
  border:1px solid rgba(255,255,255,.2);
  border-radius:2px;
  transition:var(--t) !important;
}

.nav-fb:hover {
  background:rgba(255,255,255,.1) !important;
  color:var(--white) !important;
  border-color:rgba(255,255,255,.5) !important;
}

.nav-fb::after { display:none !important; }

.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--white); transition:var(--t); }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position:relative;
  height:100vh;
  min-height:620px;
  display:flex;
  align-items:center;
  padding-bottom:0;
  background:url("../img/sign.jpg") center center/cover no-repeat;
}

/* Layered gradient overlay with forest mood */
#hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(13,46,26,.45) 0%, rgba(13,46,26,.05) 55%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.28) 0%, transparent 40%);
}

/* Leaf texture top edge */
#hero::after {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:140px;
  background:linear-gradient(to bottom, rgba(0,0,0,.1), transparent);
}

.hero-inner {
  position:relative;
  z-index:1;
  max-width:680px;
}

.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:rgba(13,46,26,.6);
  border:1px solid rgba(125,196,138,.3);
  backdrop-filter:blur(8px);
  padding:7px 16px;
  color:var(--leaf-lt);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.28em;
  text-transform:uppercase;
  margin-bottom:1.5rem;
  animation:fadeUp .8s ease both;
}

.hero-badge i { font-size:.6rem; }

.hero-inner h1 {
  font-family:var(--font-en);
  font-size:clamp(2.5rem,6vw,4.75rem);
  font-weight:600;
  color:var(--white);
  line-height:1.08;
  margin-bottom:.5rem;
  animation:fadeUp .8s .12s ease both;
}

.hero-inner h1 em { font-style:italic; color:var(--leaf-lt); }

.hero-th {
  font-family:var(--font-body);
  font-weight:400;
  font-size:clamp(1rem,2.2vw,1.4rem);
  color:rgba(245,240,232,.82);
  display:block;
  margin-bottom:1.25rem;
  animation:fadeUp .8s .24s ease both;
}

.hero-inner p {
  font-size:1rem;
  color:rgba(245,240,232,.75);
  line-height:1.8;
  margin-bottom:2rem;
  animation:fadeUp .8s .36s ease both;
}

.hero-actions {
  display:flex; gap:1rem; flex-wrap:wrap;
  animation:fadeUp .8s .48s ease both;
}

/* scroll indicator */
.scroll-dot {
  position:absolute;
  bottom:24px; left:50%;
  transform:translateX(-50%);
  z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:rgba(255,255,255,.4);
  font-size:.58rem; letter-spacing:.22em; text-transform:uppercase;
}

.scroll-dot::after {
  content:'';
  width:1px; height:36px;
  background:linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation:pulse 2s ease-in-out infinite;
}


/* ══════════════════════════════════════
   STRIP / HIGHLIGHTS BAR
══════════════════════════════════════ */
#strip {
  background:var(--forest);
  padding:2.5rem 0;
}

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

.strip-item {
  display:flex; align-items:center; gap:.9rem;
  padding:0 2rem;
  border-right:1px solid rgba(255,255,255,.07);
  color:var(--cream);
}

.strip-item:last-child { border-right:none; }

.strip-icon {
  width:40px; height:40px;
  background:rgba(74,158,92,.18);
  border:1px solid rgba(74,158,92,.3);
  display:flex; align-items:center; justify-content:center;
  color:var(--leaf-lt);
  font-size:1rem;
  flex-shrink:0;
}

.strip-item-text h4 {
  font-family:var(--font-body);
  font-size:.72rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-lt);
  margin-bottom:2px;
}

.strip-item-text p {
  font-size:.8rem;
  color:rgba(245,240,232,.55);
  margin:0; line-height:1.4;
}


/* ══════════════════════════════════════
   INTRO / STORY SECTION
══════════════════════════════════════ */
#intro {
  display:grid;
  grid-template-columns:1fr 1fr;
}

.intro-visual {
  position:relative;
  min-height:560px;
  overflow:hidden;
}

.intro-visual img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.intro-visual:hover img { transform:scale(1.04); }

.intro-visual-badge {
  position:absolute;
  bottom:-1px; right:0;
  background:var(--forest);
  color:var(--cream);
  padding:1.75rem 2rem;
  text-align:center;
  min-width:140px;
}

.intro-visual-badge .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--leaf-lt);
  line-height: 1;
  letter-spacing: -.01em;
}

.intro-visual-badge .sub {
  font-family:var(--font-body);
  font-size:.65rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(245,240,232,.6);
  margin-top:.25rem;
  display:block;
}

.intro-content {
  background:var(--forest-mid);
  padding:5rem 6%;
  display:flex; flex-direction:column; justify-content:center;
}

.intro-content p {
  color:rgba(245,240,232,.78);
  font-size:.975rem;
  line-height:1.9;
}

/* Facebook CTA */
.fb-link {
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  margin-top:1.75rem;
  padding:10px 20px;
  border:1px solid rgba(125,196,138,.35);
  color:var(--leaf-lt);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  transition:var(--t);
  width:fit-content;
}

.fb-link:hover {
  background:rgba(74,158,92,.15);
  border-color:var(--leaf-lt);
  color:var(--white);
}


/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
#features {
  background:var(--cream);
  padding:5.5rem 0;
}

.features-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5px;
  margin-top:3rem;
}

.feat-card {
  background:var(--white);
  padding:3rem 2.25rem;
  text-align:center;
  transition:var(--t);
  position:relative;
  overflow:hidden;
}

.feat-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg, var(--forest-lt), var(--leaf));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s ease;
}

.feat-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}

.feat-card:hover::before { transform:scaleX(1); }

.feat-icon {
  width:62px; height:62px;
  margin:0 auto 1.5rem;
  background:linear-gradient(135deg, var(--forest-mid), var(--leaf));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.4rem;
}

.feat-card h3 {
  font-family:var(--font-body);
  font-weight:700;
  font-size:1rem;
  color:var(--forest);
  margin-bottom:.3rem;
}

.feat-card .feat-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:.9rem;
  color:var(--leaf);
  display:block;
  margin-bottom:.75rem;
}

.feat-card p {
  font-size:.875rem;
  color:var(--text-gray);
  line-height:1.75;
  margin:0;
}


/* ══════════════════════════════════════
   ROOMS SECTION
══════════════════════════════════════ */
#rooms {
  background:var(--forest);
  padding:5.5rem 0;
}

.rooms-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.25rem;
  margin-top:3rem;
}

.room-card {
  position:relative;
  overflow:hidden;
  aspect-ratio:16/10;
}

.room-card img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.room-card:hover img { transform:scale(1.08); }

.room-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(13,46,26,.55) 0%, rgba(13,46,26,.05) 55%);
  display:flex; align-items:flex-end;
  padding:1.75rem;
  transition:var(--t);
}

.room-text h3 {
  font-family:var(--font-body);
  font-weight:700;
  font-size:1.1rem;
  color:var(--white);
  margin-bottom:1px;
}

.room-text .room-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:.875rem;
  color:var(--leaf-lt);
}

.room-tag {
  display:inline-block;
  background:rgba(74,158,92,.25);
  border:1px solid rgba(125,196,138,.4);
  color:var(--leaf-lt);
  font-size:.62rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:4px 10px;
  margin-bottom:.5rem;
}


/* ══════════════════════════════════════
   TESTIMONIALS STRIP
══════════════════════════════════════ */
#review-strip {
  background:var(--cream-dk);
  padding:5.5rem 0;
}

.reviews-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
  margin-top:3rem;
}

.review-card {
  background:var(--white);
  padding:2.5rem;
  position:relative;
  box-shadow:0 4px 24px rgba(13,46,26,.07);
  transition:var(--t);
}

.review-card:hover { box-shadow:var(--shadow); transform:translateY(-4px); }

.review-quote {
  font-family:var(--font-en);
  font-size:3.5rem;
  color:var(--leaf);
  line-height:1;
  position:absolute;
  top:.5rem; left:2rem;
  opacity:.2;
}

.review-stars { color:var(--gold); font-size:.8rem; margin-bottom:1rem; }

.review-card p {
  font-size:.93rem;
  color:var(--text-gray);
  line-height:1.8;
  margin-bottom:1.5rem;
  padding-top:1rem;
}

.reviewer {
  display:flex; align-items:center; gap:.9rem;
}

.reviewer img {
  width:48px; height:48px;
  border-radius:50%;
  object-fit:cover;
}

.reviewer-info strong {
  display:block;
  font-family:var(--font-en);
  font-size:1rem;
  color:var(--forest);
}

.reviewer-info span { font-size:.78rem; color:var(--leaf); }


/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
#cta {
  background:var(--forest-mid);
  padding:5rem 0;
  text-align:center;
}

#cta p {
  color:rgba(245,240,232,.72);
  font-size:1rem;
  margin-bottom:2rem;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}

.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#main-footer {
  background:#081910;
  padding:4.5rem 0 2rem;
}

.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:2.5rem;
  margin-bottom:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.footer-brand .foot-logo {
  display:flex; align-items:center; gap:10px;
  margin-bottom:1.1rem;
}

.footer-brand .foot-logo img {
  width:40px; height:40px;
  object-fit:contain;
  filter:brightness(1.3);
}

.footer-brand .foot-logo-text .name-en {
  font-family:var(--font-en);
  font-size:1.1rem; font-weight:700;
  color:var(--white);
  letter-spacing:.06em;
}

.footer-brand .foot-logo-text .name-th {
  font-family:var(--font-body);
  font-size:.62rem; font-weight:400;
  color:var(--leaf-lt);
  letter-spacing:.18em;
}

.footer-brand p {
  font-size:.82rem;
  color:rgba(245,240,232,.45);
  line-height:1.85;
}

.footer-col h4 {
  font-family:var(--font-body);
  font-size:.7rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--leaf-lt);
  margin-bottom:1.1rem;
}

.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.55rem; }
.footer-col ul li a {
  color:rgba(245,240,232,.45);
  font-size:.85rem;
  transition:color .2s;
}
.footer-col ul li a:hover { color:var(--leaf-lt); }

.foot-contact li {
  display:flex; align-items:flex-start; gap:.7rem;
  margin-bottom:.75rem;
}

.foot-contact li i { color:var(--leaf); margin-top:3px; flex-shrink:0; font-size:.85rem; }
.foot-contact li span { color:rgba(245,240,232,.45); font-size:.82rem; line-height:1.55; }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  font-size:.75rem;
  color:rgba(245,240,232,.25);
}

.footer-bottom a { color:rgba(125,196,138,.5); }
.footer-bottom a:hover { color:var(--leaf-lt); }


/* ══════════════════════════════════════
   PAGE HERO (INNER PAGES)
══════════════════════════════════════ */
.page-hero {
  height:380px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}

.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transition:transform 8s ease;
}

.page-hero:hover .page-hero-bg { transform:scale(1.04); }

.page-hero::after {
  content:'';
  position:absolute; inset:0;
  background:rgba(13,46,26,.35);
}

.page-hero-content {
  position:relative; z-index:1;
  text-align:center;
  color:var(--white);
  padding-top:60px;
}

.page-hero-content h1 {
  font-family:var(--font-body);
  font-size:clamp(1.75rem,4vw,2.75rem);
  font-weight:700;
  margin-bottom:.3rem;
}

.page-hero-content .page-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:1rem;
  color:rgba(245,240,232,.65);
  display:block;
  margin-bottom:.3rem;
}

.page-hero-content .page-sub {
  font-size:.72rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--leaf-lt);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
#about-body { padding:5.5rem 0; }

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
}

.about-img-col { position:relative; }
.about-img-col img { width:100%; aspect-ratio:3/4; object-fit:cover; }

.about-img-col .img-accent {
  position:absolute;
  bottom:-2rem; right:-2rem;
  width:45%;
  aspect-ratio:1;
  overflow:hidden;
  border:5px solid var(--cream);
}

.about-img-col .img-accent img { width:100%; height:100%; object-fit:cover; }

.about-years {
  position:absolute;
  top:2rem; left:-2rem;
  background:var(--forest);
  color:var(--white);
  width:90px; height:90px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}

.about-years span:first-child {
  font-family:var(--font-en);
  font-size:2rem; font-weight:700;
  color:var(--leaf-lt); line-height:1;
}

.about-years span:last-child {
  font-size:.55rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(245,240,232,.5);
}

.about-text-col h2 {
  font-family:var(--font-body);
  font-weight:700;
  font-size:clamp(1.5rem,2.5vw,2rem);
  color:var(--forest);
  margin-bottom:.25rem;
}

.about-text-col .h2-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:1.1rem;
  color:var(--leaf);
  display:block;
  margin-bottom:.75rem;
}

.about-text-col p {
  color:var(--text-gray);
  font-size:.975rem;
  line-height:1.9;
}

/* Values */
#values { background:var(--forest); padding:5.5rem 0; text-align:center; }

.values-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:3rem;
}

.val-card {
  border:1px solid rgba(255,255,255,.1);
  padding:2.5rem 1.75rem;
  transition:var(--t);
}

.val-card:hover {
  background:rgba(74,158,92,.08);
  border-color:rgba(125,196,138,.3);
}

.val-card i { font-size:1.75rem; color:var(--leaf-lt); margin-bottom:1rem; }
.val-card h3 { font-family:var(--font-body); font-weight:700; font-size:1rem; color:var(--white); margin-bottom:.2rem; }
.val-card .val-en { font-family:var(--font-en); font-style:italic; font-size:.85rem; color:var(--leaf-lt); display:block; margin-bottom:.6rem; }
.val-card p { font-size:.85rem; color:rgba(245,240,232,.55); line-height:1.75; margin:0; }


/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
#contact-body { padding:5.5rem 0; }

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:4rem;
  align-items:start;
}

.contact-left h2 {
  font-family:var(--font-body);
  font-weight:700;
  font-size:1.75rem;
  color:var(--forest);
  margin-bottom:.25rem;
}

.contact-left .h2-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:1rem;
  color:var(--leaf);
  display:block;
  margin-bottom:.75rem;
}

.contact-left > p {
  color:var(--text-gray);
  font-size:.93rem;
  margin-bottom:2.5rem;
  line-height:1.85;
}

.cinfo {
  display:flex; align-items:flex-start; gap:1rem;
  margin-bottom:1.75rem;
}

.cinfo-icon {
  width:44px; height:44px;
  background:var(--forest-mid);
  display:flex; align-items:center; justify-content:center;
  color:var(--leaf-lt); font-size:.95rem;
  flex-shrink:0;
}

.cinfo-text h4 {
  font-family:var(--font-body);
  font-size:.7rem; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--leaf);
  margin-bottom:3px;
}

.cinfo-text p { font-size:.93rem; color:var(--forest); margin:0; }

/* Social links */
.social-row {
  display:flex; gap:.75rem;
  margin-top:2rem;
}

.social-btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:9px 18px;
  font-size:.75rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  border:1px solid var(--forest-mid);
  color:var(--forest-mid);
  transition:var(--t);
}

.social-btn:hover { background:var(--forest-mid); color:var(--white); }
.social-btn.fb { border-color:#1877f2; color:#1877f2; }
.social-btn.fb:hover { background:#1877f2; color:var(--white); }

/* Form */
.contact-right {
  background:var(--white);
  padding:3rem;
  box-shadow:var(--shadow);
}

.contact-right h3 {
  font-family:var(--font-body);
  font-weight:700;
  font-size:1.2rem;
  color:var(--forest);
  margin-bottom:.2rem;
}

.contact-right .h3-en {
  font-family:var(--font-en);
  font-style:italic;
  font-size:.9rem;
  color:var(--leaf);
  display:block;
  margin-bottom:1.5rem;
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

.form-group { margin-bottom:1rem; }

.form-group label {
  display:flex; align-items:baseline; gap:.4rem;
  font-size:.68rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--forest);
  margin-bottom:6px;
}

.form-group label span {
  font-family:var(--font-en);
  font-style:italic;
  font-weight:400;
  font-size:.75rem;
  color:var(--text-gray);
  letter-spacing:0;
  text-transform:none;
}

.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:12px 14px;
  border:1px solid #d9ddd6;
  background:var(--cream);
  font-family:var(--font-body);
  font-size:.9rem;
  color:var(--text-dark);
  outline:none;
  transition:border-color .25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color:var(--forest-lt);
  background:var(--white);
}

.form-group textarea { height:120px; resize:vertical; }


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes pulse {
  0%,100% { opacity:.4; }
  50%     { opacity:.9; }
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:980px) {
  .strip-grid { grid-template-columns:1fr 1fr; gap:1.5rem; }
  .strip-item { border-right:none; padding:.75rem 0; border-bottom:1px solid rgba(255,255,255,.07); }

  .features-grid,
  .values-grid,
  .rooms-grid,
  .reviews-grid,
  .footer-grid,
  #intro,
  .about-grid,
  .contact-grid { grid-template-columns:1fr; }

  .intro-visual { min-height:300px; }
  .about-img-col .img-accent,
  .about-years { display:none; }
  .form-row { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:.5rem; text-align:center; }

  .nav-toggle { display:flex; }

  #navbar ul {
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:rgba(8,25,16,.98);
    flex-direction:column;
    padding:1.25rem 1.75rem;
    gap:0;
  }

  #navbar ul.open { display:flex; }
  #navbar ul li { width:100%; }
  #navbar ul li a { display:block; padding:.7rem 0; border-bottom:1px solid rgba(255,255,255,.06); }
}

@media (max-width:560px) {
  .strip-grid { grid-template-columns:1fr; }
  .cta-actions { flex-direction:column; align-items:center; }
  .hero-actions { flex-direction:column; }
  .social-row { flex-wrap:wrap; }
}

/* ══════════════════════════════════════
   GALLERY GRID (index page)
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3rem;
}

.gallery-large {
  grid-column: 1 / 3;
  aspect-ratio: 16/9 !important;
}

/* Override room-card aspect for gallery */
.gallery-grid .room-card { aspect-ratio: 4/3; }

/* Reviewer avatar icon fallback */
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf-lt);
  font-size: 1.75rem;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: 1 / 2; aspect-ratio: 4/3 !important; }
}

/* ══════════════════════════════════════
   HERO REDESIGN — centered, clean
══════════════════════════════════════ */
.hero-centered {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-resort-name {
  font-family: var(--font-en);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  font-weight: 600;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--leaf-lt);
  margin-bottom: 1rem;
  opacity: .9;
}

.hero-centered h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.hero-centered .hero-th {
  font-size: clamp(.9rem, 1.8vw, 1.15rem);
  letter-spacing: .12em;
  color: rgba(245,240,232,.85);
  margin-bottom: 2.5rem;
}

.hero-centered .hero-actions {
  justify-content: center;
}

/* ══════════════════════════════════════
   CONTACT — centered layout
══════════════════════════════════════ */
.contact-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-center h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--forest);
  margin-bottom: .25rem;
}

.contact-center .h2-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1rem;
  color: var(--leaf);
  display: block;
  margin-bottom: .75rem;
}

.contact-center > p {
  color: var(--text-gray);
  font-size: .93rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.cinfo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .cinfo-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   NAVBAR SOLID SEPARATOR
══════════════════════════════════════ */
/* Always show navbar solid — no longer transparent over hero */
#navbar {
  background: rgba(8, 25, 16, 0.97) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

/* Spacer pushes hero content below fixed navbar */
#nav-spacer {
  height: 72px;
}

/* Hero no longer needs to start behind navbar — remove top fade */
#hero::after { display: none; }

/* Hero: full height minus spacer */
#hero {
  height: calc(100vh - 72px);
  min-height: 500px;
}

/* ══════════════════════════════════════
   HERO GLASS BOX
══════════════════════════════════════ */
.hero-glass-box {
  background: rgba(8, 25, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(125, 196, 138, 0.25);
  padding: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
}

.hero-glass-box .hero-resort-name {
  font-size: clamp(.8rem, 1.5vw, 1rem);
  letter-spacing: .5em;
  color: var(--leaf-lt);
  margin-bottom: 0;
}

.hero-glass-box .hero-th {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  letter-spacing: .08em;
  color: rgba(245,240,232,.9);
  margin-bottom: 0;
}

.hero-glass-box .hero-actions {
  margin-top: .5rem;
  justify-content: center;
}

@media (max-width: 560px) {
  .hero-glass-box { padding: 2rem 1.75rem; max-width: 90vw; }
  #nav-spacer { height: 60px; }
  #hero { height: calc(100vh - 60px); }
}
