/* ================================================================
   Erves Pogrebna Radnja — Static Landing (HTML/CSS/JS)
   Palette: #050505 background, #D4AF37 gold, #F5F5F0 text
   Fonts:  Playfair Display (headings) + Work Sans (body)
   ================================================================ */

:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-2: #121212;
  --gold: #d4af37;
  --gold-soft: #c5a059;
  --text: #f5f5f0;
  --text-mute: #a3a3a3;
  --text-soft: #d1d1d1;
  --border: #262626;
  --border-soft: #1a1a1a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
@media (max-width: 767px) { body { padding-bottom: 76px; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
::selection { background: rgba(212, 175, 55, 0.35); color: #fff; }

/* -------- Layout helpers -------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.gold-hairline {
  height: 1px;
  width: 96px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.6) 50%, transparent 100%);
}

/* -------- Typography -------- */
.display, .h2, h3, .form-title, .phone-number, .emergency-phone, .logo-name, .modal-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--gold); }

.display {
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
.h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.15;
  margin: 16px 0 0;
  color: var(--text);
}
.section-lead {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  color: var(--text-mute);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 640px;
  font-weight: 300;
}
.eyebrow, .eyebrow-plain {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.eyebrow .rule { display: inline-block; height: 1px; width: 56px; background: var(--gold); }
.mini-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-align: left;
  line-height: 1;
  font-family: inherit;
}
.btn i { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border-color: rgba(245, 245, 240, 0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 22px 40px; font-size: 1.125rem; font-weight: 600; }
.btn-block { width: 100%; justify-content: center; }
.btn-stack { display: flex; flex-direction: column; gap: 3px; }
.btn-stack strong { font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; }
.btn-stack small { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; opacity: 0.8; }

/* -------- Header -------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled, .site-header.menu-open {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }

.logo { display: flex; align-items: baseline; gap: 10px; }
.logo-name { font-size: 1.5rem; color: var(--text); letter-spacing: 0.02em; }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color 0.3s;
}
.logo:hover .logo-sub { color: var(--gold); }
@media (max-width: 560px) { .logo-sub { display: none; } }

.nav-desktop { display: none; gap: 40px; }
.nav-desktop a {
  position: relative;
  font-size: 0.875rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.header-actions { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: background-color 0.3s, color 0.3s;
}
.btn-header-call:hover { background: var(--gold); color: #000; }
.btn-header-call i { width: 16px; height: 16px; }

/* Language switch */
.lang-switch { display: inline-flex; align-items: center; gap: 8px; color: rgba(212, 175, 55, 0.4); font-size: 0.8rem; }
.lang-switch button {
  position: relative;
  background: none;
  border: 0;
  padding: 4px 2px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  cursor: pointer;
  transition: color 0.3s ease;
}
.lang-switch button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { color: var(--gold); }
.lang-switch button.active::after { transform: scaleX(1); }

.menu-toggle {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  width: 44px;
  height: 44px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle i { width: 22px; height: 22px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  background: rgba(5, 5, 5, 0.98);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fade-down 0.3s ease-out both;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu > a {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu > a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mobile-menu .lang-switch, .mobile-menu .lang-switch button { font-size: 1rem; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* -------- Image frames (img + fallback ako slika nedostaje) -------- */
.img-frame { position: relative; overflow: hidden; background: #111; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame.is-missing { border: 1px dashed rgba(212, 175, 55, 0.45); }
.img-frame.is-missing img { visibility: hidden; }
.img-frame.is-missing::after {
  content: attr(data-src);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  word-break: break-all;
}

/* -------- Hero -------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0a0a0a; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(5, 5, 5, 0.4) 100%);
}
.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%, rgba(5, 5, 5, 0.3) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 128px 24px 96px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-lead {
  margin-top: 32px;
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);
  color: var(--text-soft);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
@media (min-width: 560px) { .hero-ctas { flex-direction: row; align-items: stretch; } }

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.3;
}
.hero-badges li { display: flex; align-items: center; gap: 12px; }
.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.badge-icon i { width: 18px; height: 18px; }

.hero-rail {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: var(--text-mute);
  z-index: 1;
}
.rail-line { height: 96px; width: 1px; background: rgba(212, 175, 55, 0.4); }
.rail-text { writing-mode: vertical-rl; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; }
@media (min-width: 1280px) { .hero-rail { display: flex; } }

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  z-index: 1;
}

/* -------- Section shared -------- */
.section-head { margin-bottom: 64px; }
.section-head .h2 { max-width: 700px; }
.section-head-split { display: grid; gap: 32px; margin-bottom: 64px; }
@media (min-width: 1024px) {
  .section-head-split { grid-template-columns: 5fr 1fr 6fr; gap: 48px; align-items: end; }
  .section-head-split .section-lead { grid-column: 3 / 4; margin: 0; }
}

.international-support {
  position: relative;
  padding: 96px 0 104px;
  background: #f7f5f0;
  color: #151515;
  border-top: 1px solid #ded9ce;
  overflow: hidden;
}

@media (min-width: 768px) {
  .international-support {
    padding: 128px 0 136px;
  }
}


/* Subtle decorative gold detail */
.international-support::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(154, 120, 27, 0.55),
    transparent
  );
}


/* -------- Heading -------- */

.international-head {
  max-width: 850px;
  margin-bottom: 64px;
}

.international-support .eyebrow {
  color: #8f711c;
  margin-bottom: 28px;
}

.international-support .eyebrow .rule {
  background: #8f711c;
}

.international-support .h2 {
  color: #151515;
  max-width: 800px;
  margin-top: 0;
}

.international-support .h2 em {
  color: #9a781b;
}

.international-lead {
  max-width: 760px;
  margin: 28px 0 0;

  color: #55524c;

  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
}


/* -------- Main Grid -------- */

.international-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 960px) {
  .international-grid {
    grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
    gap: 72px;
  }
}


/* -------- Left Content -------- */

.international-content > p {
  max-width: 680px;
  margin: 0 0 40px;

  color: #4f4c46;

  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}


/* -------- Services List -------- */

.international-services {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #d8d2c7;
}

@media (min-width: 640px) {
  .international-services {
    grid-template-columns: 1fr 1fr;
  }
}

.international-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 20px 16px 20px 0;

  color: #292723;

  font-size: 0.92rem;
  line-height: 1.55;

  border-bottom: 1px solid #d8d2c7;
}

@media (min-width: 640px) {
  .international-item:nth-child(odd) {
    padding-right: 28px;
  }

  .international-item:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid #d8d2c7;
  }
}

.international-number {
  flex-shrink: 0;

  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;

  color: #9a781b;
}


/* -------- Highlight Card -------- */

.international-highlight {
  position: relative;

  background: #ffffff;

  border: 1px solid #d8d2c7;
  border-top: 3px solid #9a781b;
  border-radius: 2px;

  padding: 32px;

  box-shadow: 0 12px 35px rgba(20, 18, 12, 0.06);
}

@media (min-width: 768px) {
  .international-highlight {
    padding: 40px;
  }
}

.international-highlight-label {
  margin-bottom: 18px;

  color: #8f711c;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.international-highlight h3 {
  margin: 0 0 20px;

  color: #151515;

  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 1vw + 1rem, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
}

.international-highlight > p {
  margin: 0;

  color: #4f4c46;

  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}


/* Divider */

.international-divider {
  width: 48px;
  height: 1px;

  margin: 28px 0;

  background: #9a781b;
}


/* Secondary text */

.international-highlight .international-small {
  color: #68645c;
  font-size: 0.875rem;
  line-height: 1.7;
}


/* -------- 24h Availability -------- */

.international-available {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 32px;
  padding-top: 24px;

  border-top: 1px solid #e2ddd4;
}

.available-dot {
  position: relative;

  width: 10px;
  height: 10px;

  flex-shrink: 0;

  background: #9a781b;
  border-radius: 50%;
}

.available-dot::after {
  content: "";

  position: absolute;
  inset: -5px;

  border: 1px solid rgba(154, 120, 27, 0.35);
  border-radius: 50%;
}

.international-available div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.international-available strong {
  color: #25231f;

  font-size: 0.9rem;
  font-weight: 600;
}

.international-available span:not(.available-dot) {
  color: #777269;

  font-size: 0.75rem;
  font-weight: 300;
}


/* -------- Mobile -------- */

@media (max-width: 639px) {
  .international-head {
    margin-bottom: 48px;
  }

  .international-grid {
    gap: 40px;
  }

  .international-highlight {
    padding: 28px 24px;
  }
}

/* -------- Services -------- */
.services {
  padding: 96px 0;
  background: #f7f5f0;
  border-top: 1px solid #ded9ce;
  color: #151515;
}

@media (min-width: 768px) {
  .services {
    padding: 128px 0;
  }
}

/* Section heading */
.services .h2 {
  color: #151515;
}

/* Text below / next to heading */
.services .section-lead {
  color: #55524c;
}

/* Eyebrow — darker gold for light background */
.services .eyebrow,
.services .eyebrow-plain {
  color: #8f711c;
}

/* Gold line next to eyebrow */
.services .eyebrow .rule {
  background: #8f711c;
}

/* Gold italic text inside heading, if used */
.services em {
  color: #9a781b;
}


/* -------- Service Grid -------- */

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* -------- Service Card -------- */

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd8ce;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  box-shadow: 0 4px 18px rgba(20, 18, 12, 0.04);

  transition:
    border-color 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease;
}


/* Gold line at top of card */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #9a781b;
  transition: width 0.7s ease;
  z-index: 2;
}


/* Card hover */
.service-card:hover {
  border-color: #b39132;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20, 18, 12, 0.09);
}

.service-card:hover::before {
  width: 100%;
}


/* -------- Card Image -------- */

.card-img {
  aspect-ratio: 4 / 3;
}

.card-img img {
  transition: transform 0.8s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.04);
}


/* -------- Card Content -------- */

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 28px;
}


/* Card number — darker gold */
.card-num {
  font-family: "Playfair Display", serif;
  color: #9a781b;
  font-size: 0.875rem;
  margin-bottom: 12px;
}


/* Card title */
.service-card h3 {
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #151515;
}


/* Card description */
.service-card p {
  font-size: 0.92rem;
  color: #5d5a54;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}


/* -------- Card Link -------- */

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 24px;
  padding: 0;

  background: none;
  border: 0;

  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;

  color: #25231f;

  cursor: pointer;
  text-align: left;

  transition: color 0.3s ease;
}


/* Arrow box */
.card-link .arrow {
  width: 36px;
  height: 36px;

  border: 1px solid #b39132;
  border-radius: 2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #8f711c;
  flex-shrink: 0;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.card-link .arrow i {
  width: 16px;
  height: 16px;
}


/* Link hover */
.card-link:hover {
  color: #8f711c;
}

.card-link:hover .arrow {
  background: #9a781b;
  border-color: #9a781b;
  color: #ffffff;
  transform: translateX(4px);
}

/* -------- Why Erves -------- */
.why { padding: 96px 0; background: var(--bg); border-top: 1px solid var(--border-soft); }
@media (min-width: 768px) { .why { padding: 128px 0; } }
.why-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }

.why-image { position: relative; border: 1px solid var(--border); border-radius: 2px; }
.why-image .img-frame { height: 480px; }
@media (min-width: 768px) { .why-image .img-frame { height: 600px; } }
.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}
.why-image-frame {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: none;
  pointer-events: none;
  border-radius: 2px;
}
@media (min-width: 1024px) { .why-image-frame { display: block; } }
.why-content .section-lead { margin-bottom: 48px; }

.reasons { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .reasons { grid-template-columns: 1fr 1fr; } }
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.reason-icon i { width: 20px; height: 20px; }
.reason h3 { font-size: 1.125rem; color: var(--text); margin: 0 0 8px; }
.reason p { font-size: 0.875rem; color: var(--text-mute); font-weight: 300; line-height: 1.7; margin: 0; }

/* -------- Emergency CTA -------- */
.emergency { position: relative; padding: 96px 0; overflow: hidden; background: #0a0a0a; }
@media (min-width: 768px) { .emergency { padding: 128px 0; } }
.emergency-bg { position: absolute; inset: 0; }
.emergency-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.emergency-overlay { position: absolute; inset: 0; background: rgba(5, 5, 5, 0.85); }
.emergency-inner { position: relative; max-width: 800px; text-align: center; margin: 0 auto; }
.emergency-inner .gold-hairline { margin-bottom: 32px; }
.emergency-inner .h2 { max-width: none; }
.emergency-inner .section-lead { margin: 24px auto 0; text-align: center; }
.emergency-actions { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.emergency-phone { font-size: clamp(1.5rem, 1vw + 1rem, 2rem); color: var(--text); letter-spacing: 0.02em; }

/* -------- Contact -------- */
.contact { padding: 96px 0; background: #0a0a0a; border-top: 1px solid var(--border-soft); }
@media (min-width: 768px) { .contact { padding: 128px 0; } }
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-phone-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
  transition: border-color 0.3s;
}
.contact-phone-block:hover { border-color: rgba(212, 175, 55, 0.6); }
.phone-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #000;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phone-icon i { width: 20px; height: 20px; }
.phone-number { font-size: clamp(1.35rem, 0.8vw + 1rem, 1.75rem); color: var(--text); transition: color 0.3s; }
.contact-phone-block:hover .phone-number { color: var(--gold); }

.info-two { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .info-two { grid-template-columns: 1fr 1fr; } }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 2px; padding: 24px; }
.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.info-icon i { width: 16px; height: 16px; }
.info-text { color: var(--text); font-weight: 300; line-height: 1.7; }

.maps-embed { position: relative; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; height: 288px; background: #0d0d0d; }
.maps-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.maps-placeholder-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(5, 5, 5, 0.85);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.maps-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(5, 5, 5, 0.85);
  padding: 8px 14px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  transition: background-color 0.3s, color 0.3s;
}
.maps-link:hover { background: var(--gold); color: #000; }

.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 2px; padding: 32px; }
@media (min-width: 768px) { .contact-form { padding: 40px; } }
.form-title { font-size: clamp(1.5rem, 0.8vw + 1rem, 1.875rem); margin: 0 0 8px; color: var(--text); }
.form-sub { font-size: 0.875rem; color: var(--text-mute); font-weight: 300; margin: 0 0 32px; }
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: none; }
.form-hint { font-size: 0.75rem; color: rgba(163, 163, 163, 0.8); text-align: center; margin: 12px 0 0; font-weight: 300; }
.form-hint a { color: var(--gold); }
.form-hint a:hover { text-decoration: underline; }

/* -------- Footer -------- */
.site-footer { background: #030303; border-top: 1px solid var(--border-soft); padding: 64px 0 40px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; } }
.footer-brand p { color: var(--text-mute); font-weight: 300; font-size: 0.875rem; line-height: 1.7; margin: 24px 0 0; max-width: 400px; }
.footer-title { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 300;
}
.footer-links li { display: flex; align-items: flex-start; gap: 8px; }
.footer-links li i { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-mute);
  font-weight: 300;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-hours { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }

/* -------- Mobile sticky call -------- */
.mobile-sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  z-index: 50;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}
.mobile-sticky-call i { width: 20px; height: 20px; }
@media (min-width: 768px) { .mobile-sticky-call { display: none; } }

/* -------- Service modal -------- */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; }
@media (min-width: 768px) { .modal { align-items: center; padding: 32px; } }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal.open .modal-backdrop { opacity: 1; }
.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 2px;
  padding: 24px 20px 28px;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 768px) { .modal-dialog { padding: 36px 40px 40px; } }
.modal.open .modal-dialog { transform: translateY(0); opacity: 1; }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  padding: 8px 16px 8px 12px;
  color: var(--gold);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.modal-close:hover { background: var(--gold); color: #000; }
.modal-close i { width: 16px; height: 16px; }
.modal-title { font-size: clamp(1.6rem, 1.5vw + 1rem, 2.25rem); line-height: 1.15; margin: 8px 0 24px; padding-right: 130px; color: var(--text); }
.modal-gallery-label { margin: 0 0 12px; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.modal-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .modal-gallery { grid-template-columns: repeat(4, 1fr); } }
.modal-gallery .img-frame { aspect-ratio: 1 / 1; border-radius: 2px; border: 1px solid var(--border); }
.modal-gallery .img-frame.is-missing::after { font-size: 0.6rem; }
.modal-text { margin: 28px 0 0; }
.modal-text p { margin: 0 0 16px; color: var(--text-mute); font-size: 0.98rem; line-height: 1.7; }
.modal-text p:last-child { margin-bottom: 0; }
.modal-dialog .btn { margin-top: 28px; }

/* -------- Toast -------- */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -20px);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 0.9rem;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { border-color: rgba(220, 90, 90, 0.5); }
.toast.success { border-color: rgba(212, 175, 55, 0.6); }

/* -------- Animation -------- */
@keyframes fade-up { 0% { opacity: 0; transform: translateY(18px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fade-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fade-up 1.1s ease-out both; }
