:root {
  --bg: #fffbf9;
  --bg-cool: #faf6f5;
  --surface: #ffffff;
  --ink: #1f1115;
  --muted: #5e474f;
  --soft: #856f76;
  --line: rgba(31, 17, 21, 0.07);
  --plum: #1a0e13;
  --plum-2: #2d1821;
  --berry: #d63d75;
  --berry-glow: rgba(214, 61, 117, 0.18);
  --orchid: #a749d6;
  --sage: #3a634c;
  --gold: #b38530;
  --shadow: 0 12px 36px rgba(31, 17, 21, 0.05);
  --shadow-dark: 0 20px 50px rgba(16, 9, 12, 0.22);
  --radius: 12px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 84px;
  color: var(--ink);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(214, 61, 117, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(167, 73, 214, 0.03) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(195, 148, 60, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px 56px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(31, 17, 21, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.logo {
  font-size: 20px;
  font-weight: 950;
}

.logo span {
  color: var(--sage);
}

.topbar nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.topbar nav a:hover {
  color: var(--ink);
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(214, 61, 117, 0.20);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(214, 61, 117, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-cta:hover {
  background: rgba(214, 61, 117, 0.08);
  border-color: var(--berry);
  box-shadow: 0 6px 16px rgba(214, 61, 117, 0.12);
  transform: translateY(-2px);
  color: var(--berry);
}

.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.with-icon img,
.request-card img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.premium-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 58px;
  min-height: calc(100svh - 70px);
}

.tag {
  margin: 0 0 14px;
  color: var(--sage);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
}

.gold-tag {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

.italic-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--berry);
  background: linear-gradient(135deg, var(--berry), var(--orchid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 66px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead,
.master-copy p,
.section-head p,
.service-tile p,
.price-list span,
.works-section p,
.reviews-section p,
.small,
.contact-line {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 690px;
  font-size: 20px;
}

.hero-service-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-service-map span,
.chips span,
.master-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.hero-service-map span {
  background: rgba(244, 248, 241, 0.86);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover,
.contact-cards a:hover,
.contact-cards button:hover,
.discount-card:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--orchid));
  box-shadow: 0 8px 24px rgba(214, 61, 119, 0.25);
}

.primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: none;
}

.primary:hover::after {
  left: 100%;
  transition: left 0.65s ease-in-out;
}

.primary:hover {
  box-shadow: 0 12px 32px rgba(214, 61, 119, 0.35);
  transform: translateY(-2px);
}

.dark {
  color: #fff;
  background: var(--plum);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(26, 13, 19, 0.18);
}

.dark:hover {
  background: var(--plum-2);
  box-shadow: 0 12px 32px rgba(26, 13, 19, 0.26);
  transform: translateY(-2px);
}

.chips,
.master-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-gallery {
  position: relative;
  min-height: 650px;
}

.hero-slider {
  position: absolute;
  inset: 38px 0 0 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background: var(--plum);
  box-shadow: var(--shadow-dark);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.18) 31%, transparent 48%);
  opacity: 0;
  transform: translateX(-120%);
  animation: heroSheen 4.8s ease-in-out infinite;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 5;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-slide-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--berry), #fff);
  transform-origin: left center;
  animation: heroProgress 2.6s linear infinite;
}

.hero-nav {
  position: absolute;
  top: 48%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(26, 13, 19, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.hero-nav:hover {
  background: rgba(26, 13, 19, 0.76);
  transform: translateY(-50%) scale(1.04);
}

.hero-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-1px) rotate(45deg);
}

.hero-prev {
  left: 14px;
}

.hero-prev::before {
  transform: translate(2px, -1px) rotate(225deg);
}

.hero-next {
  right: 14px;
}

.hero-next::before {
  transform: translate(-2px, -1px) rotate(45deg);
}

.hero-master-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  min-height: 104px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-master-card img {
  width: 78px;
  height: 84px;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-master-card strong,
.hero-master-card span {
  display: block;
}

.hero-master-card strong {
  font-size: 18px;
}

.hero-master-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 4;
  width: 290px;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(160deg, var(--plum), var(--plum-2));
  box-shadow: var(--shadow-dark);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-proof span {
  color: #e8d9de;
  line-height: 1.45;
}

.photo-request {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  align-items: stretch;
  gap: 26px;
}

.photo-request-copy,
.request-cards {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.photo-request-copy {
  padding: 30px;
}

.request-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.request-card {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  background: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.request-card:last-child {
  border-bottom: 0;
}

.request-card:hover {
  background: rgba(244, 248, 241, 0.72);
  transform: none;
}

.request-card img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  grid-row: 1 / span 2;
}

.request-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
  line-height: 1.2;
}

.request-card span {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.45;
}

button.request-card {
  font: inherit;
}

.master-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
}

.master-photo-card {
  position: relative;
  min-height: 560px;
}

.master-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.master-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.glass-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.messenger {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  background: transparent;
}

.messenger img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.max {
  background: transparent;
}

.phone {
  background: transparent;
}

.vk {
  background: transparent;
}

.contact-line {
  margin: 14px 0 0;
}

.premium-band {
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100vw - 1160px) / 2));
  background: linear-gradient(180deg, rgba(244, 248, 241, 0.76), rgba(255, 255, 255, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.service-lanes article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-lanes strong,
.service-lanes span {
  display: block;
}

.service-lanes strong {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 18px;
}

.service-lanes span {
  color: var(--muted);
  line-height: 1.48;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}

.service-tile:hover {
  transform: translateY(-4px);
}

.service-tile img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
  background: linear-gradient(150deg, #f4dbe3, #fff);
}

.service-tile div {
  padding: 20px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100vw - 1160px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(184, 135, 47, 0.12), transparent 42%),
    linear-gradient(160deg, var(--plum), var(--plum-2));
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 C1150,200 1350,0 1500,100 C1650,200 1850,0 2000,100' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M0,150 C200,250 400,50 600,150 C800,250 1000,50 1200,150 C1400,250 1600,50 1800,150 C2000,250 2200,50 2400,150' fill='none' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cpath d='M-100,50 C100,150 300,-50 500,50 C700,150 900,-50 1100,50 C1300,150 1500,-50 1700,50 C1900,150 2100,-50 2300,50' fill='none' stroke='%23b38530' stroke-width='1'/%3E%3Cpath d='M100,200 C300,300 500,100 700,200 C900,300 1100,100 1300,200 C1500,300 1700,100 1900,200 C2100,300 2300,100 2500,200' fill='none' stroke='%23b38530' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 1200px 300px;
}

.dark-section > * {
  position: relative;
  z-index: 1;
}

.dark-section .section-head p,
.dark-section .price-list span,
.dark-section .reviews-section p {
  color: #e1cfd5;
}

.price-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list strong {
  color: #fff;
  font-size: 20px;
  white-space: nowrap;
}

.videos-section {
  padding-top: 82px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  background: var(--plum);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 440px;
  object-fit: cover;
  background: var(--plum);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--orchid));
  box-shadow: 0 10px 24px rgba(214, 61, 117, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 14px 30px rgba(214, 61, 117, 0.55);
}

.video-play::before,
.video-play::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(214, 61, 117, 0.25);
  border-radius: 999px;
  animation: heroPlayPulse 2.4s ease-out infinite;
}

.video-play::after {
  inset: -12px;
  border-color: rgba(214, 61, 117, 0.12);
  animation-delay: 0.6s;
}

.video-play span {
  position: relative;
  z-index: 1;
  margin-left: 4px;
  font-size: 18px;
  line-height: 1;
}

.video-card.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-card span {
  display: block;
  min-height: 58px;
  padding: 14px 15px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.3;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.discount-card,
.contact-cards a,
.contact-cards button,
form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.discount-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease;
}

.discount-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #fff;
}

.discount-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--orchid));
  text-align: center;
  font-weight: 950;
}

.photo-masonry {
  column-count: 4;
  column-gap: 18px;
}

.photo-card,
.review-shot {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-card img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.proof-reel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.proof-reel img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-reel img:nth-child(2),
.proof-reel img:nth-child(4) {
  height: 360px;
  margin-top: 42px;
}

.vk-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 28px auto 0;
  padding: 8px 24px;
  color: #0077ff;
  background: rgba(0, 119, 255, 0.05);
  border: 1px solid rgba(0, 119, 255, 0.12);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vk-wide:hover {
  background: rgba(0, 119, 255, 0.10);
  border-color: rgba(0, 119, 255, 0.30);
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.10);
  transform: translateY(-2px);
  color: #0066dd;
}

.vk-wide img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.reviews-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.review-shot img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.lead-box {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 34px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-cards a,
.contact-cards button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.contact-cards button {
  border-color: var(--line);
}

.contact-cards img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

form {
  padding: 24px;
}

form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffaf7;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 63, 119, 0.68);
  box-shadow: 0 0 0 4px rgba(200, 63, 119, 0.1);
}

form .btn {
  width: 100%;
  margin-top: 8px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.policy-section {
  padding-top: 34px;
  padding-bottom: 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  color: var(--ink);
  font-size: 26px;
}

.policy-section p {
  max-width: 920px;
  line-height: 1.65;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 76px;
  z-index: 100;
  max-width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--plum);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(160%);
  transition: opacity 0.22s ease, transform 0.22s ease;
  font-weight: 850;
}

.toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(20, 12, 16, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--plum);
  background: #fff;
  cursor: pointer;
  font-size: 30px;
}

.sticky-contact {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 50;
  display: flex;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(31, 17, 21, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.sticky-ready .sticky-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sticky-contact img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sticky-contact a:first-child {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(214, 61, 117, 0.20);
  box-shadow: 0 4px 12px rgba(31, 17, 21, 0.04);
}

.sticky-contact a:first-child:hover {
  background: rgba(214, 61, 117, 0.05);
  border-color: var(--berry);
  color: var(--berry);
  transform: translateY(-1px);
}

.sticky-contact a:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--orchid));
  box-shadow: 0 6px 16px rgba(214, 61, 117, 0.25);
  position: relative;
  overflow: hidden;
}

.sticky-contact a:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.sticky-contact a:last-child:hover::after {
  left: 100%;
  transition: left 0.6s ease;
}

.sticky-contact a:last-child:hover {
  box-shadow: 0 8px 20px rgba(214, 61, 117, 0.35);
  transform: translateY(-1px);
}

.img-missing {
  opacity: 0.12;
}

@media (max-width: 1120px) {
  .topbar {
    padding: 14px 24px;
  }

  .topbar nav {
    display: none;
  }

  .premium-hero,
  .master-section,
  .lead-box,
  .photo-request {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 590px;
  }

  .hero-slider {
    inset: 42px 0 0 64px;
  }

  .request-cards,
  .service-lanes,
  .service-gallery,
  .discount-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: 96px;
  }

  .topbar {
    min-height: 62px;
    padding: 10px 14px;
  }

  .logo {
    font-size: 18px;
  }

  .mini-cta {
    min-height: 40px;
    padding: 8px 14px;
  }

  .section {
    width: min(100% - 24px, 1160px);
    padding: 54px 0;
  }

  .premium-band,
  .dark-section {
    padding: 62px 12px;
  }

  .premium-hero {
    min-height: auto;
    gap: 34px;
    padding-top: 36px;
  }

  .tag {
    font-size: 11px;
    line-height: 1.35;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-service-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-service-map span {
    min-height: 58px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .service-lanes,
  .request-cards,
  .service-gallery,
  .discount-grid,
  .video-grid,
  .proof-reel,
  .reviews-gallery {
    grid-template-columns: 1fr;
  }

  .actions .btn {
    width: 100%;
  }

  .hero-copy .chips {
    display: none;
  }

  .hero-gallery {
    min-height: auto;
  }

  .hero-slider {
    position: relative;
    inset: auto;
    width: 100%;
    height: 380px;
    margin: 0;
  }

  .hero-master-card,
  .hero-proof {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .master-photo-card {
    min-height: 420px;
  }

  .glass-card {
    padding: 22px;
  }

  .service-tile img {
    height: 340px;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-list strong {
    white-space: normal;
  }

  .discount-card img,
  .review-shot img {
    height: auto;
  }

  .proof-reel img,
  .proof-reel img:nth-child(2),
  .proof-reel img:nth-child(4) {
    height: auto;
    margin-top: 0;
  }

  .photo-masonry {
    column-count: 1;
  }

  .footer {
    display: block;
  }

  .policy-section h2 {
    font-size: 24px;
  }

  .sticky-contact {
    width: calc(100% - 20px);
    justify-content: center;
  }

  .sticky-contact a {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroSheen {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-120%);
  }
  58% {
    opacity: 1;
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes heroPlayPulse {
  0% {
    opacity: 1;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

/* Policy Modal Window */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 12, 16, 0.82);
  backdrop-filter: blur(8px);
}

.policy-modal.open {
  display: grid;
}

.policy-modal-content {
  position: relative;
  width: min(600px, 94%);
  padding: 38px 34px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  animation: modalFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 17, 21, 0.05);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}

.policy-modal-close:hover {
  background: rgba(31, 17, 21, 0.10);
  transform: scale(1.05);
}

.policy-modal h2 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 20px;
}

.policy-modal p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
