/* ============================================================
   AMERICAN INN OF BETHESDA — DESIGN TOKENS
   ============================================================ */
:root{
  --navy: #13233A;
  --navy-light: #1E3A57;
  --brick: #86342A;
  --brick-dark: #6C2A22;
  --gold: #B08D57;
  --cream: #F6F2EA;
  --white: #FFFFFF;
  --ink: #212E3D;
  --muted: #5C6B7A;
  --line: #E4DDD0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(19,35,58,0.08);
  --shadow-md: 0 12px 32px rgba(19,35,58,0.14);
  --container: 1200px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; color: var(--navy); font-weight:600; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
svg{ fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }

.container{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 24px;
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 10px;
}
.eyebrow--light{ color: var(--gold); }

/* Signature stripe divider — echoes the wave in the logo mark */
.stripe-divider{ width: 120px; height: 20px; color: var(--brick); margin-top: 14px; }
.stripe-divider svg{ width:100%; height:100%; stroke-width:3; }
.stripe-divider--light{ color: var(--gold); }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); line-height:1.15; }
.section-head--light h2, .section-head--light p:not(.eyebrow){ color: var(--white); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight:700;
  font-size: 14px;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary{ background: var(--brick); color: var(--white); }
.btn--primary:hover{ background: var(--brick-dark); transform: translateY(-1px); }
.btn--ghost{ background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--ghost:hover{ background: rgba(255,255,255,0.12); }
.btn--small{ padding: 9px 18px; font-size: 12.5px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 40px;
}
.topbar__social{ display:flex; gap:14px; }
.topbar__social a{ color: rgba(255,255,255,0.7); transition: color .2s; }
.topbar__social a:hover{ color: var(--gold); }
.topbar__social svg{ width:15px; height:15px; fill:currentColor; stroke:none; }
.topbar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.topbar__phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.topbar__phone span {
    display: inline-block;
}
.topbar__phone:hover{ color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.logo img{ height: 72px; width:auto; }
.nav{ display:flex; gap: 30px; }
.nav a{
  font-weight:700;
  font-size: 17.5px;
  color: var(--navy);
  position:relative;
  padding: 6px 0;
}
.nav a::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background: var(--brick);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .25s ease;
}
.nav a:hover::after{ transform: scaleX(1); }
.header__actions{ display:flex; align-items:center; gap: 16px; }

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width: 34px; height:34px;
  background:none; border:none;
  padding:0;
}
.hamburger span{
  display:block; height:2px; width:100%;
  background: var(--navy);
  transition: all .25s ease;
}
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero{ position:relative; }
.slider{
  position:relative;
  height: 88vh;
  min-height: 560px;
  max-height: 820px;
  overflow:hidden;
}
.slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transition: opacity 1s ease;
}
.slide.is-active{ opacity:1; }
.slide__scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(19,35,58,0.55) 0%, rgba(19,35,58,0.35) 45%, rgba(19,35,58,0.75) 100%);
}
.slide__caption{
  position:absolute;
  right: 24px;
  bottom: 56px;
  z-index:2;
  background: rgba(19,35,58,0.55);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight:700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 30px;
  backdrop-filter: blur(3px);
  display: none;
}
.hero__content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
      display: none;
}
.hero__content .eyebrow{ color: #E7C79C; }
.hero__content h1{
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height:1.1;
  margin-bottom: 18px;
}
.hero__sub{
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__cta{ display:flex; gap:16px; flex-wrap:wrap; }

.slider__arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:3;
  width: 48px; height:48px;
  border-radius:50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: rgba(19,35,58,0.25);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease, border-color .25s ease;
}
.slider__arrow:hover{ background: var(--brick); border-color: var(--brick); }
.slider__arrow svg{ width:20px; height:20px; }
.slider__arrow--prev{ left: 24px; }
.slider__arrow--next{ right: 24px; }

.slider__dots{
  position:absolute;
  bottom: 22px;
  left:50%;
  transform: translateX(-50%);
  z-index:3;
  display:flex;
  gap:10px;
}
.slider__dots button{
  width:9px; height:9px;
  border-radius:50%;
  background: rgba(255,255,255,0.5);
  border:none;
  padding:0;
  transition: all .25s ease;
}
.slider__dots button.is-active{ background: var(--white); width:26px; border-radius:5px; }

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking{
  position:relative;
  z-index: 20;
  margin-top: -46px;
  display: none;
}
.booking__card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display:flex;
  align-items:end;
  padding: 22px 26px;
  gap: 0;
}
.booking__field{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
  min-width: 0;
  padding: 0 18px;
}
.booking__field label{
  font-size: 11.5px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted);
}
.booking__field input, .booking__field select{
  border:none;
  font-family: inherit;
  font-size:15px;
  font-weight:700;
  color: var(--navy);
  background:transparent;
  padding: 4px 0;
  width:100%;
}
.booking__field input:focus, .booking__field select:focus{ outline:none; }
.booking__divider{ width:1px; align-self:stretch; background: var(--line); margin: 4px 0; }
.booking__submit{ margin-left: 22px; padding: 15px 34px; }

/* ============================================================
   ABOUT / HOME SECTION
   ============================================================ */
.about{ padding: 85px 0 100px; }
.about__grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items:center;
}
.about__media{ position:relative; aspect-ratio: 4 / 5; overflow:hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.about__stripe{
  position:absolute;
  right: -34px;
  bottom: -30px;
  width: 150px;
  color: var(--brick);
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about__stripe svg{ width:100%; stroke-width:3; }

.about__copy h2{ font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 22px; line-height:1.18; }
.about__copy > p{ color: var(--muted); font-size:16px; margin-bottom: 4px; }
.read-more{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s ease;
  overflow:hidden;
}
.read-more.is-open{ grid-template-rows: 1fr; }
.read-more p{ min-height:0; color: var(--muted); font-size:16px; padding-top: 16px; }
.read-more__btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:none;
  background:none;
  color: var(--brick);
  font-weight:800;
  font-size: 14px;
  margin-top: 16px;
  padding:0;
}
.read-more__btn svg{ width:16px; height:16px; transition: transform .3s ease; }
.read-more__btn.is-open svg{ transform: rotate(180deg); }

.about__facts{
  display:flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__facts div{ display:flex; flex-direction:column; gap:4px; font-size:13.5px; color: var(--muted); font-weight:600; }
.about__facts span{ font-family: var(--font-display); font-size: 26px; color: var(--navy); font-weight:700; }

.about__highlight{
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--brick);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}
.about__highlight a{ color: var(--brick); font-weight: 800; text-decoration: underline; }
.about__highlight a:hover{ color: var(--brick-dark); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
  border-color: #fff;
    border: 2px solid;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--brick); }
.back-to-top svg{ width:20px; height:20px; }

@media (max-width: 640px){
  .back-to-top{ right: 16px; bottom: 90px; width:42px; height:42px; }
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */
.rooms{ padding: 100px 0; background: var(--cream); }
.rooms__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.room-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-card__media{ height: 220px; overflow:hidden; }
.room-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.room-card:hover .room-card__media img{ transform: scale(1.06); }
.room-card__body{ padding: 26px; }
.room-card__body h3{ font-size: 21px; margin-bottom: 10px; }
.room-card__body > p{ color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.room-card__tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 20px; }
.room-card__tags li{
  font-size: 12px;
  font-weight:700;
  color: var(--navy-light);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 20px;
}
.room-card__cta{ font-weight:800; font-size:14px; color: var(--brick); }

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities{ padding: 100px 0; background: var(--navy); position:relative; overflow:hidden; }
.amenities::before{
  content:'';
  position:absolute;
  top:-120px; right:-120px;
  width: 420px; height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(176,141,87,0.16), transparent 70%);
}
.amenities .container{ position:relative; }
.amenities__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow:hidden;
}
.amenity{
  background: var(--navy-light);
  padding: 34px 26px;
  transition: background .25s ease;
}
.amenity:hover{ background: #274764; }
.amenity svg{ width:30px; height:30px; color: var(--gold); margin-bottom: 18px; }
.amenity h3{ color: var(--white); font-size: 17px; margin-bottom:8px; }
.amenity p{ color: rgba(255,255,255,0.65); font-size: 13.5px; line-height:1.5; }

/* ============================================================
   ATTRACTIONS SECTION
   ============================================================ */
.attractions{ padding: 100px 0; }
.attractions__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.attraction-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.attraction-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.attraction-card__art{
  height: 210px;
  display:flex; align-items:center; justify-content:center;
}
.attraction-card__art svg{ width: 96px; height:96px; stroke-width:2.4; }
.attraction-card__art--medical{ background: linear-gradient(135deg, #86342A, #A9483B); color:#fff; }
.attraction-card__art--shops{ background: linear-gradient(135deg, #B08D57, #C7A876); color:#fff; }
.attraction-card__art--dc{ background: linear-gradient(135deg, #13233A, #274764); color:#fff; }
.attraction-card__body{ background: var(--cream); padding: 26px; }
.attraction-card__body h3{ font-size:19px; margin-bottom:8px; }
.attraction-card__body p{ color: var(--muted); font-size:14.5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ padding: 100px 0; background: var(--cream); }
.gallery__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}
.gallery__item{ border-radius: var(--radius); overflow:hidden; }
.gallery__item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery__item:hover img{ transform: scale(1.08); }
.gallery__item--big{ grid-column: span 2; grid-row: span 2; }

/* ============================================================
   CONTACT CTA STRIP
   ============================================================ */
.contact-cta{ background: var(--brick); padding: 64px 0; }
.contact-cta__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap:wrap;
  gap: 24px;
}
.contact-cta h2{ color: var(--white); font-size: clamp(26px,3vw,34px); margin: 6px 0 10px; }
.contact-cta p{ color: rgba(255,255,255,0.85); font-size:15px; }
.contact-cta .btn--primary{ background: var(--navy); }
.contact-cta .btn--primary:hover{ background: var(--navy-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background: var(--navy); color: rgba(255,255,255,0.75); }
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding: 80px 0 56px;
}
.footer__col h4{
  color: var(--white);
  font-size: 15px;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight:800;
}
.footer__logo{ height: 46px; margin-bottom: 18px; /*filter: brightness(0) invert(1); */}
.footer__brand p{ font-size: 14px; line-height:1.7; margin-bottom: 22px; }
.footer__social{ display:flex; gap:14px; }
.footer__social a{
  width:36px; height:36px;
  border-radius:50%;
  border: 1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.footer__social svg{ width:15px; height:15px; fill: currentColor; stroke:none; }
.footer__social a:hover{ background: var(--brick); border-color: var(--brick); }

.footer__contact li{ display:flex; gap:12px; align-items:flex-start; font-size:14px; margin-bottom:16px; line-height:1.5; }
.footer__contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color: var(--gold); }
.footer__contact a:hover{ color: var(--gold); }

.footer__quicklinks-cols{ display:flex; gap: 36px; }
.footer__quicklinks-cols li{ margin-bottom: 14px; font-size:14px; }
.footer__quicklinks-cols a:hover{ color: var(--gold); }

.footer__policy li{
  font-size: 13.5px;
  line-height:1.6;
  margin-bottom: 14px;
  padding-left: 18px;
  position:relative;
}
.footer__policy li::before{
  content:'';
  position:absolute;
  left:0; top:7px;
  width:6px; height:6px;
  border-radius:50%;
  background: var(--gold);
}

.footer__bottom{ border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 8px;
  padding: 22px 24px;
  font-size: 13px;
}
.footer__owner{ color: rgba(255,255,255,0.55); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner{
  position:fixed;
  left: 20px; right:20px; bottom:20px;
  z-index: 1000;
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  flex-wrap:wrap;
  transform: translateY(140%);
  opacity:0;
  transition: transform .5s ease, opacity .5s ease;
}
.cookie-banner.is-visible{ transform: translateY(0); opacity:1; }
.cookie-banner p{ font-size: 13.5px; line-height:1.6; flex:1; min-width: 240px; }
.cookie-banner a{ color: var(--gold); text-decoration: underline; }
.cookie-banner__actions{ display:flex; gap:10px; flex-shrink:0; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px){
  .about__grid{ grid-template-columns: 1fr; gap: 48px; }
  .rooms__grid{ grid-template-columns: repeat(2, 1fr); }
  .amenities__grid{ grid-template-columns: repeat(2, 1fr); }
  .attractions__grid{ grid-template-columns: 1fr; max-width:480px; margin:0 auto; }
  .gallery__grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery__item--big{ grid-column: span 2; grid-row: span 1; height: 260px; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .booking__card{ flex-wrap:wrap; }
  .booking__field{ flex: 1 1 30%; padding: 10px 18px; }
  .booking__divider{ display:none; }
  .booking__submit{ flex:1 1 100%; margin: 10px 18px 0; }
}

@media (max-width: 860px){
  .nav{
    position:fixed;
    top: 124px;
    left:0; right:0;
    background: var(--white);
    flex-direction:column;
    gap:0;
    max-height: 0;
    overflow:hidden;
    transition: max-height .35s ease;
    box-shadow: var(--shadow-sm);
  }
  .nav.is-open{ max-height: 400px; }
  .nav a{ padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav a::after{ display:none; }
  .header__actions .btn--primary{ padding: 9px 16px; font-size: 12.5px; }
  .hamburger{ display:flex; }
  .header__inner{ height: 72px; }
  .logo img{ height:42px; }

  .rooms__grid{ grid-template-columns: 1fr; }
  .amenities__grid{ grid-template-columns: 1fr; }
  .amenities{ padding: 72px 0; }
  .about{ padding: 96px 0 64px; }
  .about__stripe{ display:none; }
  .contact-cta__inner{ text-align:center; justify-content:center; }
}

@media (max-width: 640px){
  .slider{ height: 100vh; min-height: 620px; }
  .hero__content{ align-items:center; text-align:center; }
  .hero__cta{ justify-content:center; }
  .slider__arrow{ width:40px; height:40px; }
  .slider__arrow--prev{ left:12px; }
  .slider__arrow--next{ right:12px; }

  .booking{ margin-top: -30px; }
  .booking__card{ padding: 18px; }
  .booking__field{ flex: 1 1 100%; }
  .booking__submit{ margin-top: 14px; }

  .section-head{ text-align:center; margin-left:auto; margin-right:auto; }
  .stripe-divider{ margin-left:auto; margin-right:auto; }

  .gallery__grid{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--big{ grid-column: span 1; height:220px; }

  .footer__grid{ grid-template-columns: 1fr; padding: 56px 0 40px; text-align:center; }
  .footer__social{ justify-content:center; }
  .footer__contact li{ justify-content:center; text-align:left; }
  .footer__quicklinks-cols{ justify-content:center; }
  .footer__policy li{ text-align:left; max-width: 320px; margin-left:auto; margin-right:auto; }
  .footer__bottom-inner{ justify-content:center; text-align:center; }

  .cookie-banner{ flex-direction:column; align-items:stretch; left:12px; right:12px; bottom:12px; }
  .cookie-banner__actions{ justify-content:flex-end; }
}

@media (max-width: 420px){
  .topbar__inner{ font-size: 12px; }
  .topbar__phone span{ display:inline; }
  h1{ font-size: 32px !important; }
  .header__actions{ gap: 10px; }
  .header__actions .btn--primary{ padding: 8px 12px; font-size: 11.5px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline: 2px solid var(--brick);
  outline-offset: 2px;
}


/* ============================================================
   INNER PAGES — STATIC RESPONSIVE BANNER & CONTENT
   ============================================================ */
.inner-hero{
  position:relative;
  min-height:clamp(300px, 42vw, 480px);
  overflow:hidden;
  background:var(--navy);
  display:flex;
  align-items:flex-end;
}
.inner-hero__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.inner-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(19,35,58,.86) 0%, rgba(19,35,58,.56) 52%, rgba(19,35,58,.24) 100%);
}
.inner-hero__content{
  position:relative;
  z-index:1;
  color:var(--white);
  padding-top:70px;
  padding-bottom:70px;
  width:100%;
}
.inner-hero__content h1{
  color:var(--white);
  font-size:clamp(36px, 5vw, 58px);
  line-height:1.08;
  margin-bottom:14px;
}
.inner-hero__content > p:last-child{
  max-width:650px;
  font-size:17px;
  color:var(--white);
}
.inner-section{ padding:90px 0; }
.inner-intro{ max-width:100%; margin-bottom:46px; }
.inner-intro h2, .content-split__copy h2, .location-details h2, .contact-card h2, .reservation-panel h2{
  font-size:clamp(28px, 3.4vw, 42px);
  line-height:1.16;
  margin-bottom:18px;
}
.inner-intro > p:last-child, .content-split__copy p, .location-details, .contact-card, .reservation-panel > div > p{
  color:var(--muted);
}
.feature-grid{ display:grid; gap:24px; }
.feature-grid--three{ grid-template-columns:repeat(3, 1fr); }
.feature-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow-sm);
}
.feature-card__icon{
  display:inline-flex;
  min-width:48px;
  height:48px;
  padding:0 10px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--cream);
  color:var(--brick-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  margin-bottom:18px;
}
.feature-card h3{ font-size:21px; margin-bottom:10px; }
.feature-card p{ color:var(--muted); font-size:14.5px; }
.content-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
  margin-top:70px;
  background:var(--cream);
  border-radius:var(--radius);
  overflow:hidden;
}
.content-split__media{ min-height:420px; }
.content-split__media img{ width:100%; height:100%; min-height:420px; object-fit:cover; }
.content-split__copy{ padding:44px 50px 44px 0; }
.content-split__copy p{ margin-bottom:24px; }
.page-gap-top{ margin-top:44px; }
.btn--outline{ border-color:var(--brick); color:var(--brick-dark); background:var(--white); }
.btn--outline:hover{ background:var(--cream); }
.reservation-panel{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:54px;
  background:var(--cream);
  border-left:5px solid var(--brick);
  border-radius:var(--radius);
  padding:50px;
}
.reservation-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.reservation-panel__facts{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.reservation-panel__facts div{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  display:flex;
  flex-direction:column;
}
.reservation-panel__facts strong{ color:var(--navy); font-family:var(--font-display); font-size:21px; }
.reservation-panel__facts span{ color:var(--muted); font-size:13px; }
.destination-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.destination-card{
  background:var(--cream);
  border-radius:var(--radius);
  padding:32px;
  border-top:4px solid var(--brick);
}
.destination-card__number{ font-family:var(--font-display); color:var(--gold); font-size:30px; font-weight:700; margin-bottom:14px; }
.destination-card h3{ font-size:22px; margin-bottom:10px; }
.destination-card p{ color:var(--muted); font-size:14.5px; }
.location-layout, .contact-layout{ display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:start; }
.map-frame{ min-height:500px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.map-frame iframe{ width:100%; height:500px; border:0; display:block; }
.location-details{ padding-top:20px; }
.location-details address, .contact-card address{ font-style:normal; font-size:17px; color:var(--navy); margin:20px 0; }
.detail-list{ margin:24px 0 30px; }
.detail-list li{ padding:12px 0; border-bottom:1px solid var(--line); }
.detail-list a, .contact-card a{ color:var(--brick-dark); text-decoration:underline; font-weight:700; }
.contact-card{
  background:var(--cream);
  border-radius:var(--radius);
  padding:40px;
}
.contact-card > p{ margin-bottom:12px; }
.contact-note{ margin-top:25px; padding-top:20px; border-top:1px solid var(--line); }
.contact-form{
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  border-radius:var(--radius);
  padding:36px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-field label{ color:var(--navy); font-weight:800; font-size:13px; }
.form-field input, .form-field textarea{
  width:100%;
  border:1px solid #AAB2BC;
  border-radius:4px;
  padding:12px 13px;
  font:inherit;
  color:var(--ink);
  background:var(--white);
}
.form-field textarea{ resize:vertical; }
.inner-gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.inner-gallery figure{ margin:0; background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.inner-gallery img{ width:100%; height:250px; object-fit:cover; }
.inner-gallery figcaption{ padding:14px 16px; color:var(--navy); font-weight:800; font-size:14px; }
.faq-wrap{ max-width:900px; }
.faq-wrap details{ border:1px solid var(--line); border-radius:var(--radius); margin-bottom:14px; background:var(--white); }
.faq-wrap summary{ cursor:pointer; color:var(--navy); font-weight:800; padding:20px 24px; }
.faq-wrap details p{ padding:0 24px 22px; color:var(--muted); }
.sitemap-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.sitemap-grid > div{ background:var(--cream); padding:34px; border-radius:var(--radius); }
.sitemap-grid h2{ font-size:24px; margin-bottom:18px; }
.sitemap-grid li{ margin-bottom:0px; }
.sitemap-grid a{ color:var(--brick-dark); font-weight:700; text-decoration:none; }
.inner-contact-cta{ margin-top:0; }
.nav a[aria-current="page"]::after{ transform:scaleX(1); }

@media (max-width:1024px){
  .feature-grid--three, .destination-grid, .inner-gallery{ grid-template-columns:repeat(2,1fr); }
  .content-split, .location-layout, .contact-layout, .reservation-panel{ grid-template-columns:1fr; }
  .content-split__copy{ padding:0 36px 40px; }
  .reservation-panel__facts{ max-width:620px; }
  .sitemap-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .inner-hero{ min-height:330px; }
  .inner-hero__overlay{ background:rgba(19,35,58,.68); }
  .inner-hero__content{ padding-top:54px; padding-bottom:54px; text-align:center; }
  .inner-section{ padding:64px 0; }
  .feature-grid--three, .destination-grid, .inner-gallery, .sitemap-grid, .form-row{ grid-template-columns:1fr; }
  .feature-card, .destination-card, .contact-card, .contact-form{ padding:26px; }
  .reservation-panel{ padding:28px; gap:30px; }
  .reservation-panel__facts{ grid-template-columns:1fr; }
  .content-split{ gap:30px; }
  .content-split__media, .content-split__media img{ min-height:280px; }
  .content-split__copy{ padding:0 24px 30px; }
  .map-frame, .map-frame iframe{ min-height:360px; height:360px; }
  .inner-gallery img{ height:230px; }
}


/* ============================================================
   PHOTO GALLERY LIGHTBOX — ZOOM / NEXT / PREVIOUS
   ============================================================ */
.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
.gallery-open{
  position:relative;
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  overflow:hidden;
  cursor:zoom-in;
}
.gallery-open::after{
  content:'View larger';
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -40%);
  padding:9px 15px;
  border-radius:30px;
  background:rgba(19,35,58,.9);
  color:var(--white);
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  opacity:0;
  transition:opacity .25s ease, transform .25s ease;
  pointer-events:none;
}
.gallery-open:hover::after,
.gallery-open:focus-visible::after{
  opacity:1;
  transform:translate(-50%, -50%);
}
.gallery-open img{
  transition:transform .4s ease, filter .25s ease;
}
.gallery-open:hover img,
.gallery-open:focus-visible img{
  transform:scale(1.035);
  filter:brightness(.82);
}
body.lightbox-open{ overflow:hidden; }
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.gallery-lightbox[hidden]{ display:none; }
.gallery-lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,12,22,.94);
}
.gallery-lightbox__dialog{
  position:relative;
  z-index:1;
  width:min(1180px, 100%);
  height:min(92vh, 900px);
  display:grid;
  grid-template-rows:auto minmax(0,1fr) auto;
  background:#0D1826;
  border:1px solid rgba(255,255,255,.24);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}
.gallery-lightbox__toolbar{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 14px;
  background:#13233A;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.gallery-lightbox__zoom-controls{ display:flex; gap:8px; }
.gallery-lightbox__control,
.gallery-lightbox__nav{
  border:1px solid rgba(255,255,255,.48);
  background:#1E3A57;
  color:#FFFFFF;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.gallery-lightbox__control{
  min-width:42px;
  height:40px;
  padding:0 12px;
  border-radius:5px;
}
.gallery-lightbox__control:hover,
.gallery-lightbox__nav:hover{
  background:#86342A;
  border-color:#FFFFFF;
}
.gallery-lightbox__control:disabled{
  opacity:.48;
  cursor:not-allowed;
}
.gallery-lightbox__control svg{ width:20px; height:20px; }
.gallery-lightbox__close{ margin-left:auto; }
.gallery-lightbox__stage{
  position:relative;
  min-height:0;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 78px;
  background:#09111C;
  touch-action:none;
  user-select:none;
}
.gallery-lightbox__image{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transform:translate3d(0,0,0) scale(1);
  transform-origin:center center;
  transition:transform .18s ease;
  will-change:transform;
  cursor:zoom-in;
  -webkit-user-drag:none;
}
.gallery-lightbox__image.is-zoomed{ cursor:grab; }
.gallery-lightbox__image.is-dragging{
  cursor:grabbing;
  transition:none;
}
.gallery-lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(19,35,58,.9);
}
.gallery-lightbox__nav:hover{ transform:translateY(-50%) scale(1.04); }
.gallery-lightbox__nav svg{ width:24px; height:24px; }
.gallery-lightbox__nav--prev{ left:16px; }
.gallery-lightbox__nav--next{ right:16px; }
.gallery-lightbox__footer{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 20px;
  background:#13233A;
  border-top:1px solid rgba(255,255,255,.16);
  color:#FFFFFF;
}
.gallery-lightbox__footer p{
  color:#FFFFFF;
  font-weight:700;
}
.gallery-lightbox__footer span{
  color:#FFFFFF;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}
@media (max-width:640px){
  .gallery-lightbox{ padding:0; }
  .gallery-lightbox__dialog{
    width:100%;
    height:100dvh;
    max-height:none;
    border:0;
    border-radius:0;
  }
  .gallery-lightbox__toolbar{ min-height:56px; padding:8px 10px; }
  .gallery-lightbox__control{ min-width:40px; height:38px; padding:0 10px; }
  .gallery-lightbox__stage{ padding:18px 50px; }
  .gallery-lightbox__nav{ width:42px; height:42px; }
  .gallery-lightbox__nav--prev{ left:6px; }
  .gallery-lightbox__nav--next{ right:6px; }
  .gallery-lightbox__footer{ min-height:62px; padding:12px 14px; }
  .gallery-lightbox__footer p{ font-size:13px; }
  .gallery-open::after{ display:none; }
}
/* Sitemap Bullet Menu */

.sitemap-menu{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}


.sitemap-menu li{
    position:relative;
    padding-left:22px;
}


.sitemap-menu li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    background:var(--brick);
    border-radius:50%;
}


.sitemap-menu a{
    color:var(--ink);
    font-size:17px;
    font-weight:600;
    transition:all .25s ease;
}


.sitemap-menu a:hover{
    color:var(--brick);
    padding-left:5px;
}


.footer__contact
{
color: #fff;	
}

.footer__contact a
{
color: #fff;	
}



.cgs2
{
color: #fff;	
}


