/* Hayal Perde — public site */
:root {
  --ink: #2a211d;
  --ink-soft: #5c5049;
  --muted: #8a7d72;
  --cream: #faf6ef;
  --cream-dim: #f2ead9;
  --paper: #ffffff;
  --border: #e6dac6;
  --espresso: #2a1f1c;
  --espresso-2: #241a17;
  --gold: #b48a50;
  --gold-light: #c9a06a;
  --gold-pale: #f0e2c8;
  --danger: #b3402c;
  --ok: #4c7a52;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px -12px rgba(42, 31, 28, 0.28);
  --shadow-sm: 0 4px 14px -6px rgba(42, 31, 28, 0.22);
  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-shell main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.3px;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold-pale); color: var(--espresso); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--cream-dim); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--cream-dim); border-radius: 10px; }
*::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; border: 2px solid var(--cream-dim); }
*::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.eyebrow { color: var(--gold); font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; display: block; }
.lead { font-size: 1.12rem; max-width: 62ch; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.4px; border: 1.5px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--espresso); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-sm { padding: 8px 16px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: #1ebe5a; }

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
.whatsapp-fab:hover { background: #1ebe5a; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* Header */
.site-header { background: var(--espresso); position: sticky; top: 0; z-index: 60; box-shadow: 0 2px 18px rgba(0,0,0,0.22); transition: background 0.25s ease, box-shadow 0.25s ease; }
.site-header--transparent { position: absolute; left: 0; right: 0; background: linear-gradient(to bottom, rgba(20,15,13,0.6) 0%, rgba(20,15,13,0) 100%); box-shadow: none; }
.site-header--transparent.is-scrolled { position: fixed; background: var(--espresso); box-shadow: 0 2px 18px rgba(0,0,0,0.22); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 48px; width: auto; max-width: 180px; }
.brand-fallback { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.5rem; letter-spacing: 0.5px; }
.brand-tagline { display: none; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 10px 14px; color: #ece3d6; font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; letter-spacing: 0.3px; border-radius: 8px; transition: background 0.15s, color 0.15s; }
.nav-link:hover, .nav-link.active { background: rgba(180,138,80,0.18); color: var(--gold-light); }
.nav-item { position: relative; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.18s ease; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; color: var(--ink); font-size: 0.96rem; }
.dropdown a:hover { background: var(--cream-dim); color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { color: #ece3d6; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.header-phone svg { color: var(--gold-light); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 8px 10px; border-radius: 8px; }

@media (max-width: 980px) {
  .main-nav { position: fixed; z-index: 56; inset: 0 0 0 auto; width: min(320px, 88vw); background: var(--espresso-2); flex-direction: column; align-items: stretch; padding: 90px 20px 30px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.18); display: none; padding: 4px; }
  .nav-item.open .dropdown { display: block; }
  .dropdown a { color: #ece3d6; }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 55; }
  .nav-scrim.show { display: block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-row { gap: 10px; padding-top: 8px; padding-bottom: 8px; }
  .header-cta { gap: 8px; }
  .brand img { max-width: 130px; }
  .header-call-label { display: none; }
  .header-call-btn { padding: 10px 12px; }
  .nav-toggle { padding: 8px; }
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--espresso); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.9s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,19,16,0.86) 0%, rgba(26,19,16,0.55) 55%, rgba(26,19,16,0.35) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; color: #f2e6d2; font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 34px; height: 12px; flex-shrink: 0; background-image: repeating-linear-gradient(-45deg, var(--gold-light) 0, var(--gold-light) 2px, transparent 2px, transparent 6px); }
.hero-content h1 { color: #fff; }
.hero-content p { color: #e4d7c4; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }
.hero-call { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 10px 26px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); backdrop-filter: blur(2px); min-width: 220px; min-height: 60px; text-align: center; }
.hero-call:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.hero-call-label { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1.15; letter-spacing: 0.3px; color: var(--gold-light); }
.hero-call-number { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; line-height: 1; color: #fff; }
.hero-actions .btn-outline { padding: 10px 26px; border-radius: 14px; font-size: 1.15rem; min-width: 220px; min-height: 60px; background: #fff; color: var(--espresso); border-color: #fff; }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,0.85); color: var(--espresso); border-color: rgba(255,255,255,0.85); }
.hero-call--primary { background: var(--gold); border-color: var(--gold); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.hero-call--primary:hover { background: var(--espresso); border-color: var(--espresso); }
.hero-call--primary .hero-call-label { color: #fff; }
.hero-call--primary .hero-call-number { color: rgba(255,255,255,0.85); }
.hero-dots { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; padding: 0; }
.hero-dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }
.hero-arrow { position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); background: rgba(20,15,13,0.3); color: #fff; transition: background 0.15s ease, border-color 0.15s ease; }
.hero-arrow:hover { background: rgba(20,15,13,0.55); border-color: #fff; }
.hero-arrow-prev { left: 20px; transform: translateY(-50%) rotate(180deg); }
.hero-arrow-next { right: 20px; }
@media (max-width: 640px) {
  .hero-arrow { display: none; }
  .hero-call { padding: 7px 14px; min-width: 160px; min-height: 48px; }
  .hero-call-label { font-size: 1rem; }
  .hero-call-number { font-size: 0.75rem; }
  .hero-actions .btn-outline { padding: 8px 16px; font-size: 1rem; min-width: 160px; min-height: 48px; }
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; margin-top: 28px; }
.feature-card { position: relative; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.feature-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-num { position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-pale); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 0 0 6px var(--cream-dim); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; color: var(--espresso); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Product / category cards */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform 0.2s ease, box-shadow 0.2s ease; height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-dim); flex: none; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-body p { font-size: 0.95rem; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-link { color: var(--gold); font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }

/* Product slider */
.product-slider { position: relative; margin-top: 28px; }
.product-slider-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 4px; padding: 4px 4px 10px; scrollbar-width: none; }
.product-slider-track::-webkit-scrollbar { display: none; }
.product-slide { flex: 0 0 auto; width: calc((100% - 2 * 26px) / 3.3); scroll-snap-align: start; }
.slider-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); color: var(--espresso); display: flex; align-items: center; justify-content: center; z-index: 5; transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease; }
.slider-arrow.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.slider-arrow:hover { background: var(--gold); color: #fff; }
.slider-prev { left: -22px; }
.slider-next { right: -22px; }
.slider-prev svg { transform: scaleX(-1); }
@media (max-width: 1240px) { .slider-prev { left: -4px; } .slider-next { right: -4px; } }
@media (max-width: 980px) { .product-slide { width: calc((100% - 20px) / 2.2); } .product-slider-track { gap: 20px; } }
@media (max-width: 640px) { .product-slide { width: 78%; } .product-slider-track { gap: 14px; } .slider-arrow { display: none; } }

.cat-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.cat-section { scroll-margin-top: 90px; }
.cat-pill { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--border); font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--ink-soft); background: var(--paper); }
.cat-pill.active, .cat-pill:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* CTA band */
.cta-band { background: var(--espresso); color: #fff; border-radius: var(--radius); padding: 42px 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #d8cabb; margin: 0; }

/* Video */
.video-frame { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.6; }

/* Product detail */
.product-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: flex-start; }
@media (max-width: 860px) { .product-hero { grid-template-columns: 1fr; } }
.gallery-main { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--cream-dim); box-shadow: var(--shadow-sm); cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs button { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; aspect-ratio: 1; background: var(--cream-dim); }
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 4px; font-size: 0.96rem; }
.spec-table td:first-child { color: var(--muted); width: 40%; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.3px; }
.spec-table td:last-child { color: var(--ink); font-weight: 500; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { background: var(--gold-pale); color: var(--espresso); padding: 6px 14px; border-radius: 999px; font-size: 0.86rem; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.3px; }

/* Gallery page */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 28px; }
.insta-post { background: var(--paper); overflow: hidden; }
.insta-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.insta-photo img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.4s ease; }
.insta-post:hover .insta-photo img { transform: scale(1.06); }
.insta-count { position: absolute; top: 10px; right: 10px; display: flex; align-items: center; gap: 4px; background: rgba(42, 31, 28, 0.6); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; z-index: 1; }
.insta-count svg { width: 13px; height: 13px; }
.insta-caption { position: absolute; inset: auto 0 0 0; padding: 24px 14px 10px; background: linear-gradient(0deg, rgba(20,14,12,0.82), rgba(20,14,12,0)); opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; }
.insta-post:hover .insta-caption, .insta-post:focus-within .insta-caption { opacity: 1; transform: translateY(0); }
.insta-caption h3 { color: #fff; font-size: 0.86rem; font-weight: 600; margin: 0 0 2px; line-height: 1.25; }
.insta-caption span { color: rgba(255,255,255,0.75); font-size: 0.72rem; }
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; } }
@media (min-width: 980px) { .insta-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; } }

.lightbox { position: fixed; inset: 0; background: rgba(20,14,12,0.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox-close { top: 22px; right: 24px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }

/* Forms */
.form-grid { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--paper); font-family: var(--font-body); font-size: 1rem; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
.form-msg { padding: 12px 16px; border-radius: 10px; font-size: 0.95rem; margin-top: 6px; }
.form-msg.ok { background: #e7f0e6; color: var(--ok); }
.form-msg.err { background: #f5e2dd; color: var(--danger); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: grid; gap: 18px; margin: 22px 0; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.map-band { width: 100%; height: 420px; border-top: 1px solid var(--border); }
.map-band iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) { .map-band { height: 280px; } }
.contact-cta-panel { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 32px; align-self: start; }
.contact-cta-panel h3 { margin-bottom: 8px; }
.contact-cta-actions { display: grid; gap: 14px; margin-top: 22px; }
.contact-cta-actions .btn { font-size: 1.1rem; padding: 16px 22px; }

/* Footer */
.site-footer { background: var(--espresso-2); color: #cbbfae; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 34px; }
.footer-grid > div { min-width: 0; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .btn { width: 100%; white-space: normal; text-align: center; }
}
.footer-grid h5 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 0.4px; }
.footer-grid a, .footer-grid p { color: #b8ab99; font-size: 0.94rem; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand p { max-width: 32ch; }
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.social-row a:hover { background: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.86rem; color: #93887a; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* Hakkimizda quote */
.pull-quote { border-left: 4px solid var(--gold); padding-left: 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--espresso); margin: 24px 0; }
