/* Del Rio Protective Services - shared stylesheet (clone)
   Owner: orchestrator. Shared tokens + chrome (header/nav/footer) live here.
   Page-scoped rules are appended below under banners reading: page: <slug>
   Fonts: the source site's own uploaded faces, self-hosted in assets/fonts/. */

/* ---------- fonts (self-hosted from the source site) ---------- */
@font-face {
  font-family: "DRPS Head";
  src: url("fonts/head.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DRPS Body";
  src: url("fonts/body.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #131313;
  --panel: #0c0c0c;
  --gold: #be9c62;
  --gold-2: #d8bd8a;
  --gold-dark: #a07f45;
  --red: #ed1c24;
  --red-border: #fd0000;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #d5d2cd;
  --line: rgba(190,156,98,0.28);
  --maxw: 1180px;
  --radius: 0px;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --ff-head: "DRPS Head", "Overpass", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "DRPS Body", "Overpass", "Helvetica Neue", Arial, sans-serif;
  --maze: url("media/a34e7bdfff2b.png");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; color: var(--gold); line-height: 1.2; margin: 0 0 .4em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: #111;
  padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* eyebrow = small shield glyph + uppercase label, as on the source */
.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 14px;
  display: block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 17px; height: 21px;
  margin-right: 9px;
  vertical-align: -4px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 30'%3E%3Cpath d='M12 1 1 5v10c0 7 5 12 11 14 6-2 11-7 11-14V5L12 1z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 30'%3E%3Cpath d='M12 1 1 5v10c0 7 5 12 11 14 6-2 11-7 11-14V5L12 1z' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.eyebrow.plain::before { display: none; }

.section { padding: 84px 0; position: relative; }
.section-head { max-width: 860px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section h2 { font-size: 40px; }
.lead { color: var(--white); font-size: 18px; }

/* ---------- section background layers ----------
   The source paints a black section, then lays its background image over it at a
   per-section opacity (woven texture 0.08, service photo 0.15, values photo 1,
   why-choose photo 0.1). Reproduced with an absolutely-positioned ::before layer. */
.bg-maze, .bg-photo { position: relative; background-color: #000; }
.bg-maze::before, .bg-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-maze > *, .bg-photo > * { position: relative; z-index: 1; }

.bg-maze::before {
  background-image: var(--maze);
  background-repeat: repeat;
  background-size: 500px 500px;
  opacity: .08;
}
.bg-services::before { background-image: url("media/a9338488bd16.jpg"); opacity: .15; }
.bg-values::before   { background-image: url("media/2278c998d727.jpg"); opacity: 1; }
.bg-why::before      { background-image: url("media/a7257ff7df5f.jpg"); opacity: .1; }

/* The values photo runs at full strength, so the source drops a 30% black scrim
   over it to keep the copy legible. */
.bg-values::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .3);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-gold { background: var(--gold); color: #141414; }
.btn-gold:hover { background: var(--gold-2); color: #141414; transform: translateY(-2px); }
.btn-light { background: #ffffff; color: #141414; }
.btn-light:hover { background: #f1ece2; color: #141414; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #141414; }

/* ---------- header ---------- */
.topbar { background: #000; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 24px; max-width: 1320px; margin: 0 auto;
}
.brand img { height: 58px; width: auto; }
.habla { color: var(--red); font-family: var(--ff-head); font-weight: 700; letter-spacing: .01em; font-size: 17px; }
.topcontacts { display: flex; gap: 34px; }
.topcontact { text-align: left; font-size: 14px; line-height: 1.4; }
.topcontact .lbl { color: var(--white); font-family: var(--ff-head); font-weight: 700; display: block; }
.topcontact a { color: var(--white); }
.topcontact a:hover { color: var(--gold); }

/* nav sits on the source's woven texture strip */
.mainnav {
  background-color: #000;
  background-image: url("media/d8175b678c20.png");
  background-size: cover;
  background-position: center;
  position: sticky; top: 0; z-index: 900;
}
.mainnav-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; }
.nav-toggle, .nav-toggle-label { display: none; }
.navlist { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; width: 100%; }
.navlist li { flex: 1; text-align: center; }
.navlist a {
  display: block; color: var(--white); font-family: var(--ff-body);
  text-transform: uppercase; letter-spacing: .1em; font-size: 14px; font-weight: 600;
  padding: 18px 10px; transition: color .2s ease;
}
.navlist a:hover { color: var(--gold); }
.navlist a.active { color: var(--gold); }

/* ---------- hero (interior pages) ---------- */
.pagehero { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #000; }
.pagehero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.pagehero .inner { position: relative; z-index: 2; padding: 60px 24px; }
.pagehero h1 { font-size: 62px; color: var(--white); text-transform: uppercase; letter-spacing: .02em; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: #000; padding-top: 60px; }
.footer-top { text-align: center; }
.footer-top img { height: 118px; width: auto; margin: 0 auto 10px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding: 46px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.footer-cols h4 { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .1em; font-size: 17px; color: var(--gold); margin-bottom: 18px; }
.footer-cols p { color: var(--white); font-size: 13px; line-height: 1.7; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--white); font-size: 16px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin: 0 0 14px; color: var(--white); font-size: 16px; }
.footer-contact a { color: var(--white); }
.footer-contact a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { display: inline-flex; }
.socials img { height: 26px; width: 26px; }
.copyright { background: var(--gold); color: #ffffff; text-align: center; padding: 14px 16px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- generic cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--panel); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---------- animations (ported from source entrance motion) ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shapeIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* On-load reveals: animation always runs, element always ends visible. */
.reveal { animation: fadeUp .8s ease both; }
.reveal-in { animation: fadeIn 1s ease both; }
.reveal-shape { animation: shapeIn .8s ease both; }
.reveal-left { animation: slideInLeft .8s ease both; }
.d1 { animation-delay: .12s; }
.d2 { animation-delay: .24s; }
.d3 { animation-delay: .36s; }
.d4 { animation-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  .carousel-track { transition: none !important; }
}

/* ============================================================
   carousel (source: auto-advancing Wix Pro Gallery slider)
   ============================================================ */
.carousel { position: relative; overflow: hidden; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 6px;
  transition: transform .8s cubic-bezier(.35,.02,.2,1);
  will-change: transform;
}
.carousel-track > figure { margin: 0; flex: 0 0 auto; }
.carousel-track img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-slide { height: 520px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: 0; cursor: pointer;
  background: rgba(0,0,0,.35); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 4; transition: background .2s ease;
}
.carousel-btn:hover { background: rgba(0,0,0,.65); }
.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }

/* ---------- responsive chrome ---------- */
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .socials { justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .topbar-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .topcontacts { gap: 22px; }

  .nav-toggle-label {
    display: block; cursor: pointer; color: var(--white); padding: 14px 0;
    text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 600;
    width: 100%; text-align: center;
  }
  .mainnav-inner { flex-direction: column; }
  .navlist { flex-direction: column; width: 100%; gap: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .nav-toggle:checked ~ .navlist { max-height: 640px; }
  .navlist a { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.10); }
  .section h2, .pagehero h1 { font-size: 34px; }
  .carousel-slide { height: 360px; }
}

@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .carousel-slide { height: 300px; }
}

/* ============================================================
   page: index
   ============================================================ */
.home-hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: #000; }
/* source plays the background video at 0.38 over the black section */
.home-hero .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border: 0; opacity: .38;
}
.home-hero .inner { position: relative; z-index: 2; max-width: 700px; padding: 90px 0; }
.home-hero h1 { font-size: 60px; color: var(--gold); margin-bottom: 22px; line-height: 1.15; }
.home-hero h1 em { color: var(--gold); font-style: italic; display: block; }
.home-hero p { color: #ffffff; font-size: 19px; font-weight: 700; margin-bottom: 30px; max-width: 620px; }
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.award-badge img { height: 140px; width: 140px; border-radius: 50%; animation: badgePulse 3.4s ease-in-out infinite; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photos { position: relative; min-height: 520px; padding: 26px 0 0 26px; }
.about-photos::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 150px; height: 118px; background: var(--gold);
}
.about-photos .p1 { position: relative; width: 82%; }
.about-photos .p2 { position: absolute; bottom: -30px; left: 0; width: 52%; border: 5px solid #000; }
.about-band h2 { font-size: 40px; }
.about-band .lead { font-size: 17px; }
.about-band .btn { margin-top: 14px; }

.svc-card {
  background: rgba(0,0,0,.86);
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card img { width: 100%; height: 200px; object-fit: cover; }
.svc-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-family: var(--ff-head); font-size: 20px; color: var(--white); margin-bottom: 10px; }
.svc-card p { color: var(--white); font-size: 15px; flex: 1; margin: 0; }
.svc-card .btn { align-self: flex-start; margin-top: 20px; }

/* values + why-choose cards: a 10% white wash over the section photo, thin red
   rule, and the source's gold 93x91 tile behind each 48x48 icon */
.tile-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--red-border);
  padding: 30px 22px 34px;
  text-align: center;
}
.tile-card .icon {
  width: 93px; height: 91px;
  margin: 0 auto 18px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.tile-card .icon img { height: 48px; width: 48px; margin: 0; }
.tile-card img { height: 48px; width: 48px; margin: 0 auto 18px; }
.tile-card h3 {
  font-family: var(--ff-head); font-size: 20px; color: var(--white);
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px;
}
.tile-card p { color: var(--white); font-size: 15px; margin: 0; }

.home-gallery-carousel .carousel-slide { height: 620px; }

.reviews-embed { margin-top: 34px; min-height: 400px; }
.reviews-embed iframe { width: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .home-hero h1 { font-size: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { min-height: 420px; }
  .home-gallery-carousel .carousel-slide { height: 400px; }
}

/* ============================================================
   page: about
   ============================================================ */
.bio { display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: center; }
.bio.reverse { grid-template-columns: 1fr 420px; }
.bio.reverse .bio-photo { order: 2; }
.bio-photo img { width: 100%; }
.bio h2 { font-size: 40px; margin-bottom: 6px; }
.bio .role { color: var(--white); font-family: var(--ff-head); font-size: 18px; margin-bottom: 18px; display: block; }
.bio p { color: var(--white); margin-bottom: 14px; font-size: 16px; }
.nra-banner { margin-top: 26px; }
.nra-banner img { width: 100%; max-width: 840px; margin: 0 auto; }

/* Core values: full-width light bars, centered icon + title + copy */
.corevalues { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 40px auto 0; }
.corevalue {
  background: #e8e6e6;
  padding: 34px 40px;
  text-align: center;
}
.corevalue img { height: 66px; width: 66px; margin: 0 auto 16px; }
.corevalue h3 {
  font-family: var(--ff-head); color: #000000; font-size: 20px;
  text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px;
}
.corevalue p { color: #2b2b2b; font-size: 15px; margin: 0; max-width: 560px; margin-inline: auto; }

.about-carousel .carousel-slide { height: 560px; }

@media (max-width: 820px) {
  .bio, .bio.reverse { grid-template-columns: 1fr; gap: 24px; }
  .bio.reverse .bio-photo { order: 0; }
  .corevalue { padding: 28px 22px; }
  .about-carousel .carousel-slide { height: 380px; }
}

/* ============================================================
   page: services
   ============================================================ */
.svc-row { display: grid; grid-template-columns: 460px 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.svc-row.reverse .svc-img { order: 2; }
.svc-img img { width: 100%; }
.svc-row h2 { font-size: 32px; }
.svc-row p { color: var(--white); margin-bottom: 14px; }
@media (max-width: 820px) {
  .svc-row, .svc-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .svc-row.reverse .svc-img { order: 0; }
}

/* ============================================================
   page: gallery
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figure { margin: 0; height: 430px; }
.gallery-red h2 { color: var(--red); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid figure { height: 330px; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   page: courses  (source: white product cards on the woven texture)
   ============================================================ */
.courses-title { text-align: center; color: var(--red); font-size: 40px; margin-bottom: 46px; }
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: start; }
.course-card {
  background: #ffffff;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.course-card .thumb { width: 100%; height: 205px; object-fit: cover; }
.course-card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.course-card h3 { font-family: var(--ff-head); font-size: 21px; color: #000; margin: 0 0 12px; line-height: 1.25; }
.course-card .blurb { color: #3d3d3d; font-size: 15px; margin: 0 0 8px; }
.course-card .more { color: #000; font-size: 15px; text-decoration: underline; align-self: flex-start; }
.course-card .more:hover { color: var(--gold-dark); }
.course-card .rule { border: 0; border-top: 1px solid #d9d9d9; margin: 18px 0 14px; width: 100%; }
.course-card .price { color: #000; font-size: 16px; margin: 0 0 22px; }
.course-card .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 1100px) { .course-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .course-grid { grid-template-columns: 1fr; } }

/* ============================================================
   page: blog listing (source: white cards, single column)
   ============================================================ */
.blog-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 34px; }
.post-card { background: #ffffff; }
.post-card .cover { width: 100%; height: 340px; object-fit: cover; display: block; }
.post-card .body { padding: 24px 40px 28px; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.post-meta img { height: 32px; width: 32px; border-radius: 50%; }
.post-meta .who { color: #2b2b2b; font-size: 13px; }
.post-meta .who b { font-weight: 400; }
.post-card h2 { font-family: var(--ff-head); font-size: 26px; color: #000; line-height: 1.28; margin: 0 0 14px; }
.post-card h2 a { color: #000; }
.post-card h2 a:hover { color: var(--gold-dark); }
.post-card .excerpt { color: #3d3d3d; font-size: 15px; margin: 0 0 22px; }
.post-card .foot { border-top: 1px solid #e2e2e2; padding-top: 14px; }
.post-card .foot a { color: #000; font-size: 14px; text-decoration: underline; }
.post-card .foot a:hover { color: var(--gold-dark); }
@media (max-width: 700px) { .post-card .body { padding: 20px 22px 24px; } .post-card .cover { height: 220px; } }

/* ============================================================
   page: article / course detail (source: light page, dark site chrome)
   ============================================================ */
.lightpage { background: #ffffff; padding: 0 0 70px; }
.article-shell { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.article-card { background: #fff; padding: 40px 0 10px; }
.article-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #2b2b2b; font-size: 13px; }
.article-meta img { height: 34px; width: 34px; border-radius: 50%; }
.article h1 { font-family: var(--ff-head); color: #000; font-size: 34px; line-height: 1.25; margin: 0 0 26px; }
.article .cover { width: 100%; margin-bottom: 26px; }
.article p, .article li { color: #2f2f2f; font-size: 16px; line-height: 1.75; margin: 0 0 18px; }
.article h2 { font-family: var(--ff-head); color: #000; font-size: 21px; margin: 30px 0 14px; }
.article h3 { font-family: var(--ff-head); color: #000; font-size: 18px; margin: 26px 0 12px; }
.article strong { color: #000; }
.article a { color: #0b5ea8; text-decoration: underline; }
.article img { margin: 22px 0; }
.article blockquote { margin: 22px 0; padding-left: 18px; border-left: 3px solid #ddd; color: #444; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 18px; }
.backlink { display: inline-block; margin-bottom: 26px; color: #666; font-size: 14px; }
.backlink:hover { color: #000; }

/* course detail */
.svc-detail { max-width: 800px; margin: 0 auto; padding: 40px 24px 0; }
.svc-notice { background: #f1f1f1; color: #000; font-size: 14px; font-weight: 600; padding: 14px 18px; margin-bottom: 30px; }
.svc-detail h1 { font-family: var(--ff-head); color: #000; font-size: 36px; margin: 0 0 14px; }
.svc-detail .tagline { color: #3d3d3d; font-size: 16px; margin: 0 0 26px; }
.svc-facts { display: inline-flex; border: 1px solid #dcdcdc; margin-bottom: 22px; flex-wrap: wrap; }
.svc-facts span { padding: 12px 18px; color: #2f2f2f; font-size: 15px; border-right: 1px solid #dcdcdc; }
.svc-facts span:last-child { border-right: 0; }
.svc-spots { color: #2f2f2f; font-size: 15px; margin: 0 0 34px; }
.svc-detail h2 { font-family: var(--ff-head); color: #000; font-size: 19px; margin: 0 0 14px; }
.svc-detail p.body { color: #2f2f2f; font-size: 16px; line-height: 1.7; margin: 0 0 26px; }
.svc-detail hr { border: 0; border-top: 1px solid #e2e2e2; margin: 26px 0; }

/* ============================================================
   page: calendar  (source: Wix Bookings weekly class schedule)
   ============================================================ */
.cal-wrap { max-width: 1060px; margin: 0 auto; }
.cal-nav { display: flex; align-items: center; justify-content: center; gap: 26px; margin-bottom: 26px; }
.cal-nav button {
  background: none; border: 0; color: var(--white); font-size: 24px; line-height: 1;
  cursor: pointer; padding: 4px 10px; opacity: .8;
}
.cal-nav button:hover { opacity: 1; color: var(--gold); }
.cal-month { color: var(--white); font-size: 17px; font-family: var(--ff-body); }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.cal-dayhead { padding: 0 0 14px; }
.cal-dayhead .dname { color: var(--white); font-size: 14px; }
.cal-dayhead .dnum { color: var(--white); font-size: 17px; margin-top: 4px; }
.cal-dayhead.today .dname, .cal-dayhead.today .dnum { color: var(--gold); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); background: #131313; }
.cal-cell {
  min-height: 150px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid #000; color: var(--white); font-size: 15px;
}
.cal-cell:last-child { border-right: 0; }
@media (max-width: 820px) {
  .cal-days, .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .cal-cell { min-height: 90px; border-bottom: 1px solid #000; }
}

/* ============================================================
   page: contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-info h2 { font-size: 40px; margin-bottom: 18px; }
.contact-info > p { color: var(--white); font-size: 16px; margin-bottom: 30px; }
.contact-info h3 { font-family: var(--ff-head); color: var(--gold); font-size: 18px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.contact-info .row { margin-bottom: 20px; color: var(--white); font-size: 16px; }
.contact-info .row a { color: var(--white); }
.contact-info .row a:hover { color: var(--gold); }
.contact-info .socials { justify-content: flex-start; margin-top: 6px; }

.contact-form .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { position: absolute; left: -9999px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  padding: 10px 2px;
  font-family: var(--ff-body); font-size: 16px;
  margin-bottom: 24px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #cfcac2; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--gold-2); }
.contact-form textarea { min-height: 96px; resize: vertical; border: 1px solid var(--gold); padding: 12px 14px; }
.contact-form .btn { border: 0; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-form .frow { grid-template-columns: 1fr; gap: 0; }
}
