/* ============================================================
   Fate Fence Repair — styles.css
   i30 Builders LLC | fatefencerepair.com
   ============================================================ */

/* === CSS Variables === */
:root {
  --primary: #17191f;
  --primary-soft: #252a33;
  --accent: #b96f2b;
  --accent-dark: #93561f;
  --accent-soft: #f0c89d;
  --text: #27231f;
  --text-light: #665c54;
  --text-muted: #8f867e;
  --bg: #f8f4ed;
  --bg-alt: #efe6d7;
  --bg-card: rgba(255, 251, 245, 0.92);
  --bg-dark: #121418;
  --border: rgba(63, 47, 33, 0.12);
  --border-strong: rgba(63, 47, 33, 0.2);
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(16, 17, 20, 0.06);
  --shadow: 0 20px 50px rgba(16, 17, 20, 0.08);
  --shadow-lg: 0 30px 70px rgba(16, 17, 20, 0.14);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-h: 78px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 200, 157, 0.26), transparent 35%),
    radial-gradient(circle at top right, rgba(185, 111, 43, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 42%, #f3ece1 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
a:hover { color: var(--accent-dark); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
section { position: relative; }
strong { font-weight: 700; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-nav {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 10px 0;
  overflow: visible;
  text-decoration: none;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  line-height: 1.35;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(135deg, #cb843f 0%, var(--accent) 50%, #9d5d22 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 30px rgba(185, 111, 43, 0.22);
}
.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 22px 36px rgba(185, 111, 43, 0.3);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: rgba(185, 111, 43, 0.32);
}
.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-lg  { padding: 16px 30px; font-size: 0.92rem; }
.btn-sm  { padding: 10px 18px; font-size: 0.78rem; }
.btn-full { width: 100%; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.04rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.68;
}
.section-copy {
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 760px;
  margin: 18px auto 0;
}
.hero-sub-links {
  margin-top: 22px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--accent-dark);
  border: 1px solid rgba(185, 111, 43, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d69a5d 0%, var(--accent) 100%);
  box-shadow: 0 0 0 4px rgba(185, 111, 43, 0.1);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(18, 20, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(8, 8, 10, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 100%;
}
.logo a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
.logo-sub {
  font-size: 0.70rem;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 8px 11px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition), outline var(--transition);
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}
.main-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}
.header-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, #ca803a 0%, var(--accent) 100%);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(185, 111, 43, 0.24);
}
.header-cta:hover { color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 16px;
  right: 16px;
  background: rgba(18, 20, 24, 0.96);
  padding: 16px;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 14px;
  transition: color var(--transition), background var(--transition), outline var(--transition);
}
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.mobile-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -2px;
}
.mobile-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ca803a 0%, var(--accent) 100%);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 16px;
}
.mobile-cta:hover { color: var(--white) !important; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: rgba(255, 252, 247, 0.92);
  border-bottom: 1px solid rgba(63, 47, 33, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 54px;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.breadcrumb-inner a { color: var(--text-light); }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-sep {
  color: rgba(63, 47, 33, 0.45);
  -webkit-user-select: none;
  user-select: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 72px 0 112px;
  background:
    radial-gradient(circle at 85% 18%, rgba(240, 200, 157, 0.16), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(185, 111, 43, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(18,20,25,0.9) 0%, rgba(28,32,40,0.86) 38%, rgba(47,36,27,0.92) 100%),
    url('../photos/projects/fence-panorama.jpg') center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 95%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 95%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 10%;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 200, 157, 0.2) 0%, rgba(240, 200, 157, 0.03) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 244, 228, 0.1);
  border: 1px solid rgba(255, 214, 168, 0.22);
  color: #f5d1aa;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8d3af 0%, #cb843f 100%);
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
  max-width: 600px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-bottom: 10px;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(63, 47, 33, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--primary);
  background: rgba(185, 111, 43, 0.06);
  border: 1px solid rgba(185, 111, 43, 0.1);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #d79b5d 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 110px 0 104px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 251, 245, 0.98) 100%);
  border: 1px solid rgba(63, 47, 33, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #e8c39a 0%, var(--accent) 100%);
}
.service-card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 111, 43, 0.1) 0%, transparent 68%);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 111, 43, 0.22);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.service-card p {
  font-size: 0.935rem;
  color: var(--text-light);
  line-height: 1.74;
}

/* ============================================================
   ABOUT / WHY CHOOSE US
   ============================================================ */
.about {
  padding: 104px 0;
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.56) 0%, rgba(239, 230, 215, 0.88) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: center;
}
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.14;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.about-content > p {
  color: var(--text-light);
  margin-bottom: 34px;
  line-height: 1.82;
  font-size: 1.01rem;
  max-width: 60ch;
}
.about-features {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}
.about-features li {
  display: block;
  padding: 18px 20px 18px 22px;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(63, 47, 33, 0.09);
  border-left: 3px solid var(--accent);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.about-features li strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-features li p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stat-card {
  position: relative;
  overflow: hidden;
  padding: 30px 22px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(165deg, #17191f 0%, #252a33 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-card::after {
  content: '';
  position: absolute;
  inset: auto -18% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 200, 157, 0.2) 0%, transparent 68%);
}
.stat-number {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: #f0c89d;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.stat-label {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ============================================================
   PROJECT GALLERY
   ============================================================ */
.project-gallery {
  padding: 104px 0;
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.42) 0%, rgba(248, 244, 237, 0) 100%);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(63, 47, 33, 0.1);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 251, 245, 0.94);
}

.project-media {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, rgba(23, 25, 31, 0.92) 0%, rgba(37, 42, 51, 0.96) 100%);
  position: relative;
}

.project-media::before {
  content: 'PHOTO PLACEHOLDER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 0.68rem;
  color: rgba(240, 200, 157, 0.8);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-media::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(240, 200, 157, 0.35);
  border-radius: 14px;
}

.project-copy {
  padding: 18px 18px 20px;
}

.project-copy h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.project-copy p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Real images inside project-media */
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-card:hover .project-media img {
  transform: scale(1.04);
}
.project-media { cursor: zoom-in; }
.project-media:has(img)::before,
.project-media:has(img)::after {
  display: none;
}

/* Featured full-width panoramic card */
.project-card.featured {
  grid-column: 1 / -1;
}
.project-card.featured .project-media {
  aspect-ratio: 5 / 2;
}

/* ============================================================
   CITY LOCAL PROOF
   ============================================================ */
.city-proof-section {
  padding: 0 0 92px;
}

.city-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.proof-card {
  border-radius: 24px;
  border: 1px solid rgba(63, 47, 33, 0.1);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 251, 245, 0.94);
  padding: 24px;
}

.proof-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.proof-list {
  display: grid;
  gap: 10px;
}

.proof-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}

.proof-list li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d79b5d 0%, var(--accent) 100%);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: 104px 0;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 18px 20px;
  background: rgba(255, 251, 245, 0.9);
  border: 1px solid rgba(63, 47, 33, 0.1);
  border-radius: 22px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.city-card:hover {
  background: #fff8ef;
  border-color: rgba(185, 111, 43, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.city-card.current {
  background: linear-gradient(145deg, #17191f 0%, #252a33 100%);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  pointer-events: none;
}
.city-name {
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.25;
}
.city-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(185, 111, 43, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.city-card:hover .city-arrow {
  background: var(--accent);
  color: var(--white);
}
.city-card.current .city-arrow {
  background: rgba(240, 200, 157, 0.16);
  color: #f0c89d;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at top left, rgba(240, 200, 157, 0.14), transparent 26%),
    linear-gradient(145deg, #121419 0%, #1c2028 42%, #31241a 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.34;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.cta-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.03rem;
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.76;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 104px 0;
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.46) 0%, rgba(248, 244, 237, 0) 100%);
}
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(63, 47, 33, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.99rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.42;
  transition: background-color var(--transition), outline var(--transition);
}
.faq-question:hover { background: rgba(185, 111, 43, 0.04); }
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.faq-question.open { color: var(--accent-dark); }
.faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(185, 111, 43, 0.12);
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--accent);
  transition: transform 0.25s ease, background-color var(--transition), color var(--transition);
}
.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.78;
}
.faq-answer.open { display: block; }

/* ============================================================
   LEAD PROCESS
   ============================================================ */
.reviews {
  background: var(--white);
  padding: 64px 28px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.review-card {
  background: rgba(185, 111, 43, 0.04);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(185, 111, 43, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(185, 111, 43, 0.15);
}
.review-stars {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

@media (max-width: 768px) {
  .reviews {
    padding: 48px 22px;
  }
  .reviews-grid {
    gap: 24px;
  }
  .review-card {
    padding: 24px;
  }
}
  padding: 102px 0;
  background: linear-gradient(180deg, rgba(239, 230, 215, 0.6) 0%, rgba(248, 244, 237, 0) 100%);
}

.lead-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  border-radius: 24px;
  border: 1px solid rgba(63, 47, 33, 0.11);
  background: rgba(255, 251, 245, 0.94);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(185, 111, 43, 0.2);
  background: rgba(185, 111, 43, 0.08);
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-card h3 {
  font-family: var(--font-head);
  font-size: 1.03rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.38;
}

.process-card p {
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.75;
}

.lead-process-cta {
  margin-top: 28px;
  border-radius: 24px;
  border: 1px solid rgba(63, 47, 33, 0.11);
  background: linear-gradient(145deg, #17191f 0%, #252a33 100%);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lead-process-cta p {
  font-family: var(--font-head);
  font-size: 0.90rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 104px 0 112px;
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: start;
}
.contact-form-wrapper,
.contact-info {
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(63, 47, 33, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.contact-form-wrapper {
  padding: 34px;
}
.contact-form-wrapper h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.99rem;
  line-height: 1.74;
}
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(63, 47, 33, 0.16);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #7a6d63; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(185, 111, 43, 0.46);
  box-shadow: 0 0 0 4px rgba(185, 111, 43, 0.12);
  background: var(--white);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 122px; }

.form-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.form-trust-list li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(185, 111, 43, 0.18);
  background: rgba(185, 111, 43, 0.08);
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 12px;
}
/* Contact Info Column */
.contact-info {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 32px 28px;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.info-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(63, 47, 33, 0.08);
}
.info-item:last-of-type { margin-bottom: 10px; }
.info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.info-item p, .info-item address, .info-item a {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: normal;
}
.info-item a:hover { color: var(--accent); }
.map-link { margin-top: 10px; margin-bottom: 20px; }
.parent-brand {
  padding-top: 18px;
  border-top: 1px solid rgba(63, 47, 33, 0.1);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.parent-brand a { color: var(--accent); font-weight: 700; }
.parent-brand a:hover { color: var(--accent-dark); }

/* ============================================================
   CITY INTRO SECTION (city pages only)
   ============================================================ */
.city-intro-section {
  padding: 84px 0;
}
.city-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: start;
}
.city-intro-content {
  padding: 34px;
  background: rgba(255, 251, 245, 0.9);
  border-radius: 30px;
  border: 1px solid rgba(63, 47, 33, 0.1);
  box-shadow: var(--shadow);
}
.city-intro-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.city-intro-content p {
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 16px;
  font-size: 0.99rem;
}
.city-intro-content p:last-of-type { margin-bottom: 28px; }
.nearby-cities {
  background: linear-gradient(180deg, #17191f 0%, #232833 100%);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.nearby-cities h3 {
  font-family: var(--font-head);
  font-size: 0.80rem;
  font-weight: 700;
  color: rgba(240, 200, 157, 0.95);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nearby-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nearby-list a:hover {
  border-color: rgba(240, 200, 157, 0.28);
  color: var(--white);
  transform: translateX(3px);
}
.nearby-list a::before {
  content: '→';
  color: #f0c89d;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(240, 200, 157, 0.12), transparent 24%),
    linear-gradient(180deg, #121419 0%, #17191f 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 28px 48px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.footer-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.75;
  max-width: 360px;
}
.footer-nap {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.95;
  font-style: normal;
}
.footer-nap a {
  color: #f0c89d;
  transition: color var(--transition), outline var(--transition);
}
.footer-nap a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.footer-nap a:hover { color: var(--white); }
.footer-nav h4,
.footer-areas h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240, 200, 157, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-nav ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 5px 0;
  line-height: 1.45;
}
.footer-areas ul li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  display: block;
  padding: 5px 0;
}
.footer-areas ul li a:hover { color: #f0c89d; }

.footer-areas ul li a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.footer-guide-links {
  width: 100%;
  margin: 0 0 8px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}
.footer-guide-links a {
  color: rgba(240, 200, 157, 0.95);
}
.footer-guide-links a:hover {
  color: var(--white);
}
.footer-bottom a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition), outline var(--transition);
}
.footer-bottom a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.footer-bottom a:hover { color: #f0c89d; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 1100;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(63, 47, 33, 0.14);
  background: rgba(255, 251, 245, 0.96);
  box-shadow: 0 18px 40px rgba(13, 14, 18, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-sticky-cta .sticky-cta-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-sticky-cta .sticky-call {
  color: var(--white);
  background: linear-gradient(135deg, #cb843f 0%, var(--accent) 50%, #9d5d22 100%);
}

.mobile-sticky-cta .sticky-quote {
  color: var(--primary);
  border: 1px solid rgba(63, 47, 33, 0.2);
  background: var(--white);
}

/* ============================================================
   SCROLL REVEAL MOTION
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 460ms ease, transform 460ms ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    min-height: 640px;
    padding-bottom: 96px;
  }
  .hero-content {
    max-width: 680px;
    padding: 34px;
  }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-info { position: static; }
  .city-intro-inner { grid-template-columns: 1fr; }
  .city-proof-grid { grid-template-columns: 1fr; }
  .lead-process-grid { grid-template-columns: 1fr 1fr; }
  .nearby-cities { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    min-height: 0;
    padding: 56px 0 88px;
  }
  .hero::after {
    width: 320px;
    height: 320px;
    right: -120px;
  }
  .hero-content {
    padding: 28px 24px;
    border-radius: 24px;
  }
  .hero-content h1 { font-size: 2.35rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .trust-bar { margin-top: -26px; }
  .trust-inner { justify-content: flex-start; padding: 16px; }
  .trust-item {
    font-size: 0.73rem;
    min-height: 42px;
    padding: 0 14px;
  }

  .services,
  .about,
  .project-gallery,
  .service-areas,
  .lead-process,
  .cta-section,
  .faq-section,
  .contact,
  .city-intro-section,
  .city-proof-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .project-card.featured .project-media { aspect-ratio: 16 / 9; }
  .section-header { margin-bottom: 42px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-features li,
  .proof-card,
  .contact-form-wrapper,
  .contact-info,
  .city-intro-content,
  .nearby-cities,
  .cta-inner {
    padding: 24px;
    border-radius: 24px;
  }

  .form-row { grid-template-columns: 1fr; }
  .lead-process-grid,
  .form-trust-list { grid-template-columns: 1fr; }

  .form-trust-list li {
    justify-content: flex-start;
    min-height: 42px;
    border-radius: 14px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body.has-mobile-sticky-cta {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.92rem;
  }
  .faq-answer { padding: 0 18px 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo-main { font-size: 0.96rem; }
  .hero-content h1 { font-size: 2rem; }
  .section-header h2,
  .about-content h2,
  .contact-form-wrapper h2,
  .city-intro-content h2,
  .cta-inner h2 { font-size: 1.8rem; }
  .btn-lg { padding: 15px 24px; font-size: 0.88rem; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2.2rem; }
  .city-card {
    min-height: 68px;
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 17, 23, 0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.90);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: calc(50% - 22px);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.lightbox-prev { right: calc(100% + 14px); }
.lightbox-next { left: calc(100% + 14px); }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(192, 120, 50, 0.75);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 960px) {
  .lightbox-prev { right: auto; left: 8px; top: auto; bottom: 52px; }
  .lightbox-next { left: auto; right: 8px; top: auto; bottom: 52px; }
}
