/* ============================================
   McGrath Ranch — Stylesheet v2
   Pearsall, Texas
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Oswald:wght@400;500;600;700&family=Lato:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --dark:          #1E2810;
  --dark-mid:      #252F13;
  --dark-card:     #2B3618;
  --dark-card2:    #31401C;
  --orange:        #C4622D;
  --orange-hover:  #D4763F;
  --orange-light:  #E08050;
  --green:         #4A6230;
  --green-light:   #5C7840;
  --cream:         #F2ECD8;
  --cream-muted:   #C4B89A;
  --text-muted:    #7A7260;
  --border:        rgba(196,98,45,0.3);
  --border-subtle: rgba(255,255,255,0.07);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', Arial, sans-serif;
  --font-display:  'Oswald', Arial, sans-serif;
  --nav-height:    80px;
  --ease:          0.3s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  background-image: linear-gradient(160deg, #1E2810 0%, #182209 40%, #1C2A0E 70%, #141E09 100%);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.1; font-weight: 900; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.9rem); }
h4 { font-size: 0.95rem; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.12em; text-transform: uppercase; }
p { color: var(--cream-muted); max-width: 65ch; font-weight: 400; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 4px 12px;
  margin-bottom: 1rem;
}
.section-divider { width: 60px; height: 3px; background: var(--orange); margin: 1rem 0; }
.section-divider.center { margin: 1rem auto; }

/* ── Scroll animations ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay { transition-delay: 0.15s; }
.fade-in-delay2 { transition-delay: 0.3s; }
.fade-in-delay3 { transition-delay: 0.45s; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(196,98,45,0.4); }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--dark); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ── Navigation ────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
#navbar.scrolled {
  background: rgba(17,22,8,0.96);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.hero-logo {
  position: absolute;
  top: calc(var(--nav-height) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55));
}
.hero-logo img { height: 110px; width: auto; display: block; }
.nav-left, .nav-right { display: flex; align-items: center; flex: 1; }
.nav-left { justify-content: space-evenly; padding-right: 1rem; }
.nav-right { justify-content: space-evenly; padding-left: 1rem; }
.nav-left a, .nav-right a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  transition: color var(--ease), opacity var(--ease);
}
.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active { color: var(--orange); opacity: 1; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  opacity: 1 !important;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--cream); transition: var(--ease); border-radius: 2px; }

/* ── Hero ──────────────────────────────────── */
.hero { position: relative; width: 100%; background: var(--dark); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-full { min-height: 100vh; }
.hero-short { min-height: 65vh; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,16,6,0.95) 0%,
    rgba(11,16,6,0.55) 45%,
    rgba(11,16,6,0.25) 100%
  );
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 2rem; max-width: 960px; }
.hero-content h1 { color: #fff; text-shadow: 0 3px 30px rgba(0,0,0,0.7); margin-bottom: 0.5rem; }
.hero-content h1 em { font-style: italic; color: var(--orange-light); }
.hero-content p { color: rgba(242,236,216,0.88); font-size: 1.2rem; margin: 1.25rem auto 2.25rem; max-width: 75ch; font-weight: 400; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(196,98,45,0.85);
  border: 1px solid rgba(196,98,45,0.5);
  padding: 0.45rem 1.4rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after { content: ''; display: block; width: 1px; height: 50px; background: linear-gradient(to bottom, var(--orange), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)} }

/* ── Sections ──────────────────────────────── */
.section { padding: 7rem 3rem; }
.section-alt { background: var(--dark-mid); }
.section-dark { background: var(--dark); }
.section-green { background: var(--green); }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ── Two-col ───────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Cards ─────────────────────────────────── */
.card { background: var(--dark-card); border: 1px solid var(--border-subtle); overflow: hidden; transition: var(--ease); }
.card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.5); }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card-body p { font-size: 0.92rem; }

/* ── Experience grid (full-bleed) ──────────── */
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.03); }
.experience-item { position: relative; overflow: hidden; aspect-ratio: 16/9; cursor: pointer; display: block; text-decoration: none; color: inherit; }
.experience-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.experience-item:hover img { transform: scale(1.1); }
.experience-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,16,6,0.94) 0%, rgba(11,16,6,0.15) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
}
.experience-overlay h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.3rem; font-weight: 900; }
.experience-overlay p { font-size: 0.85rem; color: rgba(242,236,216,0.78); max-width: 100%; opacity: 0; transform: translateY(10px); transition: var(--ease); font-weight: 400; }
.experience-item:hover .experience-overlay p { opacity: 1; transform: translateY(0); }
.experience-tag { position: absolute; top: 1.1rem; left: 1.1rem; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; background: var(--orange); padding: 0.3rem 0.85rem; z-index: 2; }

/* ── Orange accent bar ─────────────────────── */
.orange-bar { width: 100%; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-hover), var(--green)); }

/* ── Photo grid ────────────────────────────── */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.photo-grid-item { overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.photo-grid-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-grid-item::after { content: ''; position: absolute; inset: 0; background: rgba(11,16,6,0); transition: var(--ease); pointer-events: none; }
.photo-grid-item:hover::after { background: rgba(196,98,45,0.1); }

/* ── Species grid ──────────────────────────── */
.species-grid-native {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.03);
}
.species-item-native {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-card);
}
.species-item-native img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.9); }
.species-item-native:hover img { transform: scale(1.07); filter: brightness(1); }

.species-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.03); }
.species-item { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--dark-card); }
.species-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.88); }
.species-item:hover img { transform: scale(1.07); filter: brightness(1); }
.species-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(11,16,6,0.97) 0%, transparent 100%);
}
.species-label h4 { font-size: 0.85rem; color: #fff; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.species-label span { font-size: 0.72rem; color: var(--cream-muted); font-style: italic; font-family: var(--font-serif); font-weight: 400; }
.species-placeholder { width: 100%; height: 100%; min-height: 220px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 2.8rem; background: var(--dark-card); }

/* ── Stats ─────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.75rem 2rem; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; background: var(--dark-card2); position: relative; overflow: hidden; }
.stat-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.4s ease; }
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-family: var(--font-display); font-size: 0.73rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-muted); }

/* ── CTA banner ────────────────────────────── */
.cta-banner { position: relative; padding: 8rem 3rem; text-align: center; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.28); }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,16,6,0.3), rgba(196,98,45,0.12), rgba(11,16,6,0.3)); }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: var(--cream-muted); margin: 1rem auto 2.25rem; font-weight: 400; }

/* ── Accordion ─────────────────────────────── */
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 0; background: none; border: none; color: var(--cream); font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; text-align: left; cursor: pointer; transition: var(--ease); max-width: 860px; margin: 0 auto; }
.accordion-trigger:hover, .accordion-trigger.open { color: var(--orange); }
.accordion-icon { width: 26px; height: 26px; flex-shrink: 0; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: transform var(--ease); color: var(--orange); font-weight: 700; }
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 1.6rem; max-width: 860px; margin: 0 auto; }
.accordion-body.open { display: block; }
.accordion-body p { max-width: 100%; font-size: 0.96rem; font-weight: 400; }

/* ── Contact form ──────────────────────────── */
.form-group { margin-bottom: 1.35rem; }
.form-group label { display: block; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.1); color: var(--cream); padding: 0.9rem 1rem; font-family: var(--font-sans); font-size: 0.96rem; font-weight: 400; transition: var(--ease); outline: none; -webkit-appearance: none; border-radius: 0; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); background: var(--dark-card2); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }

/* ── Amenities ─────────────────────────────── */
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.amenity-item { display: flex; align-items: flex-start; gap: 0.85rem; padding: 1.1rem; background: var(--dark-card); border-left: 3px solid var(--orange); transition: var(--ease); }
.amenity-item:hover { background: var(--dark-card2); transform: translateX(3px); }
.amenity-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.amenity-text { font-size: 0.9rem; color: var(--cream-muted); font-weight: 400; }
.amenity-text strong { color: var(--cream); display: block; font-size: 0.95rem; margin-bottom: 0.1rem; font-weight: 700; }

/* ── Quote pullout ─────────────────────────── */
.pullquote { border-left: 4px solid var(--orange); padding: 1.25rem 1.75rem; background: var(--dark-card); margin: 2rem 0; }
.pullquote p { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--cream); max-width: 100%; font-weight: 700; }
.pullquote cite { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); font-style: normal; margin-top: 0.5rem; display: block; font-weight: 600; }

/* ── Footer ────────────────────────────────── */
footer { background: #141A08; border-top: 3px solid var(--orange); padding: 3rem 3rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-logo img { height: 90px; width: auto; margin-bottom: 0.75rem; }
.footer-logo p { font-size: 0.88rem; max-width: 28ch; font-weight: 400; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.22em; color: var(--orange); margin-bottom: 1.35rem; font-weight: 700; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--cream-muted); transition: var(--ease); font-weight: 400; }
.footer-col ul li a:hover { color: var(--cream); padding-left: 4px; }
.footer-col address { font-style: normal; font-size: 0.9rem; color: var(--cream-muted); line-height: 2; font-weight: 400; }
.footer-col address a { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); max-width: 100%; font-weight: 400; }

/* ── Lightbox ──────────────────────────────── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(30,40,16,0.97); align-items: center; justify-content: center; padding: 2rem; }
#lightbox.open { display: flex; }
#lightbox img { max-height: 90vh; max-width: 90vw; object-fit: contain; box-shadow: 0 0 80px rgba(196,98,45,0.2); }
#lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); font-size: 2.5rem; cursor: pointer; line-height: 1; }
#lightbox-prev, #lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--orange); font-size: 4rem; cursor: pointer; line-height: 1; padding: 0 1rem; user-select: none; opacity: 0.7; transition: opacity 0.2s; z-index: 2001; }
#lightbox-prev:hover, #lightbox-next:hover { opacity: 1; }
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }

/* ── Utilities ─────────────────────────────── */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.orange{color:var(--orange)}.cream{color:var(--cream)}.bold{font-weight:700}

/* ── Responsive ────────────────────────────── */

.card-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.card-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; max-width:900px; margin:0 auto; }
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .experience-grid { grid-template-columns: 1fr; }
  .species-grid { grid-template-columns: repeat(3, 1fr); }
  .species-grid-native { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.25rem; }
  .footer-logo p { max-width: 100%; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  #navbar { padding: 0 1.5rem; }
  #navbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; height: auto; min-height: var(--nav-height); }
  .hero-logo img { height: 90px; }
  .nav-toggle { order: 2; display: flex; height: var(--nav-height); align-items: center; }
  .nav-left, .nav-right {
    display: none;
    flex-direction: column;
    flex: 0 0 100%;
    gap: 0;
    background: rgba(17,22,8,0.98);
    padding: 0.5rem 0;
  }
  .nav-left { order: 3; }
  .nav-right { order: 4; border-top: 1px solid rgba(255,255,255,0.06); }
  #navbar.open .nav-left, #navbar.open .nav-right { display: flex; }
  .nav-left a, .nav-right a { padding: 0.9rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin: 0.5rem 1.5rem 0.25rem; text-align: center; }
  .section { padding: 4.5rem 1.5rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .species-grid-native { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .amenity-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-logo { grid-column: 1 / -1; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-banner { padding: 5rem 1.5rem; }
  #lightbox-prev, #lightbox-next { font-size: 2.5rem; padding: 0 0.5rem; }
  #lightbox-prev { left: 0.25rem; }
  #lightbox-next { right: 0.25rem; }
}
.photo-grid-bright .photo-grid-item img { filter: none; }

@media (max-width: 768px) { .sleeping-grid { grid-template-columns: 1fr !important; } }
