@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ═══════════════════════════════════════════
   Blessed Aura — Public Website Stylesheet
   assets/css/style.css
   Extracted from approved Blessed-Aura-design.html
═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #FFFFFF;
  --offwhite:     #FFF9F8;
  --linen:        #FFE8E4;
  --gold:         #FFBE0B;
  --gold-light:   #FFE082;
  --gold-pale:    #FFFDE7;
  --pine:         #1B2A4A;
  --pine-light:   #E8EDF5;
  --teal:         #E8533F;
  --teal-light:   #EC6B59;
  --teal-pale:    #FFF0ED;
  --ink:          #1B2A4A;
  --ink-mid:      #4A5568;
  --ink-soft:     #718096;
  --border:       rgba(232,83,63,0.15);
  --border-strong:rgba(232,83,63,0.28);
  --shadow:       0 4px 24px rgba(27,42,74,0.09);
  --shadow-md:    0 8px 40px rgba(27,42,74,0.14);
  --r: 10px;
  --pad: 48px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: var(--ink); font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── BUTTONS ── */
.btn-primary { background: var(--teal); color: #fff; border: none; padding: 13px 30px; font-size: 14px; border-radius: 7px; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: #C73D2B; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-mid); border: 1px solid var(--border-strong); padding: 12px 26px; font-size: 14px; border-radius: 7px; transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: #E8533F; color: #E8533F; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,83,63,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad); height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo svg { height: 40px; width: auto; }
.nav-links { display: flex; list-style: none; }
.nav-links a { display: block; padding: 8px 12px; font-size: 13px; color: #4A5568; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #E8533F; }
.nav-book { background: var(--teal); color: #fff; border: none; padding: 10px 20px; font-size: 13px; border-radius: 6px; transition: background 0.2s; flex-shrink: 0; }
.nav-book:hover { background: #C73D2B; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #1B2A4A; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #ffffff; z-index: 290; overflow-y: auto;
  padding: 20px 24px; flex-direction: column;
}
.drawer.open { display: flex; }
.drawer a { display: block; padding: 15px 16px; font-size: 17px; font-family: 'DM Serif Display', serif; color: #4A5568; border-bottom: 1px solid rgba(232,83,63,0.1); }
.drawer a:hover, .drawer a.active { color: #E8533F; }
.drawer .d-book { margin-top: 20px; background: var(--teal); color: #fff; border: none; padding: 15px; font-size: 15px; border-radius: 8px; width: 100%; cursor: pointer; }

/* ── PAGE BAND ── */
.page-band { background: linear-gradient(135deg, #1B2A4A, #E8533F); padding: 44px var(--pad) 36px; border-bottom: 1px solid rgba(232,83,63,0.2); }
.page-band-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #FFE082; margin-bottom: 8px; font-weight: 500; }
.page-band h1 { font-size: 42px; color: #fff; }
.page-band p { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 8px; max-width: 520px; line-height: 1.7; }

/* ── SECTION WRAP ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 68px var(--pad); }
.sec-hdr { margin-bottom: 36px; }
.eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--teal); opacity: 0.5; }
.sec-title { font-size: 34px; color: var(--ink); }
.sec-title em { color: var(--teal); font-style: italic; }
.sec-sub { font-size: 14px; color: var(--ink-mid); margin-top: 8px; max-width: 460px; line-height: 1.7; }
.alt-band { background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid rgba(232,83,63,0.2); }

/* ── HOME HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; background: #ffffff; overflow: hidden; }
.hero-l { padding: 72px var(--pad); display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #E8533F; margin-bottom: 18px; font-weight: 500; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: #E8533F; }
.hero-title { font-size: 54px; color: #1B2A4A; margin-bottom: 18px; line-height: 1.08; }
.hero-title em { font-style: italic; color: #E8533F; }
.hero-desc { font-size: 15px; color: #4A5568; max-width: 400px; line-height: 1.8; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 26px; color: #1B2A4A; }
.stat-lbl { font-size: 11px; color: #718096; margin-top: 2px; }
.stat-div { width: 1px; background: rgba(27,42,74,0.15); align-self: stretch; }
.hero-r { position: relative; background: #FFE8E4; overflow: hidden; min-height: 460px; }
.hero-r img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border: 1px solid rgba(232,83,63,0.2); border-radius: var(--r); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-badge-txt { font-size: 11px; color: #4A5568; }
.hero-badge-txt strong { display: block; font-size: 13px; color: #1B2A4A; font-weight: 500; }

/* ── BOOKING BAR (desktop) ── */
.booking-bar { background: #1B2A4A; border-top: 1px solid rgba(27,42,74,0.2); border-bottom: 1px solid rgba(27,42,74,0.2); padding: 18px var(--pad); display: flex; align-items: stretch; }
.bf { flex: 1; padding: 0 18px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.bf:first-child { padding-left: 0; }
.bf label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #FFE082; font-weight: 500; }
.bf input, .bf select { border: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 14px; color: #ffffff; outline: none; width: 100%; }
.bf-submit { padding-left: 20px; display: flex; align-items: center; flex-shrink: 0; }

/* ── BOOKING CARD (mobile) ── */
.booking-card { display: none; background: #1B2A4A; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; margin: 16px; box-shadow: var(--shadow); }
.booking-card .card-title { font-family: 'DM Serif Display', serif; font-size: 15px; margin-bottom: 14px; color: #ffffff; }
.bc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bc-field { margin-bottom: 12px; }
.bc-field label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 5px; }
.bc-field input, .bc-field select { width: 100%; border: 1px solid rgba(255,255,255,0.15); border-radius: 7px; padding: 10px 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: #fff; background: rgba(255,255,255,0.08); outline: none; }

/* ── FEATURES BAR ── */
.features { background: #1B2A4A; display: flex; overflow-x: auto; padding: 0 var(--pad); scrollbar-width: none; }
.features::-webkit-scrollbar { display: none; }
.feat { flex: 1; min-width: 150px; padding: 18px 22px; display: flex; align-items: center; gap: 12px; border-right: 1px solid rgba(255,255,255,0.12); }
.feat:first-child { padding-left: 0; }
.feat:last-child { border-right: none; }
.feat-icon { font-size: 18px; flex-shrink: 0; }
.feat-title { font-size: 12px; font-weight: 500; color: #fff; white-space: nowrap; }
.feat-sub { font-size: 11px; color: rgba(255,255,255,0.55); white-space: nowrap; }

/* ── ATTRACTIONS ── */
.attract-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.att-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; }
.att-card:hover { transform: translateY(-2px); }
.att-img { height: 120px; background: var(--linen); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.att-img img { width: 100%; height: 100%; object-fit: cover; }
.att-body { padding: 12px; }
.att-dist { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 2px; font-weight: 500; }
.att-type { font-size: 10px; color: var(--ink-soft); margin-bottom: 3px; }
.att-name { font-size: 14px; color: var(--ink); }

/* attractions full page */
.att-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.att-full { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 110px 1fr; }
.att-full-img { background: var(--linen); display: flex; align-items: center; justify-content: center; font-size: 40px; min-height: 100px; overflow: hidden; }
.att-full-img img { width: 110px; height: 100%; object-fit: cover; }
.att-full-body { padding: 16px; }
.att-nm { font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.att-dc { font-size: 12px; color: var(--ink-mid); line-height: 1.65; }
.map-banner { background: var(--pine-light); border: 1px solid rgba(232,83,63,0.15); border-radius: var(--r); padding: 16px 20px; margin-top: 20px; display: flex; align-items: flex-start; gap: 14px; }
.map-txt { font-size: 13px; color: var(--pine); line-height: 1.6; }
.map-txt strong { display: block; font-size: 14px; margin-bottom: 2px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-img { height: 170px; background: var(--linen); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { position: absolute; top: 12px; left: 12px; background: var(--teal); color: #fff; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; font-weight: 500; }
.blog-body { padding: 18px; }
.blog-meta { font-size: 11px; color: var(--ink-soft); margin-bottom: 7px; }
.blog-title { font-size: 16px; color: var(--ink); margin-bottom: 7px; line-height: 1.3; }
.blog-excerpt { font-size: 12px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 14px; }
.blog-read { font-size: 13px; color: var(--teal); font-weight: 500; display: inline-block; margin-bottom: 14px; }
.blog-author { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.blog-av { width: 28px; height: 28px; border-radius: 50%; background: var(--pine-light); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--teal); font-weight: 500; flex-shrink: 0; }
.blog-an { font-size: 12px; color: var(--ink-mid); }

/* ── ROOMS ── */
.rooms-note { background: var(--pine-light); border: 1px solid rgba(232,83,63,0.15); border-radius: var(--r); padding: 14px 20px; margin-bottom: 28px; display: flex; gap: 14px; align-items: flex-start; }
.rooms-note p { font-size: 13px; color: var(--pine); line-height: 1.6; }
.room-list { display: flex; flex-direction: column; gap: 36px; }
.room-block { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s; }
.room-block:hover { box-shadow: var(--shadow-md); }
.room-block.rev { grid-template-columns: 1fr 1.1fr; }
.room-block.rev .rim { order: 2; }
.room-block.rev .rin { order: 1; }
.rim { position: relative; min-height: 360px; background: var(--linen); overflow: hidden; }
.rim img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rim-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border: 1px solid rgba(232,83,63,0.25); border-radius: 6px; padding: 4px 12px; font-size: 11px; color: #E8533F; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.rin { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.room-type { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--pine); font-weight: 500; margin-bottom: 10px; }
.room-name { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.room-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 20px; }
.amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.am { background: var(--teal-pale,#E6F7F3); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; font-size: 12px; color: var(--ink-mid); }
.policies { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.pol { background: var(--offwhite); border-radius: 6px; padding: 9px 12px; }
.pol-lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2px; }
.pol-val { font-size: 13px; color: var(--ink); font-weight: 500; }
.room-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.room-price-lbl { font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }
.room-price { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--teal); }
.room-price small { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--ink-soft); }

/* ── KITCHEN ── */
.kitchen-hero { background: linear-gradient(135deg,#1B2A4A,#E8533F); padding: 48px var(--pad); display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.kitchen-txt { flex: 1; min-width: 240px; }
.kitchen-txt h2 { font-size: 38px; color: #fff; margin-bottom: 12px; }
.kitchen-txt h2 em { color: #FFBE0B; }
.kitchen-txt p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.ktags { display: flex; gap: 7px; margin-top: 18px; flex-wrap: wrap; }
.ktag { border: 1px solid rgba(255,190,11,0.4); border-radius: 6px; padding: 5px 13px; font-size: 12px; color: #FFBE0B; }
.kitchen-vis { text-align: center; flex-shrink: 0; }
.kitchen-vis .big { font-size: 64px; }
.ktrow { font-size: 12px; color: rgba(255,255,255,0.5); padding: 3px 0; }
.ktrow strong { color: #FFBE0B; }
.menu-tabs { display: flex; gap: 6px; margin-bottom: 24px; }
.menu-tab { background: #fff; border: 1px solid var(--border); border-radius: 7px; padding: 9px 18px; font-size: 13px; color: var(--ink-mid); transition: all 0.2s; }
.menu-tab:hover, .menu-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mc { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.mc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mc-img { height: 150px; background: var(--linen); display: flex; align-items: center; justify-content: center; font-size: 48px; position: relative; overflow: hidden; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; }
.mc-cat { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); border: 1px solid rgba(232,83,63,0.2); border-radius: 5px; padding: 3px 9px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: #E8533F; font-weight: 500; }
.mc-body { padding: 16px; }
.mc-name { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.mc-desc { font-size: 12px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 12px; }
.mc-foot { display: flex; align-items: center; justify-content: space-between; }
.mc-price { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--teal); }
.mc-stars { font-size: 11px; color: #F59E0B; }

/* ── TREKS ── */
.trek-filters { background: #FFF9F8; border-bottom: 1px solid rgba(232,83,63,0.12); padding: 14px var(--pad); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; overflow-x: auto; scrollbar-width: none; }
.trek-filters::-webkit-scrollbar { display: none; }
.flbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #718096; flex-shrink: 0; }
.fbtn { background: #ffffff; border: 1px solid rgba(232,83,63,0.2); border-radius: 6px; padding: 7px 15px; font-size: 12px; color: #4A5568; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; cursor: pointer; }
.fbtn:hover, .fbtn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.trek-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tc { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.tc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tc-img { height: 170px; background: var(--pine-light); display: flex; align-items: center; justify-content: center; font-size: 44px; position: relative; }
.tdiff { position: absolute; top: 10px; left: 10px; border-radius: 5px; padding: 3px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.d-easy     { background: #DCFCE7; color: #16A34A; }
.d-moderate { background: #FEF9C3; color: #CA8A04; }
.d-hard     { background: #FEE2E2; color: #DC2626; }
.d-expert   { background: #EDE9FE; color: #7C3AED; }
.tdays { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.95); border: 1px solid rgba(232,83,63,0.2); border-radius: 5px; padding: 3px 10px; font-size: 10px; color: #E8533F; }
.tc-body { padding: 15px 17px 17px; }
.tc-region { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--pine); margin-bottom: 5px; font-weight: 500; }
.tc-name { font-size: 16px; color: var(--ink); margin-bottom: 5px; }
.tc-desc { font-size: 12px; color: var(--ink-mid); line-height: 1.65; }
.tc-foot { margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.tc-alt { font-size: 12px; color: var(--ink-soft); }
.tc-cta { font-size: 12px; color: var(--teal); font-weight: 500; cursor: pointer; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px; gap: 10px; }
.mosaic-blk { background: var(--linen); border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.mosaic-blk img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-blk.tall { grid-row: 1 / 3; }
.about-txt h2 { font-size: 34px; color: var(--ink); margin-bottom: 14px; }
.about-txt h2 em { color: var(--teal); }
.about-txt p { font-size: 14px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 12px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.av { background: var(--offwhite); border: 1px solid var(--border); border-radius: 8px; padding: 13px 15px; }
.av-icon { font-size: 18px; margin-bottom: 5px; }
.av-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.av-txt { font-size: 12px; color: var(--ink-mid); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; text-align: center; box-shadow: var(--shadow); }
.team-img { font-size: 48px; margin-bottom: 14px; }
.team-name { font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; font-weight: 500; }
.team-bio { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; }
.contact-info h3 { font-size: 22px; color: var(--ink); margin-bottom: 20px; }
.c-item { display: flex; gap: 13px; margin-bottom: 18px; }
.c-icon { width: 40px; height: 40px; background: var(--pine-light); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.c-lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; font-weight: 500; }
.c-val { font-size: 14px; color: var(--ink); }
.c-val a { color: var(--ink-mid); }
.c-val a:hover { color: var(--teal); }
.c-form { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.c-form h3 { font-size: 22px; color: var(--ink); margin-bottom: 22px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-fld { margin-bottom: 14px; }
.f-fld label { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; font-weight: 500; }
.f-fld input, .f-fld select, .f-fld textarea { width: 100%; border: 1px solid var(--border); border-radius: 7px; padding: 11px 13px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink); background: var(--offwhite); outline: none; transition: border-color 0.2s; }
.f-fld input:focus, .f-fld select:focus, .f-fld textarea:focus { border-color: var(--teal); }
.f-fld textarea { min-height: 90px; resize: vertical; }
.c-note { margin-top: 20px; background: var(--pine-light); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.c-note-lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 7px; font-weight: 500; }
.c-note-txt { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: #1B2A4A; color: rgba(255,255,255,0.7); padding: 48px var(--pad) 24px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand svg { height: 48px; width: auto; margin-bottom: 12px; opacity: 0.95; }
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 17px; color: #fff; margin-bottom: 7px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.fcol h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #FFBE0B; margin-bottom: 14px; font-weight: 500; }
.flinks { list-style: none; }
.flinks li { margin-bottom: 8px; }
.flinks a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.flinks a:hover { color: #FFBE0B; }
.fci { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: flex; gap: 7px; }
.fci a { color: rgba(255,255,255,0.65); }
.fci a:hover { color: #FFBE0B; }
.fnl-input { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,190,11,0.2); border-radius: 7px; padding: 10px 13px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: #fff; outline: none; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.fcopy { font-size: 12px; color: rgba(255,255,255,0.38); }

/* ══════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad: 28px; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 52px var(--pad) 40px; }
  .hero-title { font-size: 42px; }
  .hero-r { min-height: 300px; }
  .booking-bar { display: none; }
  .booking-card { display: block; }
  .page-band { padding: 36px var(--pad) 28px; }
  .page-band h1 { font-size: 34px; }
  .wrap { padding: 52px var(--pad); }
  .sec-title { font-size: 28px; }
  .room-block, .room-block.rev { grid-template-columns: 1fr; }
  .room-block .rim { min-height: 260px; order: 0 !important; }
  .room-block .rin { order: 1 !important; padding: 28px; }
  .room-block.rev .rim { order: 0 !important; }
  .room-block.rev .rin { order: 1 !important; }
  .room-name { font-size: 24px; }
  .kitchen-hero { padding: 36px var(--pad); gap: 28px; }
  .kitchen-txt h2 { font-size: 30px; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .trek-filters { padding: 12px var(--pad); }
  .trek-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .attract-row { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .mosaic { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .att-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   MOBILE  ≤ 600px
══════════════════════════════════ */
@media (max-width: 600px) {
  :root { --pad: 18px; }
  nav { height: 60px; }
  .nav-logo svg { height: 34px; }
  .drawer { top: 60px; }
  .hero-l { padding: 36px var(--pad) 28px; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 13px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 20px; }
  .hero-r { min-height: 220px; }
  .hero-badge { left: 12px; bottom: 12px; padding: 10px 12px; }
  .page-band { padding: 28px var(--pad) 22px; }
  .page-band h1 { font-size: 26px; }
  .page-band p { font-size: 13px; }
  .wrap { padding: 36px var(--pad); }
  .sec-title { font-size: 24px; }
  .sec-sub { font-size: 13px; }
  .features { padding: 0 var(--pad); }
  .attract-row { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .att-img { height: 90px; }
  .blog-grid { grid-template-columns: 1fr; }
  .rin { padding: 20px; }
  .room-name { font-size: 22px; }
  .policies { grid-template-columns: 1fr 1fr; }
  .rooms-note { flex-direction: column; gap: 6px; }
  .kitchen-hero { padding: 28px var(--pad); }
  .kitchen-txt h2 { font-size: 26px; }
  .kitchen-vis { display: flex; align-items: center; gap: 20px; width: 100%; }
  .kitchen-vis .big { font-size: 48px; }
  .menu-grid { grid-template-columns: 1fr; }
  .trek-grid { grid-template-columns: 1fr; }
  .att-grid { grid-template-columns: 1fr; }
  .att-full { grid-template-columns: 80px 1fr; }
  .att-full-img img { width: 80px; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: 200px 150px 150px; }
  .mosaic-blk.tall { grid-row: auto; }
  .about-vals { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .c-form { padding: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 4px; }
  footer { padding: 36px var(--pad) 20px; }
  .map-banner { flex-direction: column; gap: 8px; }
  .booking-card { margin: 12px; padding: 18px; }
}
