:root {
  /* Black & white palette */
  --black: #0d0d0d;
  --black-2: #161616;
  --black-3: #1f1f1f;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --off-white-2: #ebebeb;
  --line-dark: #2c2c2c;
  --line-light: #e0e0e0;
  --text-dark: #111111;   /* text on light bg */
  --muted-dark: #5e5e5e;  /* muted text on light bg */
  --text-light: #f5f5f5;  /* text on dark bg */
  --muted-light: #a8a8a8; /* muted text on dark bg */
  --radius: 14px;
  --maxw: 1120px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; line-height: 1.12; letter-spacing: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 14px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* On light backgrounds */
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--text-dark); border-color: #cfcfcf; }
.btn-ghost:hover { border-color: var(--black); }

/* On dark backgrounds (invert) */
.on-dark .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.on-dark .btn-primary:hover { background: var(--off-white); }
.on-dark .btn-ghost { color: var(--white); border-color: #555; }
.on-dark .btn-ghost:hover { border-color: var(--white); }

/* ---------- HEADER (light) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.9rem; font-weight: 600; color: var(--muted-dark); transition: color .2s; }
.nav a:hover { color: var(--text-dark); }
.nav a.btn-primary { color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text-dark); display: block; }

/* ---------- HERO (dark) ---------- */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0d0d0d 0%, #1c1c1c 55%, #0d0d0d 100%);
  overflow: hidden; color: var(--text-light);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(8,8,8,0.55), rgba(8,8,8,0.78)),
    url("images/img_2320.jpg");
  background-size: cover; background-position: center;
}
.hero-content { position: relative; max-width: 780px; padding: 80px 24px; }
.hero-logo { height: 96px; width: auto; margin-bottom: 28px; }
.hero .eyebrow { color: var(--white); }
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: var(--muted-light); max-width: 640px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; color: var(--muted-light); font-size: 0.88rem; font-weight: 600; }

/* ---------- SECTION THEMING ---------- */
.section { padding: 96px 0; }
.section--light { background: var(--white); color: var(--text-dark); }
.section--light-alt { background: var(--off-white); color: var(--text-dark); }
.section--dark { background: var(--black); color: var(--text-light); }

.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-lead { color: var(--muted-dark); }
.on-dark .section-lead { color: var(--muted-light); }
.on-dark .eyebrow { color: var(--white); }

/* ---------- ABOUT (light) ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; margin-bottom: 40px; }
.about-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--line-light);
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 20px; }
.about-copy p { color: var(--muted-dark); margin-bottom: 18px; }
.about-copy .btn { margin-top: 10px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.8rem; color: var(--black); }
.stat span { color: var(--muted-dark); font-size: 0.85rem; }

/* ---------- SERVICES (light-alt) ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package {
  position: relative; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.package.featured { border-color: var(--black); box-shadow: 0 16px 44px rgba(0,0,0,0.14); }
.package-media { margin: -34px -28px 22px; }
.package-media img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--white); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 999px;
}
.package h3 { font-size: 1.5rem; }
.package-tag { color: var(--muted-dark); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.package-desc { color: var(--muted-dark); margin-bottom: 20px; }
.package ul { list-style: none; margin-bottom: 26px; flex: 1; }
.package li { padding: 8px 0 8px 26px; position: relative; color: #333; border-bottom: 1px solid var(--line-light); font-size: 0.92rem; }
.package li::before { content: "✓"; position: absolute; left: 0; color: var(--black); font-weight: 800; }

.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.addon { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 24px; }
.addon h4 { font-size: 1.05rem; margin-bottom: 8px; }
.addon p { color: var(--muted-dark); font-size: 0.88rem; }

/* ---------- SERVICES (image cards) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative; display: flex; align-items: flex-end;
  height: 330px; border-radius: var(--radius); overflow: hidden;
  padding: 26px; color: var(--white); text-decoration: none;
  background-color: #1a1a1a; background-size: cover; background-position: center;
  border: 1px solid var(--line-dark);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.28); background-position: center 40%; }
.cat-body { position: relative; z-index: 1; width: 100%; }
.cat-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }
.cat-card ul { list-style: none; }
.cat-card li {
  color: #e8e8e8; font-size: 0.92rem; padding: 5px 0 5px 20px; position: relative;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.cat-card li:first-child { border-top: 0; }
.cat-card li::before { content: "→"; position: absolute; left: 0; color: var(--white); font-weight: 700; }
.services-note { text-align: center; color: var(--muted-dark); font-size: 0.9rem; max-width: 760px; margin: 40px auto 0; }
.services-note a { color: var(--black); font-weight: 600; text-decoration: underline; }
.services-cta { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ---------- GALLERY (dark) ---------- */
.gallery-marquee { display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.gallery-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.gallery-track { display: flex; gap: 18px; width: max-content; will-change: transform; }
.gallery-row--ltr .gallery-track { animation: gallery-ltr 90s linear infinite; }
.gallery-row--rtl .gallery-track { animation: gallery-rtl 90s linear infinite; }
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
.shot {
  margin: 0; flex: 0 0 auto; width: 340px; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-dark); background: #1a1a1a;
}
.shot img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.shot:hover img { transform: scale(1.05); }
@keyframes gallery-ltr { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gallery-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none !important; flex-wrap: wrap; width: 100%; justify-content: center; }
  .shot { width: 30%; min-width: 240px; }
}

/* ---------- REVIEWS (light) ---------- */
.reviews-rating {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; color: var(--muted-dark); font-weight: 600; font-size: 1rem;
}
.reviews-rating .stars { color: var(--black); letter-spacing: 0.1em; }
.reviews-rating strong { color: var(--text-dark); }

.reviews-carousel {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex; width: max-content;
  animation: review-marquee 110s linear infinite;
}
.reviews-carousel:hover .reviews-track { animation-play-state: paused; }
@keyframes review-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

.review {
  flex: 0 0 360px; width: 360px; margin-right: 22px;
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 30px; box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.review .stars { color: var(--black); letter-spacing: 0.12em; margin-bottom: 14px; font-size: 1.05rem; }
.review p { margin-bottom: 16px; flex: 1; font-size: 0.95rem; }
.review cite { color: var(--muted-dark); font-style: normal; font-weight: 700; font-size: 0.88rem; }

.reviews-cta { text-align: center; margin-top: 36px; }

/* ---------- CONTACT (light-alt) ---------- */
/* Centered contact band. Left info column is a slim fixed width; the form
   column takes the rest. The form loads at ~1120px (its natural two-column
   content width) and scales to fill the column, so it stays full-size AND fills
   the column with no empty right-side gap. */
.contact-grid { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; max-width: 1280px; }
.contact-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--muted-dark); margin-bottom: 24px; }
.contact-list { list-style: none; margin-bottom: 28px; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--line-light); color: var(--muted-dark); }
.contact-list strong { color: var(--text-dark); }
.contact-list a { color: var(--black); font-weight: 600; text-decoration: underline; }
.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.contact-form {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 14px; display: grid; gap: 16px; box-shadow: 0 10px 34px rgba(0,0,0,0.06);
}
.contact-form label { display: grid; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--muted-dark); }
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--off-white); border: 1px solid var(--line-light); border-radius: 10px;
  padding: 12px 14px; color: var(--text-dark); font-family: inherit; font-size: 0.95rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--black);
}
.form-note { font-size: 0.78rem; color: var(--muted-dark); font-weight: 400; text-align: center; }

/* Embedded GoHighLevel form. On desktop the iframe is rendered at a wide
   desktop width (900px) so HighLevel uses its two-column field layout, then
   script.js scales it down to fit the contact column. On mobile it's full
   width (single column, full-size text). */
/* min-width:0 + overflow:hidden stop the wide (1280px) iframe from forcing the
   grid column wider than its share and squeezing the left column. */
.ghl-host { width: 100%; min-width: 0; overflow: hidden; background: transparent; }
.ghl-scale { overflow: hidden; width: 100%; }
.ghl-scale iframe { width: 100%; display: block; border: none; }
/* Only render the form at desktop width (for its two-column layout) on large
   screens where the column is wide enough that scaling stays readable. Between
   901–1199px the form renders at full column width (single column, full size). */
@media (min-width: 1200px) {
  .ghl-scale iframe { width: 1280px; transform-origin: top left; }
}

/* ---------- FOOTER (dark) ---------- */
.site-footer { background: var(--black); color: var(--text-light); border-top: 1px solid var(--line-dark); padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; align-items: flex-start; }
.footer-logo {
  height: 52px; width: auto; display: block;
  background: var(--white); padding: 12px 18px; border-radius: 12px;
}
.footer-brand p { color: var(--muted-light); font-size: 0.88rem; }
.footer-meta { text-align: right; color: var(--muted-light); font-size: 0.85rem; }
.footer-meta p { margin-bottom: 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line-light); padding: 16px 24px;
  }
  .nav.open a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}
@media (max-width: 520px) {
  .addon-grid, .gallery-grid, .cat-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .hero-logo { height: 68px; }
}
