/* ===========================================================
   Skyhigh — Drone Aerial Photography & Videography
   Static build of the Skyhigh Elementor Template Kit
   =========================================================== */

:root {
  --primary: #FFFDF3;
  --secondary: #0A0A0A;
  --text: #FFF9DE;
  --accent: #FEDF51;
  --accent-2: #FED30E;
  --bg-2: #242424;
  --bg-card: #131313;
  --red: #EF0000;
  --muted: #b9b6a6;
  --border: rgba(255, 255, 255, 0.08);

  --font-head: 'Exo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
  --radius: 10px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
.page-draft-notice {
  background: #fef3c7; color: #92400e; border-bottom: 1px solid #fcd34d;
  padding: 10px 0; font-size: 14px; font-weight: 600; text-align: center;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); }

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  padding: 14px 30px; border-radius: 6px;
  cursor: pointer; border: none; transition: var(--transition);
  font-size: 15px;
}
.btn-primary { background: var(--accent); color: #161616; }
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { background: var(--accent); color: #161616; border-color: var(--accent); }
.btn-light { background: #fff; color: #161616; }
.btn-light:hover { background: var(--accent); }

/* ---------- Top bar ---------- */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 44px; gap: 20px; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-slogan span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.topbar-slogan i { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lang-switch { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 2px; border: 1px solid var(--border); }
.lang-switch-btn { appearance: none; border: none; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 4px; cursor: pointer; line-height: 1; }
.lang-switch-btn:hover { color: #fff; }
.lang-switch-btn.is-active { background: var(--accent); color: #161616; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a:hover { color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0; line-height: 1; text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--primary);
}
.logo-default { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.logo-img {
  display: none; max-height: 42px; width: auto; max-width: 180px;
  object-fit: contain; flex-shrink: 0; vertical-align: middle;
}
.logo.has-image .logo-img { display: block; }
.logo.has-image .logo-default { display: none; }
.logo .logo-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--accent); font-size: 22px;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.nav a:hover, .nav a.active { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; background: none; border: none; color: var(--primary); font-size: 26px; cursor: pointer; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(8,8,8,0.55), rgba(8,8,8,0.85)),
    url('https://images.unsplash.com/photo-1506947411487-a56738267384?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  text-align: left;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { color: var(--accent); font-size: 11px; }

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(rgba(8,8,8,0.45), rgba(8,8,8,0.8)),
    url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-content { max-width: 680px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); margin-bottom: 22px; }
.hero p { font-size: 18px; color: #e8e4cf; margin-bottom: 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Service chips (3 across, under hero) ---------- */
.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: -60px; position: relative; z-index: 5; }
a.chip { display: block; text-decoration: none; color: inherit; }
.chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; text-align: center;
  transition: var(--transition);
}
.chip:hover, .chip.is-active { background: var(--accent); color: #161616; }
.chip:hover h3, .chip.is-active h3 { color: #161616; }
.chip:hover p, .chip.is-active p { color: #2b2b2b; }
.chip .chip-icon { font-size: 34px; color: var(--accent); margin-bottom: 14px; }
.chip:hover .chip-icon, .chip.is-active .chip-icon { color: #161616; }
.chip h3 { font-size: 20px; margin-bottom: 10px; }
.chip p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Two column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col .lead { color: var(--muted); margin-bottom: 22px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.feature-list i { color: var(--accent); margin-top: 4px; }

/* fancy framed image */
.framed-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.framed-img img { width: 100%; height: 100%; object-fit: cover; }

/* corner accents */
.corner-frame { position: relative; }
.corner-frame::before, .corner-frame::after {
  content: ''; position: absolute; width: 46px; height: 46px; border: 3px solid var(--accent);
}
.corner-frame::before { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.corner-frame::after { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 46px; font-weight: 700; color: var(--accent); }
.stat .label { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; overflow: hidden; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.service-card__photo { display: block; overflow: hidden; border-bottom: 1px solid var(--border); }
.service-card__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform .35s ease; }
.service-card:hover .service-card__photo img { transform: scale(1.05); }
.service-card__icon { padding: 28px 34px 0; }
.service-card__body { padding: 28px 34px 34px; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 18px; }
.service-card .more { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative; text-align: center; padding: 110px 0;
  background: linear-gradient(rgba(8,8,8,0.7), rgba(8,8,8,0.7)),
    url('../images/drones-web-hero-1.jpg') center/cover fixed no-repeat;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; max-width: 760px; margin-inline: auto; }
.cta-strip p { color: #ddd9c4; max-width: 640px; margin: 0 auto 30px; }

/* ---------- "Dedicated" feature block ---------- */
.dedicated { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dedicated-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dedicated-imgs img { border-radius: var(--radius); height: 100%; object-fit: cover; }
.dedicated-imgs img:first-child { grid-row: span 2; }
.feat-row { display: flex; gap: 16px; margin-bottom: 14px; padding: 18px; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border); }
.feat-row.is-highlight { background: var(--accent); }
.feat-row.is-highlight h4, .feat-row.is-highlight p { color: #161616; }
.feat-row .fr-icon { font-size: 26px; color: var(--accent); }
.feat-row.is-highlight .fr-icon { color: #161616; }
.feat-row h4 { font-size: 17px; margin-bottom: 4px; }
.feat-row p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ---------- Portfolio gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-size: 20px; }
.gallery-overlay span { color: var(--accent); font-size: 13px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: var(--transition); }
.price-card.is-popular, .price-card:hover { border-color: var(--accent); }
.price-head { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.price-head h3 { font-size: 20px; line-height: 1.3; margin: 0 0 14px; }
.price-wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px; }
.price-head .price { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.price-period { font-size: 13px; color: var(--muted); }
.price-card p.intro { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.price-features li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--text); font-size: 14.5px; }
.price-features i { color: var(--accent); }
.price-card .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h3 { font-size: 19px; }
.team-card .role { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a { width: 30px; height: 30px; display: grid; place-items: center; background: var(--accent); color: #161616; border-radius: 4px; font-size: 13px; }
.team-social a:hover { background: var(--primary); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; align-self: start; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--primary); }
.faq-item.open .faq-q { background: var(--accent); color: #161616; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px; color: var(--muted); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-item.open .faq-a p { padding: 18px 22px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid--archive .post-thumb { aspect-ratio: 1 / 1; }
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.post-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.post-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-thumb img { transform: scale(1.07); }
.post-body { padding: 24px; }
.post-meta { display: flex; gap: 18px; color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.post-meta i { color: var(--accent); margin-right: 6px; }
.post-body .post-title { font-size: 20px; margin: 0 0 10px; line-height: 1.35; }
.post-body .post-title a { color: inherit; text-decoration: none; }
.post-body .post-title a:hover { color: var(--accent); }
.post-body .post-excerpt { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }
.post-body h3 { font-size: 20px; margin-bottom: 10px; }
.post-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.post-body .more { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 14px; }

/* ---------- Partners carousel ---------- */
.partners-section { padding-bottom: 20px; }
.partners-carousel {
  position: relative; display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.partners-viewport {
  flex: 1; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.partners-viewport::-webkit-scrollbar { display: none; }
.partners-track {
  display: flex; align-items: center; gap: 24px;
  padding: 8px 4px 16px;
}
.partners-slide {
  flex: 0 0 auto; width: clamp(148px, 18vw, 220px);
  height: 88px; display: flex; align-items: center; justify-content: center;
  padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px); transition: var(--transition);
}
.partners-slide:hover { border-color: rgba(254, 223, 81, 0.45); transform: translateY(-2px); }
.partners-slide img {
  max-width: 100%; max-height: 56px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(1) brightness(1.15); opacity: 0.88;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.partners-slide:hover img { filter: none; opacity: 1; }
.partners-nav {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card); color: var(--text);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition);
}
.partners-nav:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) {
  .partners-nav { display: none; }
  .partners-viewport { mask-image: none; }
  .partners-viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
  .partners-slide { scroll-snap-align: start; }
}

/* ---------- Single post ---------- */
.post-single { max-width: 860px; margin: 0 auto; }
.portfolio-single { max-width: 1040px; }
.post-single .lead-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; }
.portfolio-featured { text-align: center; margin-bottom: 28px; }
.portfolio-featured-btn {
  display: inline-block; max-width: 100%; padding: 0; border: none; background: none;
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in; line-height: 0;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.portfolio-featured-btn img {
  display: block; max-width: 100%; width: auto; max-height: min(72vh, 760px);
  margin: 0 auto; object-fit: contain;
}
.portfolio-thumb-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-bottom: 34px; max-width: 100%;
}
.portfolio-thumb-grid:not([hidden]) { display: flex; }
.portfolio-thumb {
  display: block; width: 148px; flex: 0 0 148px; aspect-ratio: 4 / 3; padding: 0; border: none;
  border-radius: calc(var(--radius) - 2px); overflow: hidden; cursor: zoom-in;
  background: rgba(255,255,255,0.04); transition: transform .2s ease, box-shadow .2s ease;
}
.portfolio-thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(6,6,6,0.94);
  display: flex; align-items: center; justify-content: center; padding: 56px 72px;
}
.portfolio-lightbox[hidden] { display: none !important; }
.portfolio-lightbox-stage {
  max-width: min(1200px, 92vw); max-height: min(88vh, 900px);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-lightbox-stage img {
  max-width: 100%; max-height: min(88vh, 900px); width: auto; height: auto;
  object-fit: contain; border-radius: var(--radius);
}
.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  position: absolute; border: none; background: rgba(255,255,255,0.08); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.portfolio-lightbox-close:hover,
.portfolio-lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.portfolio-lightbox-close { top: 18px; right: 18px; font-size: 18px; }
.portfolio-lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.portfolio-lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .portfolio-lightbox { padding: 48px 16px; }
  .portfolio-lightbox-prev { left: 8px; }
  .portfolio-lightbox-next { right: 8px; }
}
.post-single h2 { font-size: 28px; margin: 30px 0 16px; }
.post-single p { color: var(--muted); margin-bottom: 18px; }
#post-content h2, #post-content h3, #post-content h4 { color: var(--text); margin: 28px 0 14px; }
#post-content h3 { font-size: 22px; }
#post-content h4 { font-size: 18px; }
#post-content ul, #post-content ol { color: var(--muted); margin: 0 0 18px 1.2em; }
#post-content li { margin-bottom: 8px; }
#post-content blockquote { border-left: 3px solid var(--accent); margin: 0 0 18px; padding: 8px 0 8px 18px; color: var(--muted); font-style: italic; }
#post-content a { color: var(--accent); }
#post-content img { max-width: 100%; border-radius: var(--radius); margin: 18px 0; }
#post-content table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
#post-content th, #post-content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
#service-content h2, #service-content h3, #service-content h4 { color: var(--text); margin: 28px 0 14px; }
#service-content h3 i { color: var(--accent); margin-right: 8px; font-size: 0.9em; }
#service-content p, #service-content li { color: var(--muted); }
#service-content ul, #service-content ol { margin: 0 0 18px 1.2em; }
#service-content a { color: var(--accent); }
#service-content img { max-width: 100%; border-radius: var(--radius); margin: 0; }
#service-content .service-lead { font-size: 1.12rem; color: var(--text); line-height: 1.65; margin-bottom: 28px; }
#service-content .service-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
#service-content .service-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(254,223,81,0.12); border: 1px solid rgba(254,223,81,0.35); color: var(--text); font-size: 13px; font-weight: 600; }
#service-content .service-badge i { color: var(--accent); }
#service-content .service-showcase { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 28px; }
#service-content .service-showcase figure { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); }
#service-content .service-showcase img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }
#service-content .service-showcase__side { display: grid; gap: 16px; }
#service-content .service-icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
#service-content .service-icon-grid--4 { grid-template-columns: repeat(4, 1fr); }
#service-content .service-icon-grid--3 { grid-template-columns: repeat(3, 1fr); }
#service-content .service-icon-grid--warn { grid-template-columns: repeat(3, 1fr); }
#service-content .service-icon-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: border-color .2s, transform .2s; }
#service-content .service-icon-card:hover { border-color: var(--accent); transform: translateY(-3px); }
#service-content .service-icon-card--warn { border-color: rgba(239,0,0,0.25); background: rgba(239,0,0,0.04); }
#service-content .service-icon-card__icon { width: 52px; height: 52px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 12px; background: rgba(254,223,81,0.12); color: var(--accent); font-size: 22px; }
#service-content .service-icon-card--warn .service-icon-card__icon { background: rgba(239,0,0,0.12); color: #ff6b6b; }
#service-content .service-icon-card h4 { margin: 0 0 6px; font-size: 15px; color: var(--text); font-family: var(--font-head); }
#service-content .service-icon-card p { margin: 0; font-size: 13px; line-height: 1.45; color: var(--muted); }
#service-content .service-table-wrap { overflow-x: auto; margin-bottom: 28px; border-radius: var(--radius); border: 1px solid var(--border); }
#service-content .service-spec-table { width: 100%; border-collapse: collapse; margin: 0; font-size: 14px; }
#service-content .service-spec-table th { background: rgba(254,223,81,0.1); color: var(--text); font-family: var(--font-head); padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
#service-content .service-spec-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: middle; }
#service-content .service-spec-table tr:last-child td { border-bottom: none; }
#service-content .service-spec-table tr:hover td { background: rgba(255,255,255,0.02); }
#service-content .service-spec-table td i { color: var(--accent); width: 20px; margin-right: 8px; }
#service-content .service-spec-table td strong { color: var(--text); }
#service-content .service-kit-table td:first-child { color: var(--accent); font-weight: 600; width: 48px; }
#service-content .service-price { font-size: 1.15rem; color: var(--text); margin-bottom: 16px; }
#service-content .service-price i { color: var(--accent); margin-right: 8px; }
#service-content .service-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
#service-content .service-photo-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); }
#service-content .service-photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
#service-content .service-photo-grid figcaption { padding: 10px 12px; font-size: 12px; color: var(--muted); text-align: center; border-top: 1px solid var(--border); }
#service-content .service-cta-box { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius); border: 1px solid rgba(254,223,81,0.35); background: linear-gradient(135deg, rgba(254,223,81,0.08), rgba(254,223,81,0.02)); margin-top: 8px; }
#service-content .service-cta-box__icon { width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; border-radius: 14px; background: var(--accent); color: #161616; font-size: 24px; }
#service-content .service-cta-box h4 { margin: 0 0 8px; color: var(--text); font-family: var(--font-head); }
#service-content .service-cta-box p { margin: 0 0 6px; }
@media (max-width: 900px) {
  #service-content .service-showcase { grid-template-columns: 1fr; }
  #service-content .service-icon-grid, #service-content .service-icon-grid--4, #service-content .service-icon-grid--3 { grid-template-columns: repeat(2, 1fr); }
  #service-content .service-icon-grid--warn { grid-template-columns: 1fr; }
  #service-content .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  #service-content .service-icon-grid, #service-content .service-icon-grid--4, #service-content .service-icon-grid--3, #service-content .service-photo-grid { grid-template-columns: 1fr; }
  #service-content .service-cta-box { flex-direction: column; }
}
#service-single.post-single--wide { max-width: 960px; margin: 0 auto; }
.post-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin: 30px 0; }
.post-inline img { border-radius: var(--radius); }
.share { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.share a { width: 34px; height: 34px; display: grid; place-items: center; background: var(--accent); color: #161616; border-radius: 4px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.contact-card .cc-icon { font-size: 26px; color: var(--accent); }
.contact-card span { display: block; color: var(--muted); font-size: 13px; }
.contact-card strong { color: var(--primary); font-family: var(--font-head); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-wrap.is-form-full { grid-template-columns: 1fr; }
.contact-wrap.is-form-full .contact-form { width: 100%; max-width: none; }
.contact-sidebar { min-width: 0; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; font-family: var(--font-head); }
.form-control {
  width: 100%; padding: 14px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 6px; color: var(--text);
  font-family: var(--font-body); font-size: 15px;
}
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; }
.map-embed { border-radius: var(--radius); overflow: hidden; min-height: 320px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: 130px 0; }
.error-page .code { font-family: var(--font-head); font-size: clamp(110px, 20vw, 220px); font-weight: 700; color: var(--primary); line-height: 1; }
.error-page h2 { font-size: 34px; margin-bottom: 16px; }
.error-page p { color: var(--muted); max-width: 480px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #1a1605 0%, #6b540b 60%, #b8860b 100%);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { font-size: 18px; margin-bottom: 22px; color: #fff; }
.footer p { color: rgba(255,255,255,0.8); font-size: 14.5px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo-img { max-height: 38px; max-width: 160px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.85); font-size: 14.5px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; color: rgba(255,255,255,0.85); font-size: 14.5px; }
.footer-contact i { color: #fff; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; display: grid; place-items: center; background: rgba(0,0,0,0.35); color: #fff; border-radius: 5px; }
.footer-social a:hover { background: #000; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 13px 16px; border-radius: 6px; border: none; font-family: var(--font-body); }
.newsletter-form .btn { justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.25); padding: 22px 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .two-col, .dedicated, .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .faq-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .blog-grid, .contact-cards, .chips { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #0d0d0d; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border);
  }
  .topbar-slogan span { font-size: 12px; }
  .chips { margin-top: 40px; }
  .post-inline { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gallery, .blog-grid, .contact-cards, .chips, .stats, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* --- Page load transition: hide until dynamic.js populates content --- */
body { visibility: hidden; opacity: 0; transition: opacity 0.2s ease; }
html[data-skyhigh-live] body { visibility: visible; opacity: 1; }
