:root {
  --forest:      #1a2e1f;
  --forest-mid:  #2d4a34;
  --forest-deep: #0f1c12;
  --sage:        #7a9e82;
  --cream:       #f5f0e8;
  --warm-white:  #fdfaf4;
  --gold:        #c9a84c;
  --gold-light:  #e8d090;
  --text-dark:   #1a1a16;
  --text-mid:    #4a4a3e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 26px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s ease;
}
nav.scrolled {
  background: rgba(15,28,18,0.97);
  backdrop-filter: blur(14px);
  padding: 16px 60px;
  box-shadow: 0 2px 32px rgba(0,0,0,0.28);
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none; padding: 0;
}
.nav-logo img { height: 72px; width: auto; display: block; transition: height 0.35s ease; }
nav.scrolled .nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  border: 1px solid rgba(255,255,255,0.4) !important;
  padding: 9px 24px; border-radius: 1px;
  transition: all 0.3s !important;
}
.nav-cta:hover, .nav-cta.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--forest) !important;
}
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px; background: white; transition: all 0.3s;
}

/* ── HERO (home) ── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(175deg, rgba(15,28,18,0.45) 0%, rgba(10,22,13,0.75) 100%),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&auto=format&fit=crop&q=85') center/cover no-repeat;
  animation: heroScale 14s ease-out forwards;
}
@keyframes heroScale { from { transform: scale(1.07); } to { transform: scale(1.00); } }
.hero-content {
  position: relative; text-align: center; color: white; padding: 0 24px;
  animation: fadeUp 1.1s ease-out 0.25s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; font-weight: 400; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,9vw,100px); font-weight: 300; line-height: 1.0; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 16px; line-height: 1.75; }
.hero-dates { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-style: italic; color: var(--gold-light); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  animation: scrollBounce 2.8s ease-in-out infinite;
}
.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 55% { transform: translateX(-50%) translateY(8px); } }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--forest);
  padding: 14px 40px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; border-radius: 1px; display: inline-block;
  transition: all 0.3s; font-family: 'Jost', sans-serif; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.45);
  padding: 14px 40px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 400; text-decoration: none; border-radius: 1px; display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.07); }
.btn-ghost {
  background: transparent; color: var(--forest); border: 1px solid var(--forest);
  padding: 12px 32px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; text-decoration: none; border-radius: 1px; display: inline-block; transition: all 0.3s; margin-top: 24px;
}
.btn-ghost:hover { background: var(--forest); color: white; }
.btn-outline-light {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; text-decoration: none; border-radius: 1px; display: inline-block; transition: all 0.3s;
}
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--forest); padding: 17px 60px;
  display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-strip span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap; }
.trust-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0.6; }

/* ── EYEBROW ── */
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500; display: block; }

/* ── HOTEL INTRO ── */
.hotel-intro { padding: 100px 60px; background: var(--warm-white); }
.hotel-intro-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: center; }
.hotel-intro-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,3.5vw,52px); font-weight: 300; color: var(--forest); line-height: 1.1; margin-bottom: 8px; }
.hotel-intro-text h2 em { font-style: italic; }
.hotel-address { font-size: 13px; color: var(--sage); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hotel-intro-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; font-weight: 300; }
.hotel-intro-img { position: relative; }
.hotel-intro-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hotel-intro-img::before { content: ''; position: absolute; top: -16px; right: -16px; bottom: 32px; left: 32px; border: 1px solid var(--gold); opacity: 0.3; pointer-events: none; }
.img-badge { position: absolute; bottom: -16px; left: -16px; background: var(--forest); color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; padding: 14px 22px; }

/* ── AMENITIES HOME ── */
.amenities-home { background: var(--cream); padding: 100px 60px; }
.amenities-home-header { text-align: center; margin-bottom: 60px; }
.amenities-home-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,3.5vw,50px); font-weight: 300; color: var(--forest); margin-bottom: 12px; }
.amenities-home-header p { font-size: 15px; color: var(--text-mid); font-weight: 300; }
.amenities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.amenity-card { background: white; padding: 32px 28px 36px; transition: transform 0.3s, box-shadow 0.3s; }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,46,31,0.1); }
.am-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.amenity-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--forest); margin-bottom: 8px; }
.amenity-card p { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ── PROGRAMME ── */
.programme-section { background: var(--forest); padding: 100px 60px; }
.programme-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.programme-img img { width: 100%; height: 520px; object-fit: cover; display: block; }
.programme-text .eyebrow { color: var(--gold-light); }
.programme-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,3.5vw,50px); font-weight: 300; color: white; line-height: 1.15; margin-bottom: 20px; }
.programme-text h2 em { font-style: italic; color: var(--gold-light); }
.programme-text > p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.programme-text strong { color: white; font-weight: 500; }
.programme-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.prog-item { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300; }
.prog-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.prog-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.speaker-row { display: flex; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.speaker-icon { font-size: 28px; width: 52px; height: 52px; border-radius: 50%; background: var(--forest-mid); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.speaker-row small { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.speaker-row strong { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: white; }

/* ── DATES + CATERING ── */
.dates-section { padding: 100px 60px; background: var(--warm-white); }
.dates-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.dates-block h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3vw,44px); font-weight: 300; color: var(--forest); margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.dates-line { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--forest); }
.dates-till { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin: 8px 0; }
.dates-sub { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin-top: 20px; font-weight: 400; }
.catering-block h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3vw,44px); font-weight: 300; color: var(--forest); line-height: 1.15; margin-bottom: 16px; }
.catering-block h2 em { font-style: italic; }
.catering-block > p { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.catering-block strong { color: var(--forest); font-weight: 500; }
.logos-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.logo-pill { background: var(--forest); padding: 12px 20px; display: flex; align-items: center; justify-content: center; min-width: 140px; min-height: 56px; }
.logo-pill img { max-height: 44px; max-width: 160px; object-fit: contain; filter: brightness(1.1); }
.logo-fallback { color: white; font-size: 13px; font-weight: 400; letter-spacing: 0.06em; }

/* ── CTA BAND ── */
.cta-band { background: var(--forest-mid); padding: 56px 60px; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: white; margin-bottom: 6px; }
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.62); font-weight: 300; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { height: 380px; min-height: 280px; position: relative; display: flex; align-items: center; justify-content: center; margin-top: 0; overflow:hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover !important; background-position: center !important; }
.page-hero-content { position: relative; text-align: center; color: white; padding: 80px 24px 0; }
.page-hero-content .eyebrow { color: var(--gold-light); }
.page-hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,6vw,72px); font-weight: 300; line-height: 1.1; margin-bottom: 14px; }
.page-hero-content p { font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 300; max-width: 460px; margin: 0 auto; }

.section-spacer { height: 72px; }

/* ── ROOMS ── */
.rooms-section { padding: 0 60px 100px; max-width: 1400px; margin: 0 auto; }
.rooms-intro { text-align: center; padding: 64px 0 52px; font-size: 15px; color: var(--text-mid); max-width: 600px; margin: 0 auto; line-height: 1.75; font-weight: 300; }
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.room-card { background: white; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s; }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,46,31,0.12); }
.room-img { height: 240px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 28px 28px 32px; position: relative; }
.room-badge { display: inline-block; background: var(--gold); color: var(--forest); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; font-weight: 500; margin-bottom: 10px; }
.room-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--forest); margin-bottom: 10px; }
.room-body p { font-size: 13px; color: var(--text-mid); line-height: 1.72; font-weight: 300; margin-bottom: 20px; }
.room-link { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; font-weight: 500; transition: color 0.2s; }
.room-link:hover { color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-page { padding: 80px 60px 100px; max-width: 1200px; margin: 0 auto; }
.contact-intro { text-align: center; font-size: 15px; color: var(--text-mid); max-width: 580px; margin: 0 auto 64px; line-height: 1.8; font-weight: 300; }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; }
.contact-methods-col { display: flex; flex-direction: column; gap: 2px; }
.contact-card { background: var(--cream); padding: 24px 28px; transition: background 0.25s; }
.contact-card:hover { background: #ede8df; }
.cc-icon { font-size: 22px; margin-bottom: 8px; }
.contact-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--forest); margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 14px; color: var(--text-mid); text-decoration: none; font-weight: 300; line-height: 1.6; transition: color 0.2s; }
.contact-card a:hover { color: var(--forest); }
.contact-form-col .eyebrow { margin-bottom: 10px; }
.contact-form-col h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3vw,44px); font-weight: 300; color: var(--forest); line-height: 1.15; margin-bottom: 36px; }
.contact-form-col h2 em { font-style: italic; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: var(--cream); border: 1px solid rgba(0,0,0,0.12); color: var(--text-dark); padding: 14px 18px; font-size: 14px; font-family: 'Jost', sans-serif; font-weight: 300; outline: none; transition: border-color 0.25s, background 0.25s; border-radius: 1px; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: white; }

.map-band { background: var(--forest); padding: 60px; }
.map-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.map-band h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: white; margin-bottom: 6px; }
.map-band p { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 4px; }
.map-note { font-size: 12px; color: rgba(255,255,255,0.4) !important; font-style: italic; }

/* ── FOOTER ── */
footer { background: var(--forest-deep); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding: 64px 60px 48px; max-width: 1400px; margin: 0 auto; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-logo-img { display: block; height: 64px; width: auto; margin-bottom: 20px; opacity: 0.9; }
.footer-col > p { font-size: 13px; color: rgba(255,255,255,0.58); font-weight: 300; line-height: 1.7; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.62); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.62); text-decoration: none; font-weight: 300; transition: color 0.2s; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; max-width: 1400px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .hotel-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img, .hotel-intro-img { order: -1; }
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .programme-inner { grid-template-columns: 1fr; }
  .dates-inner { grid-template-columns: 1fr; gap: 48px; }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,28,18,0.98); padding: 20px 24px 28px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a { display: block; padding: 14px 0; font-size: 13px; }
  .nav-cta { border: none !important; }
  .nav-hamburger { display: flex; }
  .trust-strip { padding: 14px 20px; gap: 12px; }
  .hotel-intro, .amenities-home, .programme-section, .dates-section { padding: 72px 24px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .rooms-section { padding: 0 24px 72px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .contact-page { padding: 60px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .map-band { padding: 48px 24px; }
  .map-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 48px 24px; }
  .cta-band-inner { flex-direction: column; }
  footer { padding: 0; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
  .page-hero { height: 300px; }
}
@media(max-width: 520px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 52px; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE FIXES
   ══════════════════════════════════════════════ */

/* Footer button — force exact same style as btn-primary elsewhere */
footer .btn-primary {
  background: var(--gold) !important;
  color: var(--forest) !important;
  border: none !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
  padding: 14px 40px !important;
  display: inline-block !important;
  width: auto !important;
  box-sizing: border-box;
}
footer .btn-primary:hover {
  background: var(--gold-light) !important;
  color: var(--forest) !important;
}

/* btn-ghost border fix — make sure border shows on all backgrounds */
.btn-ghost { border: 1px solid var(--forest) !important; }

/* ── TABLET: 641px – 1100px ── */
@media(min-width: 641px) and (max-width: 1100px) {

  /* Hero: always fit screen height */
  .hero { height: 100svh; min-height: unset; }

  /* Dates section: centre */
  .dates-inner { grid-template-columns: 1fr; gap: 48px; }
  .dates-block { text-align: center; }
  .dates-block .btn-primary { margin: 32px auto 0; display: block; width: fit-content; }

  /* Catering block centre */
  .catering-block { text-align: center; }
  .logos-row { justify-content: center; }

  /* Footer: always 3 columns on tablet */
  .footer-top {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0 !important;
    padding: 48px 32px !important;
  }
  .footer-top .footer-col {
    padding: 0 20px !important;
    border-right: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: none !important;
    text-align: left;
  }
  .footer-top .footer-col:first-child { padding-left: 0 !important; }
  .footer-top .footer-col:last-child { padding-right: 0 !important; border-right: none !important; }

  /* Contact cards: 2×2 on tablet */
  .contact-methods-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
  }

  /* Rooms padding */
  .rooms-section { padding-top: 72px; }
}

/* ── MOBILE: max 640px ── */
@media(max-width: 640px) {

  /* Nav */
  nav, nav.scrolled { padding: 16px 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(15,28,18,0.98);
    flex-direction: column;
    padding: 8px 0 20px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 13px 24px; font-size: 13px !important; letter-spacing: 0.14em !important; }
  .nav-links .nav-cta { border: none !important; background: none !important; }

  /* Hero: fit screen, equal buttons */
  .hero { height: 100svh; min-height: unset; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 260px; text-align: center; }

  /* Dates: centre */
  .dates-inner { grid-template-columns: 1fr; gap: 40px; }
  .dates-block { text-align: center; }
  .dates-block .btn-primary { margin: 28px auto 0; display: block; width: fit-content; }

  /* Catering section: centre */
  .catering-block { text-align: center; }
  .logos-row { justify-content: center; }

  /* Kumzitz / Special Evening: centre on mobile */
  .kumzitz-section { padding: 72px 24px; }
  .kumzitz-inner { grid-template-columns: 1fr; gap: 48px; }
  .kumzitz-text { text-align: center; }
  .kumzitz-img img { height: 280px; object-position: center 25%; } /* between top and center */
  .speaker-row { justify-content: center; }

  /* Catering logos: centred, no side padding */
  .catering-block { text-align: center; padding-left: 0 !important; padding-right: 0 !important; width: 100%; }
  .dates-inner { justify-items: center; }
  .logos-row { justify-content: center !important; align-items: center; padding: 0 !important; gap: 24px !important; }

  /* Gallery: 2 images per row on Shavuos 2026 tab */
  #panel-new { grid-template-columns: repeat(2, 1fr) !important; }
  #panel-past > div { grid-template-columns: repeat(2, 1fr) !important; }

  /* Rooms CTA band: centre buttons */
  .cta-band-inner { flex-direction: column; align-items: center; text-align: center; }
  .cta-band-actions { justify-content: center; }

  /* Feedback: 1 column */
  #feedbackGrid { columns: 1 !important; column-gap: 0 !important; padding: 0 16px 60px !important; }

  /* Footer: 1 column, centred, horizontal rules */
  .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .footer-top .footer-col {
    padding: 32px 24px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    text-align: center;
  }
  .footer-top .footer-col:last-child { border-bottom: none !important; }
  .footer-top .footer-col a[style*="flex"] { justify-content: center; }
  .footer-top .footer-col ul { align-items: center; }
  .footer-top .footer-col .btn-primary { margin: 20px auto 0 !important; display: block; width: fit-content; }
  .footer-bottom { padding: 18px 24px; text-align: center; }

  /* Contact location: centre */
  .map-band { padding: 48px 24px; }
  .map-band-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }

  /* Contact cards: 2×2 */
  .contact-methods-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
  }

  /* Inner page hero */
  .page-hero { height: 260px; }

  /* Hotel intro stacked */
  .hotel-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .hotel-intro { padding: 60px 24px; }
  .amenities-home { padding: 60px 24px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .programme-section { padding: 60px 24px; }
  .dates-section { padding: 60px 24px; }
}
