/* Twin Lakes Mini Storage — Secure Steel Blue Theme
   Palette: Steel Blue (#1E40AF), Padlock Gold (#EAB308), Safety Slate (#0F172A), Light Border (#E2E8F0), Off-White (#F8FAFC)
   Typography: Outfit (headings) + Inter (body) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1E40AF;
  --primary-hover: #1D4ED8;
  --primary-light: #EFF6FF;
  --accent: #EAB308;
  --accent-hover: #CA8A04;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --body: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #F8FAFC;
  --bg-soft: #F1F5F9;
  --bg-soft-2: #FEF3C7;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -5px rgba(30, 64, 175, 0.08), 0 8px 20px -6px rgba(30, 64, 175, 0.04);
  --shadow-lg: 0 20px 40px -5px rgba(30, 64, 175, 0.12), 0 10px 20px -5px rgba(30, 64, 175, 0.06);
  --maxw: 1200px;
  --font: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--font-title);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1.2rem;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head p {
  font-size: 1.15rem;
  color: var(--muted);
}

.lead {
  font-size: 1.25rem;
  color: var(--ink-2);
  font-weight: 500;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--green {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
}

.btn--green:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.35);
}

.btn--navy {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.btn--navy:hover {
  background: #000;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
  height: 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--primary);
}

.brand img {
  height: 52px;
  width: auto;
  border-radius: 0;
}

.brand span {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 1rem;
  color: var(--body);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* hero */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 30%, rgba(30, 64, 175, 0.75) 75%), url('../img/dscn8019.jpg') center/cover no-repeat;
  padding: clamp(80px, 12vw, 150px) 0;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-title);
}

.hero-stats .lbl {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* trust strip */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
  border-bottom: 3px solid var(--accent);
}

.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-title);
}

.trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* grid + cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 2px solid var(--line);
  border-bottom: 6px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 10px 20px rgba(30, 64, 175, 0.08);
}

.card .ic {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.card .ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
  flex-grow: 1;
}

.card .more {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.98rem;
  font-family: var(--font-title);
}

.card .more:hover {
  color: var(--primary-hover);
}

/* image card */
.svc-card {
  background: #fff;
  border: 2px solid var(--line);
  border-bottom: 6px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 10px 20px rgba(30, 64, 175, 0.08);
}

.svc-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.svc-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card h3 {
  margin-bottom: 10px;
}

.svc-card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
}

/* split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}

.checklist svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* pricing cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-card .size {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.price-card .dims {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.price-card .amt {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-card .amt span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.price-card .feat {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  text-align: left;
  flex-grow: 1;
}

.price-card .feat li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--body);
}

.price-card .feat svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: var(--primary-light);
}

.price-card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.2);
}

/* pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table th, .price-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table thead th {
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table tbody tr:hover {
  background: var(--primary-light);
}

.price-table .price {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

/* highlight / note panel */
.note-panel {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.note-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.35), transparent 70%);
}

.note-panel h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.note-panel .lead {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.note-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: var(--font-title);
}

.note-grid p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.note-grid .dot {
  color: var(--accent);
}

/* feature icon grid */
.feature {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature .ic {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  padding-top: 10px;
}

.step .n {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.25);
  font-family: var(--font-title);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--body);
  margin: 0;
}

/* reviews */
.rating-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
}

.rating-band .score {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  font-family: var(--font-title);
}

.rating-band .stars {
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.rating-band .sub {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.review {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.review .stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review p {
  font-size: 1.1rem;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review .who {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
}

.review .where {
  font-size: 0.88rem;
  color: var(--body);
}

/* location callout */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
}

.location .map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.location .info {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(32px, 4vw, 52px);
}

.location .info h2 {
  color: #fff;
  margin-bottom: 18px;
}

.location .info p {
  color: rgba(255, 255, 255, 0.85);
}

.location .info .line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.location .info .line svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.location .info a {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-title);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  text-align: center;
}

.cta-band--lake {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(15, 23, 42, 0.8)), url('../img/bg.jpg') center/cover no-repeat;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* form */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #fafafa;
  color: var(--ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--body);
}

.contact-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line .ic {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-line h4 {
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-size: 1.1rem;
}

.contact-line a, .contact-line p {
  color: var(--body);
  margin: 0;
}

/* page hero (interior) */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  font-size: 1.2rem;
  margin: 0;
}

.crumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-weight: 500;
}

.crumb a:hover {
  color: #fff;
}

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 30px;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--font-title);
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  height: 54px;
  width: auto;
  background: #fff;
  padding: 8px 16px;
  border-radius: 12px;
}

.footer-bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.footer-credit a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  width: 100%;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
  padding: 0;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
  color: #fff;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2.4rem;
}

.lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:1080px){
  .brand {
    min-width: 0;
  }
  .brand img {
    height: 44px;
  }
  .nav-links, .nav-phone {
    display: none;
  }
  .nav-cta > .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1.5px solid var(--line);
    padding: 20px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px;
    width: 100%;
  }
  .nav-links.open .nav-mobile-phone, .nav-links.open .nav-mobile-cta {
    display: block;
    width: 100%;
    list-style: none;
  }
  .nav-links.open .nav-mobile-phone {
    border-top: 1.5px solid var(--line);
    margin-top: 8px;
    padding-top: 12px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 12px;
    font-weight: 700;
    color: var(--primary);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 8px 0 4px;
  }
  .nav-links.open .nav-mobile-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media(max-width:900px){
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .form-wrap, .location {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location {
    gap: 0;
  }
  .price-cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px){
  .grid-2, .grid-3, .grid-4, .note-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
  body {
    font-size: 16px;
  }
  .price-table thead {
    display: none;
  }
  .price-table td {
    display: block;
    border-bottom: 0;
    padding: 8px 20px;
  }
  .price-table tbody tr {
    display: block;
    border-bottom: 1.5px solid var(--line);
    padding: 14px 0;
  }
  .price-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--ink);
    display: inline-block;
    width: 130px;
  }
}
