/* ============================================================
   Olga Shestopyorova — chocolate & caramel theme
   ============================================================ */

:root {
  --bg: #2a1d14;          /* deep dark chocolate */
  --bg-2: #34241a;        /* cocoa shadow */
  --surface: #3d2a1f;     /* milk chocolate surface */
  --line: rgba(212, 163, 115, 0.18);
  --text: #f5e6d3;        /* warm cream */
  --text-soft: #d4b896;   /* caramel cream */
  --text-muted: #a18563;  /* latte */
  --gold: #d4a373;        /* caramel — основной акцент */
  --gold-2: #e8c39e;      /* light caramel */
  --gold-3: #8b5e3c;      /* deep coffee */
  --rose: #d9a89a;
  --shadow: 0 30px 60px -20px rgba(20, 12, 6, .65);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--gold-2); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.1;
  color: var(--text);
}

h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 300; }
h3 { font-size: 1.35rem; font-weight: 500; }

em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-x: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px var(--pad-x);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  color: #2a1a0c;
  background: linear-gradient(135deg, #f0d2a8 0%, #e8c39e 45%, #d4a373 100%);
  box-shadow: 0 14px 28px -10px rgba(212, 163, 115, .4), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(232, 195, 158, .55), inset 0 1px 0 rgba(255,255,255,.5);
  color: #1a0e04;
}

.btn-line {
  color: var(--text);
  border-color: rgba(232, 195, 158, .4);
  background: transparent;
}
.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(212, 163, 115, .1);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(232, 195, 158, .3);
  background: transparent;
  padding: 12px 22px;
  font-size: 12px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(212, 163, 115, .08); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s ease, padding .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(42, 29, 20, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -18px rgba(20, 12, 6, .7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  font-style: italic;
  line-height: 1;
  padding-bottom: 2px;
}
.logo-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 38px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s ease;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.burger {
  display: none;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1) contrast(1.05) brightness(1.05) sepia(.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(85% 70% at 30% 45%, rgba(42,29,20,.05) 0%, rgba(42,29,20,.2) 55%, rgba(42,29,20,.7) 100%),
    linear-gradient(180deg, rgba(42,29,20,.04) 0%, rgba(42,29,20,.18) 55%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 880px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  margin: 0 0 26px;
  letter-spacing: -.01em;
  color: #faecd8;
  text-shadow: 0 2px 32px rgba(20, 12, 6, .9), 0 1px 4px rgba(20, 12, 6, .75);
}
.hero-title em {
  display: inline-block;
  font-style: italic;
  background: linear-gradient(135deg, #f0d2a8 0%, #e8c39e 45%, #d4a373 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 520px;
  color: var(--text-soft);
  margin-bottom: 38px;
}

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

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(232, 195, 158, .55);
  border-radius: 12px;
}
.scroll-hint span {
  display: block;
  width: 2px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- About ---------- */
.about {
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(212, 163, 115, .12) 0%, transparent 70%),
    var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) brightness(.95);
  transition: transform 1.4s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .55;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { font-size: 1.02rem; max-width: 520px; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 14px;
}
.about-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: .95rem;
  color: var(--text);
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points li span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}

/* ---------- Sections head ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.section-head h2 { margin-bottom: 18px; }
.section-sub { font-size: 1.02rem; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.works {
  background:
    radial-gradient(70% 90% at 0% 0%, rgba(212, 163, 115, .12) 0%, transparent 70%),
    var(--bg-2);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  filter: saturate(.95) brightness(.92);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(11,9,7,.85) 100%);
  opacity: .65;
  transition: opacity .5s ease;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.gallery-item:hover::after { opacity: .35; }

.gallery-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 12px;
  border: 1px solid rgba(201,168,106,.4);
  border-radius: 999px;
  background: rgba(11,9,7,.5);
  backdrop-filter: blur(6px);
}

/* ---------- Pricing ---------- */
.pricing {
  background: linear-gradient(180deg, var(--bg) 0%, #20140c 100%);
  position: relative;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(212, 163, 115, .14) 0%, transparent 70%);
  pointer-events: none;
}

.price-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 4px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding .3s ease;
}
.price-row:nth-child(odd) {
  background: rgba(232, 195, 158, .04);
}
.price-row:hover {
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, .14), transparent);
}
.price-row:first-child { border-top: 1px solid var(--line); }

.price-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 4px;
}
.price-info p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-muted);
}
.price-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--gold-2);
  background: rgba(212, 163, 115, .08);
  border: 1px solid rgba(212, 163, 115, .25);
  border-radius: 999px;
}

.price-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed rgba(201,168,106,.25);
  align-self: center;
  min-width: 24px;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: .02em;
  white-space: nowrap;
}

.price-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ---------- Works CTA ---------- */
.works-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg-2);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(212, 163, 115, .14) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.ccard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,163,115,.0) 0%, rgba(212,163,115,.18) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.ccard:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -18px rgba(212, 163, 115, .35);
}
.ccard:hover::before { opacity: 1; }

.ccard-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(212, 163, 115, .12);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  transition: all .35s ease;
}
.ccard-icon svg { width: 22px; height: 22px; }
.ccard-icon-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: .02em;
}
.ccard:hover .ccard-icon {
  background: var(--gold);
  color: #2a1a0c;
  transform: scale(1.06);
  border-color: var(--gold);
}

.ccard-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ccard-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.ccard-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-note {
  text-align: center;
  margin: 56px auto 0;
  max-width: 520px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---------- Location ---------- */
.location {
  background: var(--bg);
  position: relative;
}
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 80% 20%, rgba(212, 163, 115, .08) 0%, transparent 70%);
  pointer-events: none;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.location-map {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  background: var(--bg-2);
}
.location-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.location-map:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(212, 163, 115, .35);
}
.location-map:hover img { transform: scale(1.04); }

.location-map-hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(10, 8, 6, .72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 6px 0;
}

.location-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.location-address p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
}
.location-city {
  font-size: 1.05rem !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
}
.location-street { font-weight: 500; }
.location-office {
  color: var(--gold-2) !important;
  font-style: italic;
}

.route-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.route-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.route-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.route-steps li span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  background: rgba(212, 163, 115, .1);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map img { aspect-ratio: 4 / 3; }
  .location-address p { font-size: 1.4rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: var(--bg-2);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: .05em;
}
.footer-socials {
  display: flex;
  gap: 22px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.footer-socials a { color: var(--text-muted); }
.footer-socials a:hover { color: var(--gold-2); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,4,3,.94);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lightbox-cap {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-2);
  font-size: 1.2rem;
  margin: 0;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--gold-2);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}
.lightbox-close:hover {
  border-color: var(--gold);
  background: rgba(201,168,106,.1);
  transform: rotate(90deg);
}

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links, .btn-cta-nav { display: none; }
  .burger { display: flex; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(42, 29, 20, .96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px;
    gap: 18px;
    box-shadow: 0 12px 30px -16px rgba(20, 12, 6, .65);
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; margin: 0 auto; }

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

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

  .price-row { grid-template-columns: 1fr auto; }
  .price-dots { display: none; }
  .price-info p { font-size: .85rem; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 320px; }
  .hero-actions .btn { width: 100%; padding: 15px 18px; font-size: 11px; letter-spacing: .18em; }
  .gallery { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr !important; }
  .price-info h3 { font-size: 1.15rem; }
}
