/* Debbie Dolittle's Indoor Petting Zoo — Playful Reskin
   Palette: Coral Pink (#EF6D7E), Sunny Gold (#F6B93B), Safari Khaki/Tan (#C9A96A), Warm Cream (#FFF8F0), Espresso Brown (#2A2320)
   Typography: Fredoka (headings) + Nunito (body) */

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

:root {
  --primary: #EF6D7E;
  --primary-hover: #e2515f;
  --primary-light: #fdeee0;
  --accent: #F6B93B;
  --accent-hover: #e0a221;
  --khaki: #C9A96A;
  --khaki-dark: #b08f4f;
  --brown: #8a6d3b;
  --ink: #2A2320;
  --body: #4A3B30;
  --muted: #8A7A6C;
  --line: #EFE2D4;
  --bg-cream: #FFFDF9;
  --bg-soft: #FFF8F0;
  --bg-soft-2: #FDEEE0;
  --bg-card: #FFFFFF;
  --radius: 28px;
  --radius-sm: 16px;
  --maxw: 1180px;
  --font-sans: 'Nunito', sans-serif;
  --font-title: 'Fredoka', sans-serif;
  --shadow: 0 12px 36px rgba(138, 109, 59, 0.08);
  --shadow-lg: 0 24px 60px rgba(138, 109, 59, 0.14);
  --transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-cream);
}

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

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

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

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

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

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

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

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

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

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

.lead {
  font-size: 1.18rem;
  color: var(--body);
  font-weight: 600;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 109, 126, 0.1);
  border: 2px solid rgba(239, 109, 126, 0.15);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-inner .badge {
  color: #ffffff;
  background: rgba(42, 35, 32, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
}

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

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

.btn--coral {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(239, 109, 126, 0.28);
}

.btn--coral:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 12px 26px rgba(239, 109, 126, 0.38);
}

.btn--sun {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(246, 185, 59, 0.28);
}

.btn--sun:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 12px 26px rgba(246, 185, 59, 0.38);
}

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

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

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

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

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(10px);
  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;
}

.brand .mark {
  background: #fff;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}

.brand .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand span:last-child {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.1;
}

.brand span:last-child small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

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

.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 99px;
}

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

.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: 700;
  color: var(--primary);
  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: 24px;
  background: var(--primary);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(80px, 12vw, 150px) 0;
  background: linear-gradient(135deg, rgba(42, 35, 32, 0.92), rgba(239, 109, 126, 0.75)), url('../img/16252554-1820259668198911-7228433551239254916-o-1.jpg') no-repeat center center/cover;
  overflow: hidden;
}

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

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 3px 6px rgba(138, 109, 59, 0.25);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(138, 109, 59, 0.25);
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 30px;
}

.hero-stats > div {
  flex: 1;
}

.hero-stats .num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

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

/* Trust Band */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}

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

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

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

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

.split img {
  border-radius: var(--radius);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

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

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

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

/* Grid & Card Systems */
.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: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: 40px 24px 36px 20px / 24px 36px 20px 40px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.01) rotate(0.5deg);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

@keyframes animalDrift {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.card:hover .ic {
  animation: animalDrift 2s ease-in-out infinite;
}

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

.card h3 {
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

/* Service Card (Image) */
.svc-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: 24px 40px 20px 36px / 36px 20px 40px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.01) rotate(-0.5deg);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

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

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

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

.svc-card p {
  margin-bottom: 0;
}

.svc-card .tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--bg-soft-2);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
  font-family: var(--font-title);
}

/* Pricing Panel */
.price-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;
}

.price-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 185, 59, 0.4), transparent 70%);
}

.price-panel .eyebrow {
  color: var(--accent);
}

.price-panel h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.price-panel > p {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.price-tag {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin: 18px 0;
}

.price-tag span {
  font-size: 1.5rem;
  color: var(--accent);
  vertical-align: super;
}

.price-tag small {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-family: var(--font-sans);
}

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

.price-grid h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

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

.price-grid .dot {
  color: var(--accent);
  font-size: 1.3rem;
}

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

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

.step .n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(239, 109, 126, 0.34);
}

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

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

/* Reviews */
.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 34px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto 48px;
}

.rating-banner .big {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

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

.rating-banner .meta {
  font-weight: 700;
  color: var(--ink);
}

.rating-banner .meta span {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.review {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.review p {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}

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

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

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
  cursor: zoom-in;
  background: var(--bg-soft-2);
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.08);
}

/* Info Cards */
.info-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.info-card .ic {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft-2);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.info-card h3 {
  margin-bottom: 6px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

/* Callout Panel */
.callout {
  background: linear-gradient(135deg, var(--khaki), var(--brown));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.callout h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.callout p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 10px;
}

.callout .map-pin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0.03em;
}

/* Map Embed */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

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

.cta-band h2 {
  color: #fff;
}

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

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

/* Contact Page Form Wrapper */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.form-card {
  background: var(--bg-card);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-cream);
  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(239, 109, 126, 0.15);
}

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

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

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

.contact-line:last-of-type {
  border-bottom: 0;
}

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

.contact-line h4 {
  margin-bottom: 2px;
}

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

.contact-line a:hover {
  color: var(--primary-hover);
}

/* Interior Page Hero */
.page-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, rgba(239, 109, 126, 0.92), rgba(239, 109, 126, 0.78)), url('../img/49479768-2206709799553894-7225743225196118016-n-960x960-1.jpg') center/cover no-repeat;
  padding: clamp(56px, 8vw, 96px) 0;
}

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

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

.crumb {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

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

/* Footer Section */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  padding: 64px 0 28px;
}

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

.footer-grid h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand .mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  flex: none;
}

.footer-brand .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}

.footer-credit a {
  color: var(--primary);
  font-weight: 700;
}

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

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

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  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 8px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

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

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

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.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%);
}

/* Responsiveness Media Queries */
@media (max-width: 1080px) {
  .brand {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.1;
  }
  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand span:last-child small {
    display: none;
  }
  .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: var(--bg-cream);
    border-bottom: 1.5px solid var(--line);
    padding: 14px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px;
    display: block;
  }
  .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: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 10px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 12px;
    font-weight: 800;
    color: var(--primary);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 6px 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);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .price-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 16px;
  }
  .brand {
    font-size: 0.92rem;
    white-space: normal;
    line-height: 1.15;
  }
  .brand > span:last-child {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .brand .mark {
    width: 42px;
    height: 42px;
  }
  body {
    font-size: 16px;
  }
}
