:root {
  --navy: #0C4A6E;
  --brand: #0EA5E9;
  --teal: #0E7C7B;
  --paper: #FAFAF7;
  --text: #0F172A;
  --text-2: #475569;
  --muted: #94A3B8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Manrope', system-ui, sans-serif; background: var(--paper); color: var(--text); font-size: 1.0625rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Sticky-nav offset so in-page anchors don't hide behind the 64–80px header */
section[id], form[id="estimate-form"], div[id="estimate-form"], #hero-form { scroll-margin-top: 96px; }

/* Respect user motion preferences (WCAG) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body h1, body h2, body h3, body .font-display { font-family: 'Manrope', system-ui, sans-serif; letter-spacing: -0.022em; line-height: 1.15; }
body h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); font-weight: 800; }
body h2 { font-size: clamp(1.75rem, 2.8vw, 2.5rem); font-weight: 800; line-height: 1.2; }
body h3 { font-size: clamp(1.2rem, 1.5vw, 1.4rem); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }

.eyebrow { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }

/* Focus ring */
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* Accordion */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.25s ease; }
details .faq-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease; padding-top: 0; padding-bottom: 0; }
details[open] .faq-body { max-height: 1200px; opacity: 1; padding-top: 0.5rem; padding-bottom: 1.25rem; }

/* Fade-in on scroll — opacity kept at 1 to avoid blank-content flash on mobile */
.reveal { opacity: 1; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Mobile nav slide */
.mobile-menu { max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: max-height 0.3s ease, opacity 0.2s ease; }
.mobile-menu.open { max-height: 80vh; overflow-y: auto; opacity: 1; pointer-events: auto; }

/* Desktop nav dropdowns */
.nav-item { position: relative; }
.nav-link, .nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500; font-size: 0.95rem; color: var(--text-2);
  border-radius: 0.375rem;
  cursor: pointer; background: transparent; border: 0;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
}
.nav-link:hover, .nav-dropdown-toggle:hover { color: var(--teal); }
.nav-link.active, .nav-dropdown-toggle.active { color: var(--brand); font-weight: 600; }
.nav-dropdown-toggle .chevron { transition: transform 0.2s ease; }
.nav-item.is-open .nav-dropdown-toggle .chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute; left: 0; top: calc(100% + 0.25rem);
  min-width: 18rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px -8px rgba(15,47,79,0.18), 0 2px 8px rgba(15,47,79,0.06);
  padding: 0.5rem;
  z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-item.is-open .nav-dropdown-panel,
.nav-item:hover .nav-dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-item.dropdown-right .nav-dropdown-panel { left: auto; right: 0; }

/* Header white bar — subtle bottom shadow, no hard border line */
.header-main-bar { box-shadow: 0 1px 0 rgba(15,47,79,0.08), 0 2px 8px rgba(15,47,79,0.06); }

/* Primary nav merged into the white bar — items fill the bar height so the
   dropdown panels drop cleanly from the bar's bottom edge. */
.nav-row .nav-item { display: flex; align-items: stretch; }
.nav-row .nav-item > .nav-dropdown-toggle,
.nav-row .nav-item > .nav-link { height: 100%; }

/* Light blue nav bar variant */
.nav-bar-dark .nav-link,
.nav-bar-dark .nav-dropdown-toggle {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.9rem !important;
}
.nav-bar-dark .nav-link:hover,
.nav-bar-dark .nav-dropdown-toggle:hover { color: #fff !important; background: rgba(0,0,0,0.18); }
.nav-bar-dark .nav-item.is-open .nav-dropdown-toggle { color: #fff !important; background: rgba(0,0,0,0.18); }
.nav-bar-dark .nav-dropdown-toggle .chevron { stroke: #fff !important; }

.dropdown-item {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  font-size: 1rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.dropdown-item:hover { background: #F1F4F8; color: var(--navy); }
.dropdown-item.active { color: var(--brand); background: rgba(14,165,233,0.08); }
.dropdown-item .item-sub { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; font-weight: 400; }
.dropdown-divider { height: 1px; background: #E2E8F0; margin: 0.4rem 0.25rem; }

/* Mobile dropdown panels */
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.625rem 0; font-size: 1rem; font-weight: 500;
  background: transparent; border: 0; color: var(--text);
  cursor: pointer; font-family: inherit;
}
.mobile-dropdown-toggle .chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.mobile-dropdown-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mobile-dropdown-toggle.active { color: var(--brand); }
.mobile-dropdown-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  padding-left: 0.75rem; margin-left: 0.25rem;
  border-left: 2px solid #E2E8F0;
}
.mobile-dropdown-panel.open { max-height: 600px; opacity: 1; padding-bottom: 0.5rem; }
.mobile-dropdown-panel a { display: block; padding: 0.45rem 0.5rem; font-size: 0.9rem; color: var(--text-2); border-radius: 0.25rem; }
.mobile-dropdown-panel a:hover { color: var(--navy); background: #F8FAFC; }
.mobile-dropdown-panel a.active { color: var(--brand); font-weight: 600; }

/* Subtle button lift */
.btn-lift { transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.15s ease; }
.btn-lift:hover { transform: translateY(-1px); }

/* Hover arrow */
.arrow-link { display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s ease; }
.arrow-link:hover { gap: 0.6rem; }

/* Process timeline line */
.timeline-line { background: linear-gradient(to right, rgba(14,124,123,0.0) 0%, rgba(14,124,123,0.35) 10%, rgba(14,124,123,0.35) 90%, rgba(14,124,123,0.0) 100%); }

/* Sticky bottom bar */
.mobile-bar { box-shadow: none; border-top: none; padding-bottom: env(safe-area-inset-bottom, 0px); background: white; }
.mobile-bar::before { content: ''; position: absolute; inset-x: 0; top: 0; height: 1px; background: linear-gradient(to right, transparent, #CBD5E1 20%, #CBD5E1 80%, transparent); }
body { padding-bottom: 0; }
@media (max-width: 767px) { body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); } }

/* Quote-mark accent */
.quote-mark::before { content: '\201C'; font-family: 'Manrope', serif; font-weight: 800; font-size: 3.5rem; line-height: 0.8; color: var(--teal); display: block; margin-bottom: 0.5rem; }

/* Form styling consistency */
.field-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text); margin-bottom: 0.375rem; }
.field-input { width: 100%; border-radius: 0.5rem; border: 1px solid #CBD5E1; background: #fff; padding: 0.75rem 1rem; font-size: 0.9375rem; color: var(--text); transition: border-color 0.15s, box-shadow 0.15s; }
.field-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,124,123,0.18); }
.field-input::placeholder { color: var(--muted); }

/* Pill toggle */
.pill-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.pill-toggle label { cursor: pointer; padding: 0.55rem 1rem; border-radius: 9999px; border: 1px solid #CBD5E1; font-size: 0.875rem; font-weight: 500; color: var(--text-2); transition: all 0.15s; background: #fff; }
.pill-toggle input:checked + label { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Showroom photo treatment — tone down the yellow walls so photos sit in the navy/sky palette */
.img-tone { filter: saturate(0.82); }
.gallery-item img { filter: saturate(0.85); }

/* No-prose link reset for content links */
a { color: inherit; }

/* Prose helper for long-form content sections (used in category and sub-pages) */
.prose-glass { color: var(--text-2); }
.prose-glass p { margin: 1rem 0; max-width: 80ch; }
.prose-glass h2 { color: var(--navy); margin-top: 2.5rem; margin-bottom: 1rem; max-width: 80ch; }
.prose-glass h3 { color: var(--navy); margin-top: 2rem; margin-bottom: 0.75rem; max-width: 80ch; }
.prose-glass ul, .prose-glass ol { margin: 1rem 0 1rem 1.25rem; max-width: 80ch; }
.prose-glass ul { list-style: disc; }
.prose-glass ol { list-style: decimal; }
.prose-glass li { margin: 0.5rem 0; }
.prose-glass strong { color: var(--navy); }
.prose-glass a { color: var(--brand); text-decoration: underline; text-decoration-color: rgba(14,165,233,0.35); text-underline-offset: 3px; }
.prose-glass a:hover { text-decoration-color: var(--brand); }

/* ============ GALLERY ============ */
.gallery-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.88rem; font-weight: 700;
  border: 2px solid #CBD5E1;
  background: white; color: var(--text-2);
  cursor: pointer; transition: all 0.15s;
  white-space: nowrap;
}
.gallery-btn:hover { border-color: var(--brand); color: var(--brand); }
.gallery-btn.active { background: var(--brand); border-color: var(--brand); color: white; }

.gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
  cursor: pointer;
}
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-caption {
  position: absolute; inset-x-0; bottom: 0;
  background: linear-gradient(to top, rgba(12,47,78,0.85) 0%, transparent 100%);
  padding: 1.5rem 0.875rem 0.75rem;
  color: white; font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-item[data-hidden] { display: none; }

/* Lightbox */
#galleryLightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,47,78,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
#galleryLightbox.open { display: flex; }
#galleryLightbox img { max-height: 80vh; max-width: 100%; border-radius: 0.75rem; object-fit: contain; }
#lbClose { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; line-height: 1; padding: 0.25rem 0.5rem; }
#lbClose:hover { color: var(--brand); }
#lbPrev, #lbNext {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  font-size: 1.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
#lbPrev:hover, #lbNext:hover { background: var(--brand); }
#lbPrev { left: 1rem; }
#lbNext { right: 1rem; }
#lbCaption { color: rgba(255,255,255,0.8); text-align: center; font-size: 0.9rem; margin-top: 0.75rem; }

/* ============ COLOR & FINISH SWATCHES ============ */
.swatch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.swatch-grid.is-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 28rem; }
.swatch {
  border-radius: 0.85rem; border: 1px solid #E2E8F0; background: #fff; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,47,79,0.04);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.swatch:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(15,47,79,0.22); }
/* Per-swatch coloured glow on hover (matches each finish/tint) */
.swatch:has(.chip-bronze):hover    { box-shadow: 0 14px 30px -8px rgba(90,70,50,0.55); }
.swatch:has(.chip-black):hover     { box-shadow: 0 14px 30px -8px rgba(28,28,28,0.50); }
.swatch:has(.chip-anodized):hover  { box-shadow: 0 14px 30px -8px rgba(150,158,167,0.60); }
.swatch:has(.chip-mahogany):hover  { box-shadow: 0 14px 30px -8px rgba(90,26,20,0.55); }
.swatch:has(.chip-hazelnut):hover  { box-shadow: 0 14px 30px -8px rgba(122,92,67,0.55); }
.swatch:has(.chip-white):hover     { box-shadow: 0 14px 30px -8px rgba(148,163,184,0.45); }
.swatch:has(.chip-glass.clear):hover  { box-shadow: 0 14px 30px -8px rgba(120,170,200,0.50); }
.swatch:has(.chip-glass.white):hover  { box-shadow: 0 14px 30px -8px rgba(160,180,190,0.50); }
.swatch:has(.chip-glass.gray):hover   { box-shadow: 0 14px 30px -8px rgba(90,99,104,0.55); }
.swatch:has(.chip-glass.bronze):hover { box-shadow: 0 14px 30px -8px rgba(90,70,50,0.55); }
.swatch:has(.chip-glass.green):hover  { box-shadow: 0 14px 30px -8px rgba(60,110,90,0.55); }
.swatch:has(.chip-glass.azuria):hover { box-shadow: 0 14px 30px -8px rgba(60,130,150,0.55); }
.swatch .chip { display: block; height: 88px; width: 100%; }
.swatch .label { display: block; padding: 0.6rem 0.8rem; font-size: 0.85rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.swatch .label .sub { display: block; font-size: 0.72rem; font-weight: 500; color: var(--muted); margin-top: 0.1rem; }

/* Frame finishes */
.chip-white    { background: #FFFFFF; box-shadow: inset 0 0 0 1px #E2E8F0; }
.chip-bronze   { background: #5A4632; }
.chip-black    { background: #1C1C1C; }
.chip-anodized { background: linear-gradient(135deg, #D7DCE1 0%, #AEB4BB 50%, #C9CFD5 100%); }
.chip-mahogany { background: #5A1A14; }
.chip-hazelnut { background: #7A5C43; }

/* Glass tints (translucent film over a sky backdrop) */
.chip-glass.clear  { background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.10)), #E7F1F6; }
.chip-glass.white  { background: linear-gradient(135deg, rgba(255,255,255,0.60), rgba(255,255,255,0.20)), #EFF3F5; }
.chip-glass.gray   { background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0)), rgba(90,99,104,0.55); }
.chip-glass.bronze { background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0)), rgba(90,70,50,0.50); }
.chip-glass.green  { background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0)), rgba(60,110,90,0.50); }
.chip-glass.azuria { background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0)), rgba(60,130,150,0.55); }

/* ============ COLOR CONFIGURATOR (live preview) ============ */
.cfg { --frame-color: #FFFFFF; --glass-color: #DDEAF0; }
.cfg-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .cfg-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

.win-wrap { display: flex; justify-content: center; }
.win {
  width: 100%; max-width: 360px; aspect-ratio: 3 / 4.3;
  background: var(--frame-color);
  border-radius: 6px; padding: 16px;
  box-shadow: 0 22px 48px -18px rgba(15,47,79,0.5), inset 0 0 0 1px rgba(0,0,0,0.14);
  transition: background 0.25s ease;
}
.win-glass {
  position: relative; width: 100%; height: 100%; border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(210deg, rgba(255,255,255,0) 62%, rgba(255,255,255,0.22) 100%),
    var(--glass-color);
  box-shadow: inset 0 0 0 2px rgba(20,30,40,0.55);
  transition: background 0.25s ease;
}
/* sash / mullion variants share the frame color */
.win-glass.sash-single::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 7px; transform: translateY(-50%); background: var(--frame-color); box-shadow: 0 0 0 1px rgba(0,0,0,0.25); transition: background 0.25s ease; }
.win-glass.sash-slide::before  { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 7px; transform: translateX(-50%); background: var(--frame-color); box-shadow: 0 0 0 1px rgba(0,0,0,0.25); transition: background 0.25s ease; }
.win-glass.sash-casement::after { content: ""; position: absolute; right: 12px; top: 50%; width: 4px; height: 36px; transform: translateY(-50%); border-radius: 2px; background: rgba(20,30,40,0.5); }

/* SVG window illustration (recolors via the same --frame-color / --glass-color vars) */
.win-svg { width: 100%; max-width: 352px; height: auto; display: block; filter: drop-shadow(0 20px 28px rgba(15,47,79,0.26)); }
.win-svg.win-svg--wide { max-width: 430px; }
.win-svg .fr   { fill: var(--frame-color); stroke: rgba(15,47,79,0.22); stroke-width: 1.5; transition: fill 0.25s ease; }
.win-svg .rl   { fill: var(--frame-color); stroke: rgba(15,47,79,0.28); stroke-width: 1; transition: fill 0.25s ease; }
.win-svg .gl   { fill: var(--glass-color); transition: fill 0.25s ease; }
.win-svg .glln { fill: none; stroke: rgba(20,30,40,0.5); stroke-width: 2; }
.win-svg .hw   { fill: #2A3540; }
.win-svg .refl { fill: #ffffff; opacity: 0.12; pointer-events: none; }

/* configurator swatches */
.cfg-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.7rem; }
.sw-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.sw { background: none; border: 0; padding: 0; cursor: pointer; text-align: center; font-family: inherit; }
.sw .sw-chip { display: block; width: 52px; height: 52px; border-radius: 8px; border: 1px solid #CBD5E1; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.sw:hover .sw-chip { transform: translateY(-1px); }
.sw.is-active .sw-chip { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--teal); }
.sw .sw-name { display: block; margin-top: 0.4rem; font-size: 0.78rem; font-weight: 500; color: var(--text-2); }
.sw.is-active .sw-name { font-weight: 700; color: var(--navy); }

/* ============ CARD HOVER LIFT ============ */
/* Every white content card lifts slightly and deepens its shadow on hover.
   Targets the shared card pattern (bg-white + shadow-card / shadow-cardHover)
   so the effect applies site-wide without per-card markup changes. Cards that
   already declare `hover:shadow-cardHover` keep working — this just adds the lift. */
.bg-white.shadow-card,
.bg-white.shadow-cardHover {
  transition: transform 0.22s ease, box-shadow 0.25s ease;
}
.bg-white.shadow-card:hover,
.bg-white.shadow-cardHover:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(15,47,79,0.06), 0 24px 48px -12px rgba(15,47,79,0.18);
}
@media (prefers-reduced-motion: reduce) {
  .bg-white.shadow-card:hover,
  .bg-white.shadow-cardHover:hover { transform: none; }
}

/* ============ PHOTO ZOOM ON HOVER ============ */
/* Wrapper clips the image (overflow:hidden) so the zoom never spills past the
   rounded frame. Apply `.photo-zoom` to the div that directly wraps an <img>. */
.photo-zoom { overflow: hidden; }
.photo-zoom img { transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
.photo-zoom:hover img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .photo-zoom:hover img { transform: none; }
}

/* ============ WINDOW PREVIEW HOVER (color configurator) ============ */
/* Lift + deeper shadow, and a light glare sweeps across the glass on hover. */
.win-svg { transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1), filter 0.45s ease; cursor: pointer; }
.win-svg:hover { transform: translateY(-6px) scale(1.015); filter: drop-shadow(0 26px 34px rgba(15,47,79,0.34)); }
.win-svg .refl { transition: transform 0.8s cubic-bezier(0.22,0.61,0.36,1), opacity 0.8s ease; }
.win-svg:hover .refl { transform: translateX(64px); opacity: 0.26; }

.win { transition: transform 0.45s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.45s ease, background 0.25s ease; cursor: pointer; }
.win:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 32px 60px -18px rgba(15,47,79,0.6), inset 0 0 0 1px rgba(0,0,0,0.14); }

@media (prefers-reduced-motion: reduce) {
  .win-svg:hover, .win:hover { transform: none; }
  .win-svg:hover .refl { transform: none; }
}

/* ============ STANDALONE PHOTO HOVER ============ */
/* Editorial images not wrapped in .photo-zoom or .gallery-item get a lift + deeper shadow. */
img.rounded-2xl { transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1), box-shadow 0.35s ease; }
img.rounded-2xl:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -14px rgba(15,47,79,0.30); }
@media (prefers-reduced-motion: reduce) { img.rounded-2xl:hover { transform: none; } }