/* Mountain River Sod — Design System */

:root {
  --green-900: #1e3a1e;
  --green-800: #2d5a2d;
  --green-700: #3b7239;
  --green-600: #4a8c43;
  --green-500: #6cba3f;
  --green-400: #8ad05f;
  --green-50:  #f3f9ef;
  --cream:     #faf7f0;
  --sand:      #f1ece1;
  --ink:       #1a1f1a;
  --slate:     #4a534a;
  --muted:     #6b7568;
  --line:      #e3e6df;
  --white:     #ffffff;
  --gold:      #c9a449;
  --shadow-sm: 0 1px 2px rgba(15,30,15,.06);
  --shadow:    0 8px 24px rgba(15,30,15,.08);
  --shadow-lg: 0 20px 60px rgba(15,30,15,.18);
  --radius:    14px;
  --radius-lg: 22px;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --maxw:      1200px;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; -webkit-user-drag: none; user-select: none; pointer-events: auto; }
a { color: var(--green-800); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-600); }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--green-900); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.01em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--slate); }
ul, ol { padding-left: 1.25em; color: var(--slate); }
li { margin-bottom: .4em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--green { background: linear-gradient(180deg, var(--green-800) 0%, var(--green-900) 100%); color: #eef3ec; }
.section--green h1, .section--green h2, .section--green h3 { color: var(--white); }
.section--green p, .section--green li { color: #d6e2d4; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: var(--green-50);
  border-radius: 999px;
}
.section--green .eyebrow { background: rgba(255,255,255,.1); color: var(--green-400); }

.lead { font-size: 1.2rem; color: var(--slate); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px; gap: 24px; transition: height .28s var(--ease);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 84px; width: auto; max-width: 100%; transition: height .28s var(--ease); }
/* Shrink the header once the page is scrolled */
.site-header.is-scrolled .nav { height: 68px; }
.site-header.is-scrolled .nav__logo img { height: 52px; }
.nav__links {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav__links li { margin: 0; position: relative; }
.nav__links a {
  display: inline-block; padding: 10px 14px; color: var(--ink); font-weight: 500; font-size: .96rem;
  border-radius: 8px;
}
.nav__links a:hover { background: var(--green-50); color: var(--green-800); }
.nav__links .has-sub > a::after {
  content: '▾'; margin-left: 6px; font-size: .7em; opacity: .6;
}
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; list-style: none; margin: 8px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s var(--ease);
}
.nav__links li:hover > .nav__sub,
.nav__links li:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: block; padding: 10px 12px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-800); color: var(--white) !important;
  padding: 11px 18px !important; border-radius: 999px; font-weight: 600;
}
.nav__cta:hover { background: var(--green-700) !important; }
.nav__toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s;
}

/* HERO */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(15,40,15,.78) 0%, rgba(20,55,20,.55) 50%, rgba(20,55,20,.25) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 80px 0; max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.25rem; max-width: 56ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: rgba(255,255,255,.85); font-size: .92rem; }
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges span::before { content: '✓'; color: var(--green-400); font-weight: 700; }

/* PAGE HEADER (shorter hero for inner pages) */
.page-hero {
  position: relative; padding: 100px 0 80px; color: var(--white); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(15,40,15,.85) 0%, rgba(20,55,20,.6) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 60ch; }
.page-hero .breadcrumb { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 18px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.85); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: all .22s var(--ease);
  text-decoration: none;
}
.btn--primary { background: var(--green-500); color: var(--green-900); border-color: var(--green-500); }
.btn--primary:hover { background: var(--green-400); border-color: var(--green-400); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(108,186,63,.35); color: var(--green-900); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn--dark { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.btn--dark:hover { background: var(--green-900); border-color: var(--green-900); color: var(--white); transform: translateY(-1px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* TRUST BAR */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 32px 56px; text-align: center;
}
.trust-bar__item { display: flex; align-items: center; gap: 12px; color: var(--slate); font-weight: 500; }
.trust-bar__item strong { color: var(--green-800); font-family: var(--font-display); font-size: 1.4rem; display: block; line-height: 1; }

/* FEATURE CARDS */
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: all .25s var(--ease); position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-500); }
/* Whole-card link variant */
a.feature { display: block; text-decoration: none; color: inherit; }
a.feature:hover { color: inherit; }
.feature__link { display: inline-block; margin-top: 14px; color: var(--green-700); font-weight: 600; }
a.feature:hover .feature__link { color: var(--green-600); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--green-700);
}
.feature__icon svg { width: 24px; height: 24px; stroke: var(--green-700); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: 10px; font-size: 1.25rem; }
.feature p { margin: 0; }

/* PRICING TABLE */
.pricing-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 8px;
  box-shadow: var(--shadow); overflow: hidden; overflow-x: auto;
  border: 1px solid var(--line);
}
.pricing-table {
  width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem;
}
.pricing-table thead th {
  background: var(--green-800); color: var(--white);
  padding: 18px 16px; text-align: center; font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
}
.pricing-table thead th:first-child { text-align: left; border-top-left-radius: 12px; }
.pricing-table thead th:last-child { border-top-right-radius: 12px; }
.pricing-table tbody td {
  padding: 16px; text-align: center; border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.pricing-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--green-900); background: var(--green-50);
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover td { background: #fbfdf8; }
.pricing-table tbody tr:hover td:first-child { background: var(--green-100, #e5f1dc); }
.pricing-table .delivery { color: var(--green-700); font-weight: 600; font-size: .88rem; }
.price-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 28px;
}
.price-meta__item {
  padding: 18px 20px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 4px;
}
.price-meta__item strong { color: var(--green-800); font-family: var(--font-display); font-size: 1.1rem; }
.price-meta__item span { color: var(--muted); font-size: .9rem; }

/* COST ESTIMATOR */
.estimator {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.estimator__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.estimator label {
  display: block; font-size: .88rem; font-weight: 600; color: var(--green-900);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em;
}
.estimator input, .estimator select {
  width: 100%; padding: 14px 16px; font-size: 1rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--cream); transition: border-color .2s;
  font-family: inherit; color: var(--ink);
}
.estimator input:focus, .estimator select:focus {
  outline: none; border-color: var(--green-500); background: var(--white);
}
.estimator__result {
  margin-top: 24px; padding: 28px; background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white); border-radius: var(--radius); text-align: center;
}
.estimator__result .price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1;
  margin: 10px 0;
}
.estimator__after {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 14px auto 0; padding: 12px 20px; max-width: max-content;
  background: rgba(255,255,255,.14); border-radius: 999px;
}
.estimator__after-label {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; opacity: .9;
}
.estimator__after-value {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1;
  color: var(--green-400);
}
.estimator__result .breakdown {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 18px;
  font-size: .9rem; opacity: .9;
}

/* FORMS */
.form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }
.form label { font-size: .85rem; font-weight: 600; color: var(--green-900); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form input, .form select, .form textarea {
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; background: var(--cream); color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--green-500); background: var(--white);
}
.form textarea { resize: vertical; min-height: 120px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status {
  margin-top: 16px; text-align: center; font-weight: 600; font-size: .95rem;
  padding: 0 8px;
}
.form__status--ok { color: var(--green-700); }
.form__status--error { color: #b3261e; }
button:disabled { opacity: .6; cursor: default; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery a, .gallery__item {
  display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3;
  position: relative;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery a:hover img, .gallery__item:hover img { transform: scale(1.05); }

/* FAQ ACCORDION */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq__q {
  width: 100%; background: none; border: 0; padding: 22px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-900);
  text-align: left; cursor: pointer;
}
.faq__q::after {
  content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--green-600);
  transition: transform .25s;
}
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a { padding: 0 8px 22px; color: var(--slate); }
.faq__a p:last-child { margin-bottom: 0; }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white); padding: 64px 0; text-align: center;
}
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 60ch; margin: 0 auto 28px; }
.cta-strip .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* STEPS */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px 26px 88px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 24px; top: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-500); color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
}
.step h3 { margin: 0 0 6px; font-size: 1.2rem; }
.step p { margin: 0; }

/* FOOTER */
.site-footer {
  background: var(--green-900); color: #d6e2d4; padding: 64px 0 32px;
}
.site-footer a { color: #d6e2d4; }
.site-footer a:hover { color: var(--green-400); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.site-footer h4 {
  color: var(--white); font-family: var(--font-body); font-size: .92rem;
  text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer__logo {
  background: #ffffff; padding: 22px 26px; border-radius: 18px;
  display: inline-block; max-width: 220px; width: 100%; margin-bottom: 22px;
}
.footer__logo img { width: 100%; height: auto; display: block; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.footer__social a:hover { background: var(--green-500); color: var(--green-900); }

/* UTILITIES */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 16px; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }

/* SPLIT (image + text) */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* LOCATION GRID */
.locations { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.location-card {
  background: var(--white); padding: 22px; border-radius: var(--radius); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px; transition: all .2s;
}
.location-card:hover { transform: translateY(-2px); border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.location-card strong { color: var(--green-900); font-family: var(--font-display); font-size: 1.1rem; }
.location-card .price { color: var(--green-700); font-weight: 600; }
.location-card .meta { color: var(--muted); font-size: .85rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .estimator__grid, .form__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { height: 84px; }
  .nav__logo img { height: 66px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 18px; gap: 4px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    /* The open menu is taller than most phone screens, so let it scroll
       internally instead of running off the bottom of the viewport. */
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav.is-open .nav__links li { width: 100%; }
  .nav.is-open .nav__links a { display: block; }
  /* Submenus start collapsed on mobile so only the main pages show */
  .nav.is-open .nav__sub {
    display: none;
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding-left: 12px; margin: 4px 0 6px;
    min-width: 0;
  }
  .nav.is-open .has-sub.is-expanded > .nav__sub { display: block; }
  .nav__links .has-sub > a::after { display: inline-block; transition: transform .2s var(--ease); }
  .nav.is-open .has-sub.is-expanded > a::after { transform: rotate(180deg); }
  .nav.is-open .has-sub > a { display: flex; align-items: center; justify-content: space-between; }
  .nav__cta { width: 100%; justify-content: center; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .estimator, .form { padding: 24px; }
  .hero { min-height: 70vh; }
  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* Skip link & focus */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: var(--green-800); color: var(--white); padding: 10px 16px; border-radius: 6px; z-index: 1000; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,20,10,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .25s var(--ease);
  padding: 24px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 92vw; max-height: 88vh; border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transform: scale(.96); transition: transform .25s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__counter {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .08em;
}
.gallery a, .gallery__item { cursor: zoom-in; }

/* Print */
@media print {
  .site-header, .site-footer, .cta-strip, .hero__bg { display: none !important; }
  body { color: #000; }
}
