:root {
  --color-primary: #C99A3D;
  --color-secondary: #080808;
  --color-background: #111111;
  --color-text: #F2F2F2;
  --color-muted: #6b7280;
  --color-soft: #f3f4f6;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
  --max-width: 1180px;
  --header-h: 78px;
  --radius: 10px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-primary) 45%, transparent);
  outline-offset: 2px;
}
.container { width: min(100% - 2.5rem, var(--max-width)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.12));
  color: #fff;
}
.site-header.is-solid {
  position: sticky;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: #fff; font-weight: 800; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-mark { color: var(--color-primary); display: inline-flex; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1; max-width: 14rem;
}
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.35);
  background: transparent; border-radius: 8px; padding: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 1.6rem; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--color-primary); }

.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; color: #fff;
  background: #070B14;
  overflow: hidden;
}
.hero.has-image {
  background: #070B14;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Warm, soft veil — readable text, inviting glow like shop example */
  background: linear-gradient(
    90deg,
    rgba(28, 18, 10, 0.72) 0%,
    rgba(28, 18, 10, 0.42) 48%,
    rgba(201, 140, 60, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.template-banner {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-primary); color: #fff;
  text-align: center; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.78rem;
  padding: 0.55rem 1rem;
}
.hero-shade { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  max-width: 42rem;
  animation: rise 0.85s ease both;
}
.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  line-height: 0.98; letter-spacing: 0.01em; text-transform: uppercase; font-weight: 800;
}
.hero-line { display: block; color: #fff; }
.hero-accent { display: block; color: var(--color-primary); }
.hero-lead { margin: 0 0 1.75rem; max-width: 36rem; color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 50px; padding: 0.8rem 1.25rem; border-radius: 3px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.78); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }
.btn-google {
  background: #fff; color: var(--color-primary); border: 2px solid var(--color-primary);
  text-transform: none; letter-spacing: 0.02em; font-weight: 800;
}
.g-mark {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; color: #ea4335; border: 2px solid #ea4335; font-family: Arial, sans-serif; font-weight: 800;
}

.section { padding: 5rem 0; }
.section-head { text-align: center; margin-bottom: 2.75rem; }
.eyebrow {
  margin: 0 0 0.45rem; color: var(--color-primary); font-size: 0.84rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow span {
  display: inline-block; width: 28px; height: 1px; background: var(--color-primary);
}
.section-head h2, .about-copy h2, .contact-info h2 {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.35rem); letter-spacing: 0.03em; text-transform: uppercase; line-height: 1;
}

.section-services { background: #fff; color: #111; }
.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: #fff; border: 1px solid #eceff3; border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem; box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 52px; height: 52px; color: #00C2FF; margin-bottom: 1rem; display: grid; place-items: start; }
.service-icon svg { width: 100%; height: 100%; display: block; }
.service-card h3 {
  margin: 0 0 0.45rem; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.service-card p { margin: 0; color: var(--color-muted); font-size: 0.95rem; }

.section-about { background: #15181c; color: #fff; }
.about-layout {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
}
.about-copy > p { color: rgba(255,255,255,0.78); max-width: 38ch; }
.about-points { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.about-points li { display: flex; gap: 0.75rem; align-items: flex-start; }
.point-icon {
  width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center;
  background: color-mix(in srgb, var(--color-primary) 18%, transparent); color: var(--color-primary); flex: 0 0 auto;
}
.about-media img, .about-fallback {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.about-fallback {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 35%, transparent), rgba(0,0,0,0.35)),
    url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.section-reviews {
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--color-primary) 6%, transparent), transparent 35%), var(--color-soft);
  color: #111;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 10px 28px rgba(17,17,17,0.06);
}
.review-stars { color: var(--color-primary); letter-spacing: 0.08em; margin-bottom: 0.75rem; font-size: 1.05rem; }
.review-card p { margin: 0 0 1rem; color: #222; font-style: italic; }
.review-card cite { font-style: normal; font-weight: 800; font-size: 0.92rem; color: #333; }
.reviews-cta { margin-top: 2.25rem; text-align: center; }
.empty-note { text-align: center; color: var(--color-muted); }

.section-contact {
  background:
    linear-gradient(180deg, rgba(17,17,17,0.96), rgba(17,17,17,0.98)),
    url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80h160M80 0v160' stroke='%23ffffff' stroke-opacity='.04' stroke-width='1'/%3E%3C/svg%3E");
  color: #fff;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 0.95fr; gap: 1.75rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-icon { color: var(--color-primary); line-height: 1.4; }
.contact-list strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.15rem;
}
.contact-list a, .contact-list span { color: #fff; display: block; }
.contact-form {
  display: grid; gap: 0.75rem; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.25rem;
}
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); background: #101317;
  color: #fff; border-radius: 6px; padding: 0.9rem 1rem; font: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-map h3 {
  margin: 0 0 0.85rem; font-family: var(--font-display); letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 1.4rem;
}
.contact-map iframe, .map-fallback {
  width: 100%; height: 220px; border: 0; border-radius: 10px; margin-bottom: 0.85rem; background: #2a3038;
}
.contact-map .btn-ghost { border-color: rgba(255,255,255,0.45); }

.site-footer {
  background: #0a0a0a; color: rgba(255,255,255,0.7); padding: 1.35rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand .brand-name { font-size: 1rem; max-width: none; }
.footer-copy { margin: 0; font-size: 0.88rem; text-align: center; }
.footer-copy a { margin-left: 0.7rem; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center;
  background: var(--color-primary); color: #fff; font-size: 0.75rem; font-weight: 800; text-transform: lowercase;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .contact-grid, .about-layout { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-menu {
    display: none; position: absolute; top: var(--header-h); left: 1.25rem; right: 1.25rem;
    background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 1rem; flex-direction: column; align-items: stretch; gap: 0.25rem;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 0.75rem 0.5rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .brand-name { max-width: 11rem; font-size: 1.1rem; }
}


.layout-premium_performance {
  --radius: 2px; --color-soft: #1a1a1a; --color-muted: #a3a3a3;
  background: #111; color: #f2f2f2;
}
.layout-premium_performance .section-services,
.layout-premium_performance .section-reviews { background: #111; color: #f2f2f2; }
.layout-premium_performance .service-icon {
  color: #00C2FF;
}
.layout-premium_performance .service-card p,
.layout-premium_performance .review-card p { color: #bdbdbd; }
.layout-premium_performance .section-about { background: #080808; }
.layout-premium_performance .section-head h2,
.layout-premium_performance .hero h1 {
  font-weight: 700; letter-spacing: 0.04em; text-transform: none;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.layout-premium_performance .btn-primary { background: #c99a3d; color: #080808; border-radius: 2px; }
.layout-premium_performance .hero-content { max-width: 40rem; }



/* ===== JDR IQ modern brand overlay (output-only) ===== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --color-primary: #00C2FF;
  --color-secondary: #0B1B33;
  --color-background: #070B14;
  --color-text: #F4F8FC;
  --color-muted: #8B9BB0;
  --color-soft: #0F1724;
  --jdriq-gradient: linear-gradient(90deg, #00C2FF 0%, #8B6BC9 100%);
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 12px;
}

body.theme-premium_performance {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(0, 194, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(139, 107, 201, 0.1), transparent 50%),
    var(--color-background);
}

.brand-name { display: none; }
.brand-logo {
  display: block;
  height: 2.4rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.35rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
  line-height: 0;
}
.brand-logo-footer {
  height: 2rem;
  max-width: 9rem;
}
@media (max-width: 720px) {
  .brand-logo {
    height: 2.05rem;
    max-width: 9.5rem;
  }
}

.connect-card {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 194, 255, 0.2);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 194, 255, 0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(139, 107, 201, 0.2), transparent 45%),
    rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
}
.connect-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--jdriq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.connect-card p { margin: 0; color: rgba(244, 248, 252, 0.86); }
.connect-note { color: rgba(244, 248, 252, 0.65) !important; font-size: 0.95rem; }

.site-header {
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.88), rgba(7, 11, 20, 0.15));
}
.site-header.is-solid {
  background: rgba(7, 11, 20, 0.92);
  border-bottom: 1px solid rgba(0, 194, 255, 0.12);
}
.nav-menu a.is-active,
.nav-menu a:hover { color: #00C2FF; }

.hero,
.hero.has-image {
  background: #070B14;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(28, 18, 10, 0.72) 0%,
    rgba(28, 18, 10, 0.42) 48%,
    rgba(201, 140, 60, 0.18) 100%
  );
}
.hero h1,
.section-head h2,
.about-copy h2,
.contact-info h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-transform: none;
}
.hero-accent {
  background: var(--jdriq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-primary {
  background: var(--jdriq-gradient);
  border-color: transparent;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 194, 255, 0.28);
}
.btn-ghost {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-google {
  border-radius: 999px;
  color: #0B1B33;
  border-color: #00C2FF;
}

.section-services {
  background: linear-gradient(180deg, #0B1220 0%, #070B14 100%);
  color: #F4F8FC;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.service-card {
  background: #141C2B;
  border: 1px solid rgba(0, 194, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  color: #F4F8FC;
}
.service-card:hover {
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: #182234;
}
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: #00C2FF;
  display: grid;
  place-items: start;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.layout-premium_performance .section-services,
.layout-premium_performance .section-services .section-head h2 {
  color: #F4F8FC;
}
.layout-premium_performance .section-services .section-head h2 {
  color: #FFFFFF;
  text-shadow: 0 1px 12px rgba(0, 194, 255, 0.18);
}
.layout-premium_performance .section-services .eyebrow {
  color: #00C2FF;
}
.layout-premium_performance .service-card {
  background: #141C2B;
  border: 1px solid rgba(0, 194, 255, 0.18);
  color: #F4F8FC;
}
.layout-premium_performance .service-card h3 {
  color: #F4F8FC;
}
.layout-premium_performance .service-card p {
  color: #8B9BB0;
}

.section-about {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 194, 255, 0.14), transparent 40%),
    #0B1220;
}
.point-icon {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.25), rgba(139, 107, 201, 0.25));
  color: #00C2FF;
}
.about-media img {
  border-radius: 18px;
  border: 1px solid rgba(0, 194, 255, 0.18);
}

.section-reviews {
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.08), transparent 40%),
    #F4F8FC;
  color: #0B1B33;
}
.section-reviews .section-lead {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  color: #5A6B7D;
  font-size: 1.02rem;
}
.review-card {
  border: 1px solid rgba(11, 27, 51, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 1.5rem 1.4rem 1.45rem;
}
.outcome-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display), Outfit, Montserrat, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0B1B33;
  text-transform: none;
  letter-spacing: -0.01em;
}
.outcome-card p {
  margin: 0 0 1rem;
  color: #445566;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.65;
}
.outcome-tag {
  margin: 0 0 0.65rem !important;
  color: #00C2FF !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.outcome-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.86rem;
  color: #5A6B7D;
}
.layout-premium_performance .section-reviews {
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.08), transparent 40%),
    #F4F8FC;
  color: #0B1B33;
}
.layout-premium_performance .section-reviews .section-head h2 {
  color: #0B1B33;
}
.layout-premium_performance .outcome-card p {
  color: #445566;
}
.review-stars {
  background: var(--jdriq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-contact {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(0, 194, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 100%, rgba(139, 107, 201, 0.14), transparent 50%),
    #070B14;
}
.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border-color: rgba(0, 194, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.contact-icon { color: #00C2FF; }

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.form-status.is-pending { color: rgba(244, 248, 252, 0.75); }
.form-status.is-success { color: #00C2FF; }
.form-status.is-error { color: #ff8f8f; }

.form-privacy {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(244, 248, 252, 0.65);
}
.form-privacy a {
  color: #00C2FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  background: #05080F;
  border-top: 1px solid rgba(0, 194, 255, 0.12);
}
.footer-social a {
  background: var(--jdriq-gradient);
  color: #fff;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}
