/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #8A6E2F;
  --dark:       #0A0A0B;
  --dark-2:     #111114;
  --dark-3:     #18181D;
  --dark-4:     #222228;
  --mid:        #2E2E36;
  --line:       rgba(201,168,76,0.15);
  --text:       #E8E4DC;
  --text-muted: #8A8880;
  --text-dim:   #5A5855;
  --up:         #4CAF7A;
  --down:       #E05555;
  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

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

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

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

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(10,10,11,0.97); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 45px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(73%) sepia(35%) saturate(548%) hue-rotate(8deg) brightness(95%) contrast(87%);
  transition: filter var(--transition);
}
.logo:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(35%) saturate(648%) hue-rotate(8deg) brightness(105%) contrast(95%);
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.btn-nav {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--gold); color: var(--dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 40px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: 
    linear-gradient(135deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.85) 50%, rgba(10,10,11,0.92) 100%),
    url('https://images.unsplash.com/photo-1610375461246-83df859d849d?w=1920&q=90');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding-bottom: 80px;
}

.hero-tag {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}

.hero-sub {
  max-width: 520px;
  font-size: 16px; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}

/* TICKER */
.hero-ticker {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(17,17,20,0.8);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.tick {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.tick-name {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.tick-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400;
  color: var(--text);
}
.tick-change {
  font-size: 11px; font-weight: 500;
}
.tick-change.up { color: var(--up); }
.tick-change.down { color: var(--down); }

/* ===== STATS ===== */
.stats {
  background: var(--dark-3);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 40px;
}
.stat {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SECTION COMMON ===== */
.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
}
.section-header {
  margin-bottom: 64px;
}
.section-header.light h2 { color: var(--text); }
.section-tag {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--text);
}
.section-note {
  margin-top: 12px;
  font-size: 13px; color: var(--text-dim);
}

/* ===== SERVICES ===== */
.services { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--dark-2);
  padding: 44px 36px;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--dark-3); }
.service-card.featured {
  background: var(--dark-3);
  border-top: 2px solid var(--gold);
}
.service-icon {
  font-size: 24px; color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 24px; font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}
.service-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.service-card ul {
  list-style: none; margin-bottom: 28px;
}
.service-card ul li {
  font-size: 13px; color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before {
  content: '—'; color: var(--gold-dim); font-size: 10px;
}
.service-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.service-link:hover { color: var(--gold-light); }

/* ===== MARKETS ===== */
.markets { background: var(--dark); }
.prices-table {
  border: 1px solid var(--line);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr 2fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background var(--transition);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover:not(.header) { background: var(--dark-3); }
.price-row.header {
  background: var(--dark-3);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 28px;
}
.metal-name {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
}
.metal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.metal-dot.gold { background: #C9A84C; }
.metal-dot.silver { background: #A8A8A8; }
.metal-dot.platinum { background: #7EC8E3; }
.metal-dot.palladium { background: #B8A0D0; }
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--text);
}
.change { font-size: 13px; font-weight: 500; }
.change.up { color: var(--up); }
.change.down { color: var(--down); }
.range { font-size: 13px; color: var(--text-dim); }
.price-disclaimer {
  margin-top: 16px;
  font-size: 12px; color: var(--text-dim);
  text-align: right;
}

/* ===== PRICE CHARTS ===== */
.price-charts {
  margin-top: 40px;
}
.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.chart-widget {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.chart-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.chart-widget h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 15px;
  text-align: center;
}
.chart-widget iframe {
  background: var(--dark-2);
  border-radius: 8px;
}

/* ===== WHY ===== */
.why { background: var(--dark-3); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.why-text .section-tag { margin-bottom: 16px; }
.why-text h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  margin-bottom: 24px;
}
.why-text p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 16px;
}
.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.badge {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--line);
  color: var(--text-muted);
}
.why-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  align-self: start;
}
.pillar {
  background: var(--dark-3);
  padding: 32px 28px;
  transition: background var(--transition);
}
.pillar:hover { background: var(--dark-4); }
.pillar-num {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.pillar h4 {
  font-size: 20px; font-weight: 400;
  margin-bottom: 10px; color: var(--text);
}
.pillar p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7;
}

/* ===== INSIGHTS ===== */
.insights { background: var(--dark-2); }
.insights-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.insight-card {
  background: var(--dark-2);
  padding: 40px 36px;
  transition: background var(--transition);
  display: flex; flex-direction: column;
}
.insight-card:hover { background: var(--dark-3); }
.insight-meta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.insight-card h3 {
  font-size: 22px; font-weight: 400;
  color: var(--text); margin-bottom: 14px;
  line-height: 1.3;
}
.insight-card.large h3 { font-size: 28px; }
.insight-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.insight-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
  align-self: flex-start;
}
.insight-link:hover { color: var(--gold-light); }

/* News Source Cards */
.insight-card.news-source {
  text-align: center;
  align-items: center;
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.insight-card.news-source:hover {
  background: var(--dark-3);
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.news-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
  font-weight: 300;
  transition: all var(--transition);
}
.insight-card.news-source:hover .news-icon {
  opacity: 1;
  color: var(--gold-light);
  transform: scale(1.1);
}
.insight-card.news-source h3 {
  color: var(--gold-light);
  margin-bottom: 16px;
}
.insight-card.news-source p {
  text-align: center;
}
.insight-card.news-source .insight-link {
  align-self: center;
}

/* ===== CONTACT ===== */
.contact { background: var(--dark); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-text h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  margin-bottom: 20px;
}
.contact-text > p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim);
}
.contact-item span:last-child {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6;
}

/* FORM */
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--dark-3);
  padding: 44px 40px;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-note {
  font-size: 12px; color: var(--text-dim);
  text-align: center; line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 80px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px; color: var(--text-dim);
  line-height: 1.7; max-width: 280px;
}
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.footer-bottom p {
  font-size: 11px; color: var(--text-dim);
  line-height: 1.6;
}
.disclaimer { color: var(--text-dim); opacity: 0.6; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.large { grid-column: span 2; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 0; }
  .section-inner { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .price-row .range, .price-row.header span:last-child { display: none; }
  .charts-grid { grid-template-columns: 1fr; }
  .why-pillars { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card.large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}

/* ===== PHOTO BAND ===== */
.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
  overflow: hidden;
}
.photo-item {
  position: relative;
  overflow: hidden;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7) saturate(0.8);
}
.photo-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1);
}
.photo-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

/* ===== WHY — updated layout ===== */
.why-inner {
  grid-template-columns: 1fr 1.4fr !important;
  gap: 64px !important;
}
.why-right {
  display: flex; flex-direction: column; gap: 32px;
}
.why-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 8px;
}
.why-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.4s ease;
}
.why-photo:hover { filter: brightness(0.9) saturate(1); }
.why-photo.tall {
  grid-row: span 2;
}
.why-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}

/* ===== PRICE FOOTER ===== */
.price-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
}
.price-disclaimer a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.price-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--up);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--up);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* FX dot */
.metal-dot.fx { background: #E8C97A; }

/* ===== RESPONSIVE additions ===== */
@media (max-width: 1024px) {
  .photo-band { grid-template-columns: repeat(2, 1fr); height: 360px; }
  .why-inner { grid-template-columns: 1fr !important; }
  .why-photo-grid { grid-template-rows: 160px 160px; }
}
@media (max-width: 768px) {
  .photo-band { grid-template-columns: repeat(2, 1fr); height: 260px; }
  .why-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .why-photo.tall { grid-row: span 1; height: 200px; }
  .why-photo { height: 160px; }
  .price-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
}
