/* ============================================================
   Studios Betty — Kinira, Thasos
   Palette: stone/paper base, olive + terracotta + sea accents,
   with a gingham check motif borrowed from the balcony tablecloths.
   ============================================================ */

:root{
  --ink:        #2A2622;
  --ink-soft:   #55504A;
  --stone:      #F3ECDD;
  --paper:      #FFFDF8;
  --olive:      #5C6B45;
  --olive-dark: #333C24;
  --terracotta: #C1502E;
  --terracotta-deep:#9C3D22;
  --sea:        #1F4E5C;
  --sea-deep:   #163A45;
  --wheat:      #E8B84B;

  --display: "Alegreya", Georgia, serif;
  --body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 3px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

h1, h2, h3{
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p{ margin: 0 0 1em; color: var(--ink-soft); }

a{ color: inherit; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 999;
}
.skip-link:focus{ left: 12px; top: 12px; }

:focus-visible{
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.section-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow{
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--terracotta);
  margin: 0 0 0.9em;
}

.section-head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-intro{ max-width: 640px; font-size: 1.05rem; }

/* ---------- gingham check motif ---------- */
.hero-fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(110px, 14vw, 150px);
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--stone) 100%);
  z-index: 2;
  pointer-events: none;
}

.check-pin{
  position: absolute;
  top: -12px; left: 32px;
  width: 44px; height: 44px;
  background-image:
    linear-gradient(45deg, var(--sea) 25%, transparent 25%, transparent 75%, var(--sea) 75%),
    linear-gradient(45deg, var(--sea) 25%, transparent 25%, transparent 75%, var(--sea) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  background-color: var(--wheat);
  transform: rotate(-6deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--terracotta);
  color: var(--paper);
}
.btn-primary:hover{ background: var(--terracotta-deep); }
.btn-ghost{
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.14); }
.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--paper); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,236,221,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(42,38,34,0.08);
}
.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark{
  color: var(--terracotta);
  font-size: 1.3rem;
}
.brand-name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 2em;
  font-size: 0.95rem;
  font-weight: 600;
}
.main-nav a{
  text-decoration: none;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover{ color: var(--ink); border-color: var(--terracotta); }
.main-nav a.is-current{ color: var(--terracotta); border-color: var(--terracotta); }
.nav-phone{
  color: var(--ink-soft) !important;
  font-weight: 700;
  white-space: nowrap;
}
.nav-phone:hover{ color: var(--terracotta) !important; }
.nav-cta{
  background: var(--terracotta);
  color: var(--paper) !important;
  padding: 0.55em 1.2em !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-cta:hover{ background: var(--terracotta-deep) !important; }

.header-tools{ display: flex; align-items: center; gap: 14px; }

.lang-switch{
  display: inline-block;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 5px 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.lang-switch:hover{ border-color: var(--terracotta); color: var(--terracotta); }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.hero-media{
  position: absolute;
  inset: 0;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after{
  content: "";
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,58,69,0.15) 0%, rgba(22,58,69,0.15) 40%, rgba(20,20,16,0.78) 100%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 64px;
  width: 100%;
}
.hero .eyebrow{ color: var(--wheat); }
.hero h1{
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  color: var(--paper);
  max-width: 15ch;
  font-weight: 700;
}
.hero-sub{
  color: rgba(255,253,248,0.88);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- page-hero: shorter variant for interior pages ---------- */
.page-hero{
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.page-hero .hero-media{ position: absolute; inset: 0; }
.page-hero .hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,16,0.35) 0%, rgba(20,20,16,0.72) 100%);
  z-index: 1;
}
.page-hero .hero-content{
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 48px;
  width: 100%;
}
.page-hero h1{
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: var(--paper);
  margin: 0;
}
.page-hero .eyebrow{ color: var(--wheat); }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ padding: clamp(56px, 9vw, 108px) 0; }
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-text h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.about-text p{ font-size: 1.05rem; }
.about-note{
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sea-deep);
  margin-top: 1.4em;
}
/* Editorial offset card: landscape photo matted in cream,
   floating over an offset accent panel (dimensional layering). */
.about-media{
  position: relative;
  padding: 22px 22px 0 0;
}
.about-media::before{
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 68%;
  height: 72%;
  background: rgba(232,184,75,0.30);
}
.about-img-main{
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 400px;
  object-fit: cover;
  border: 10px solid var(--paper);
  box-shadow: 0 20px 40px rgba(42,38,34,0.14);
}
.about-img-small{
  position: absolute;
  width: 34%;
  aspect-ratio: 1/1;
  object-fit: cover;
  bottom: -24px;
  left: -20px;
  border: 6px solid var(--paper);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Same matted treatment for standalone teaser photos (e.g. Home location) */
.teaser-photo{
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 400px;
  object-fit: cover;
  border: 10px solid var(--paper);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* ============================================================
   STUDIOS
   ============================================================ */
.studios{ padding: clamp(56px, 9vw, 108px) 0; background: var(--paper); }
.section-head{ margin-bottom: clamp(32px, 5vw, 56px); }

.studio-list{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}
.studio-row{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.studio-row.reverse .studio-gallery{ order: 2; }
.studio-row.reverse .studio-info{ order: 1; }

/* ---------- per-studio photo slider ---------- */
.studio-gallery{
  position: relative;
  overflow: hidden;
}
.studio-img{
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  overflow: hidden;
}
.studio-img img{
  width: 100%;
  aspect-ratio: 3/2;
  max-height: 420px;
  object-fit: cover;
  transition: transform .5s ease, opacity .25s ease;
}
.studio-img:hover img{ transform: scale(1.03); }

.gal-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,253,248,0.88);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background .15s ease;
}
.gal-nav:hover{ background: var(--paper); }
.gal-prev{ left: 12px; }
.gal-next{ right: 12px; }

.gal-dots{
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
.gal-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,253,248,0.55);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.gal-dots button.is-active{
  background: var(--paper);
  transform: scale(1.2);
}

/* ---------- capacity/bed icons row ---------- */
.studio-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin: 0 0 1em;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.studio-meta span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}
.studio-meta svg{
  width: 20px; height: 20px;
  flex: none;
  color: var(--terracotta);
}

.tag{
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  margin-bottom: 0.9em;
  color: var(--paper);
}
.tag-sea{ background: var(--sea); }
.tag-mountain{ background: var(--olive); }
.tag-garden{ background: var(--terracotta); }

.studio-info h3{ font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.studio-info p{ font-size: 1rem; }

.studio-link{
  background: none;
  border: none;
  border-bottom: 2px solid var(--terracotta);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0 0 2px;
  cursor: pointer;
}
.studio-link:hover{ color: var(--terracotta); }

/* ---------- reusable "read more" link ---------- */
.more-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 2px;
}
.more-link:hover{ color: var(--terracotta); }
.more-link .arrow{ transition: transform .15s ease; }
.more-link:hover .arrow{ transform: translateX(3px); }

/* ---------- section header with a "more" link on the same row ---------- */
.section-head-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.section-head-row .section-head{ margin-bottom: 0; }

/* ---------- compact room teaser cards (used on Home) ---------- */
.room-teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.room-teaser-card{
  display: block;
  text-decoration: none;
  color: inherit;
}
.room-teaser-card img{
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 14px;
  transition: transform .5s ease;
}
.room-teaser-card:hover img{ transform: scale(1.04); }
.room-teaser-card h3{
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}
.room-teaser-card p{ font-size: 0.92rem; margin-bottom: 0; }

/* ---------- condensed amenity strip (used on Home) ---------- */
.amenity-strip{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.amenity-strip li{ display: flex; flex-direction: column; align-items: center; gap: 10px; }
.amenity-strip .amenity-icon{ width: 30px; height: 30px; color: var(--terracotta); }
.amenity-strip span{ font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities{
  padding: clamp(56px, 9vw, 108px) 0;
}
.amenities-grid{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 72px);
}
.amenities-head h2{ font-size: clamp(1.8rem, 3.2vw, 2.4rem); }

.amenity-list{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.amenity-list li{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.amenity-icon{
  width: 30px; height: 30px;
  flex: none;
  color: var(--terracotta);
  margin-top: 2px;
}
.amenity-list h3{
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.amenity-list p{ font-size: 0.92rem; margin-bottom: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{ padding: clamp(56px, 9vw, 108px) 0; background: var(--paper); }
.reviews .section-head{ margin-bottom: clamp(28px, 4vw, 44px); }

.review-scores{
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.score-badge{
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid rgba(42,38,34,0.1);
  padding: 14px 22px;
}
.score-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--sea-deep);
  line-height: 1;
}
.score-text{ font-size: 0.85rem; color: var(--ink-soft); line-height: 1.4; }
.score-text strong{ color: var(--ink); }

.review-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.review-grid blockquote{
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--wheat);
}
.review-grid p{
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0.5em;
}
.review-grid cite{
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--olive);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery{ padding: clamp(56px, 9vw, 108px) 0; }
.gallery .section-head{ margin-bottom: 28px; }
.filmstrip{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 var(--pad) 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) transparent;
}
.filmstrip img{
  height: clamp(180px, 24vw, 300px);
  width: auto;
  flex: none;
  object-fit: cover;
  scroll-snap-align: start;
}
.filmstrip::-webkit-scrollbar{ height: 8px; }
.filmstrip::-webkit-scrollbar-thumb{ background: var(--terracotta); border-radius: 4px; }
.filmstrip::-webkit-scrollbar-track{ background: transparent; }

/* ============================================================
   LOCATION
   ============================================================ */
.location{
  padding: clamp(56px, 9vw, 108px) 0;
  background: var(--sea-deep);
  color: var(--paper);
}
.location-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}
.location .eyebrow{ color: var(--wheat); }
.location h2{ color: var(--paper); font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.location p{ color: rgba(255,253,248,0.85); }
.location-address{
  font-weight: 700;
  color: var(--paper) !important;
  letter-spacing: 0.02em;
  margin-bottom: 1.2em;
}
.location-link{
  display: inline-block;
  color: var(--wheat);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid var(--wheat);
}
.location-link:hover{ color: var(--paper); border-color: var(--paper); }
.location-map iframe{
  width: 100%;
  height: 360px;
  border: 0;
  filter: sepia(8%) saturate(88%);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ padding: clamp(56px, 9vw, 108px) 0; }
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
}
.contact-intro h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.contact-details{
  list-style: none;
  margin: 2em 0 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact-details li{ display: flex; flex-direction: column; gap: 2px; }
.contact-label{
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
}
.contact-details a{
  font-family: var(--display);
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--terracotta);
}

.booking-link{ margin-top: 2em; }

.contact-form{
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(42,38,34,0.1);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(42,38,34,0.07);
}
.contact-form label{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: -8px;
}
.contact-form input,
.contact-form textarea{
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.75em 0.9em;
  border: 1.5px solid rgba(42,38,34,0.2);
  border-radius: var(--radius);
  background: var(--stone);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--terracotta);
}
.contact-form .btn{ margin-top: 8px; align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--olive-dark);
  color: rgba(255,253,248,0.75);
  padding: 36px 0;
}
.footer-nav{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255,253,248,0.12);
}
.footer-nav a{
  color: rgba(255,253,248,0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-nav a:hover{ color: var(--wheat); }
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner .brand-mark{ color: var(--wheat); }
.footer-inner .brand-name{
  font-family: var(--display);
  font-weight: 700;
  color: var(--paper);
  margin-left: 0.4em;
}
.site-footer p{ margin: 0; font-size: 0.88rem; color: rgba(255,253,248,0.6); }
.footer-licence{ opacity: 0.7; font-size: 0.85em; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.is-open{ display: flex; }
.lightbox-img{
  max-width: min(90vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close{
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,253,248,0.12);
  border: none;
  color: var(--paper);
  font-size: 2.4rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav:hover{ background: rgba(255,253,248,0.22); }
.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--stone);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--pad) 20px;
    border-bottom: 1px solid rgba(42,38,34,0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a{
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42,38,34,0.08);
  }
  .nav-cta{ margin-top: 10px; text-align: center; }
  .menu-toggle{ display: flex; }
  .menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2){ opacity: 0; }
  .menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .about-grid,
  .amenities-grid,
  .location-grid,
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .about-media{ order: -1; }
  .about-img-small{ width: 38%; left: 16px; bottom: -20px; }

  .studio-row,
  .studio-row.reverse{
    grid-template-columns: 1fr;
  }
  .studio-row .studio-gallery,
  .studio-row.reverse .studio-gallery{ order: 1; }
  .studio-row .studio-info,
  .studio-row.reverse .studio-info{ order: 2; }

  .amenity-list{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }

  .room-teaser-grid{ grid-template-columns: 1fr 1fr; }
  .amenity-strip{ grid-template-columns: repeat(3, 1fr); }
  .nav-phone{ order: 10; }
}

@media (max-width: 560px){
  .hero{ min-height: 100vh; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ text-align: center; }
  .about-img-small{ display: none; }
  .lightbox{ padding: 16px; }
  .lightbox-nav{ width: 44px; height: 44px; font-size: 2rem; }
  .room-teaser-grid{ grid-template-columns: 1fr; }
  .amenity-strip{ grid-template-columns: repeat(2, 1fr); }
  .page-hero{ min-height: 34vh; }
}
