/* ==========================================================================
   Muñoz Services LLC — Air Duct Cleaning, Arizona
   Palette sampled directly from the company logo:
     panel navy #091722 · sunset arc #BB4825 → #DF802C · wordmark cream #FDD99D
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #091722;
  --ink-2:      #061420;
  --ink-3:      #112737;
  --ink-4:      #1A374B;
  --line-dark:  rgba(253, 217, 157, .16);

  --terra:      #BB4825;
  --orange:     #DF802C;
  --orange-hi:  #EE9A3E;
  --ember:      #E8471F;
  --cream:      #FDD99D;

  --sand:       #FBF5EA;
  --sand-2:     #F3E9DA;
  --paper:      #FFFFFF;

  --body:       #24333F;
  --muted:      #5F7080;
  --line:       #E4D9C8;

  --grad: linear-gradient(135deg, var(--terra) 0%, var(--orange) 60%, var(--orange-hi) 100%);

  --wrap: 1200px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(9, 23, 34, .08);
  --shadow:    0 14px 38px rgba(9, 23, 34, .12);
  --shadow-lg: 0 30px 70px rgba(9, 23, 34, .28);

  --ease: cubic-bezier(.22, .68, .35, 1);
  --header-h: 74px;

  --font-display: "Oswald", "Haettenschweiler", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  /* Roomy enough that the tilde on "MUÑOZ" never collides with the line above. */
  line-height: 1.14;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--orange-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout utilities ---------- */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.section { padding: clamp(64px, 8vw, 116px) 0; }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section__title {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  text-transform: uppercase;
  letter-spacing: .01em;
}

.section__lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: -.2em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 .85em;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.section__head .kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.section__head--light .section__title,
.section__head--light .section__lede { color: inherit; }
.section__head--light .section__title { color: var(--cream); }
.section__head--light .section__lede { color: rgba(253, 217, 157, .72); }
.kicker--light { color: var(--orange-hi); }

.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid {
  background-image: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(187, 72, 37, .34);
}
.btn--solid:hover { box-shadow: 0 16px 34px rgba(187, 72, 37, .46); }

.btn--ghost {
  color: var(--cream);
  border: 2px solid rgba(253, 217, 157, .38);
  background: rgba(253, 217, 157, .05);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(253, 217, 157, .14);
}

.btn--line {
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--line:hover { border-color: var(--orange); color: var(--terra); }

.btn--dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(9, 23, 34, .3);
}
.btn--dark:hover { background: var(--ink-4); }

.btn--outline-dark {
  border: 2px solid rgba(9, 23, 34, .35);
  color: var(--ink);
}
.btn--outline-dark:hover { border-color: var(--ink); background: rgba(9, 23, 34, .07); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.topbar {
  background: var(--ink-2);
  color: rgba(253, 217, 157, .82);
  font-size: .84rem;
  border-bottom: 1px solid rgba(253, 217, 157, .1);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s var(--ease);
}
.topbar__links a:hover { color: var(--orange-hi); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 23, 34, .92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(253, 217, 157, .12);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 10px 34px rgba(0, 0, 0, .38);
  background: rgba(9, 23, 34, .98);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

/* The logo art sits on the same #091722 panel as the header, so it blends in.
   object-fit crops the letterbox bars baked into the source file. */
.brand { display: inline-flex; flex: none; }
.brand__logo {
  width: 132px;
  aspect-ratio: 2.2;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253, 217, 157, .8);
  padding: 6px 0;
  transition: color .22s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--cream); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { padding: 11px 20px; font-size: .85rem; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(253, 217, 157, .25);
  padding: 12px 11px;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 104px) 0 clamp(120px, 14vw, 190px);
  overflow: hidden;
  isolation: isolate;
}

/* Sunset arc, echoing the logo mark */
.hero__sun {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 130%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%,
      rgba(238, 154, 62, .30) 0%,
      rgba(223, 128, 44, .22) 34%,
      rgba(187, 72, 37, .16) 52%,
      rgba(187, 72, 37, 0) 68%);
  z-index: -2;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 90%, rgba(232, 71, 31, .13), transparent 55%);
  z-index: -2;
  pointer-events: none;
}

/* Desert ridge + radio towers along the bottom, echoing the logo */
.hero__ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(120px, 15vw, 200px);
  z-index: -1;
  pointer-events: none;
}
.ridge-mass { fill: var(--ink-2); }
.ridge-towers {
  stroke: rgba(253, 217, 157, .2);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.ridge-light { fill: var(--ember); opacity: .85; }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 18px 8px 14px;
  border: 1px solid rgba(253, 217, 157, .26);
  border-radius: 999px;
  background: rgba(253, 217, 157, .06);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(232, 71, 31, .22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 71, 31, .22); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 71, 31, 0); }
}

.hero__title {
  color: var(--cream);
  font-size: clamp(2.7rem, 6.6vw, 5.1rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: -.005em;
  margin-bottom: .38em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(105deg, var(--orange-hi) 0%, var(--orange) 45%, var(--terra) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 55ch;
  color: rgba(253, 217, 157, .8);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: .92rem;
  color: rgba(253, 217, 157, .72);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .ico { color: var(--orange-hi); font-size: 1.15em; }

/* Hero photo */
.hero__media { position: relative; }

.shot {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(253, 217, 157, .16);
  transform: rotate(-1.2deg);
  transition: transform .5s var(--ease);
}
.shot:hover { transform: rotate(0deg); }
/* Shown in full — this is a before/after photo, so nothing is cropped. */
.shot img {
  display: block;
  width: 100%;
  height: auto;
}
.shot__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(9, 23, 34, .82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 217, 157, .28);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__chip {
  position: absolute;
  right: -10px;
  bottom: -26px;
  display: grid;
  gap: 2px;
  padding: 16px 24px;
  border-radius: var(--r-lg);
  background: var(--grad);
  color: #fff;
  box-shadow: 0 18px 40px rgba(187, 72, 37, .42);
}
.hero__chip strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__chip span { font-size: .88rem; opacity: .95; }

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker {
  background: var(--grad);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
  border-block: 1px solid rgba(255, 255, 255, .18);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__sep { opacity: .55; font-size: .7em; }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--sand); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}

.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(228, 217, 200, .8);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }

.card__media { position: relative; overflow: hidden; }
/* contain (not cover) so the whole before/after frame stays visible while the
   cards keep a uniform height. */
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--ink-3);
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 23, 34, .42), transparent 48%);
  pointer-events: none;
}

.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(187, 72, 37, .4);
}

.card__body { padding: 24px 24px 28px; }
.card__body h3 {
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: .015em;
  margin-bottom: .55em;
}
.card__body p { color: var(--muted); font-size: .96rem; margin: 0; }

/* Secondary services */
.extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 26px;
}
.extra {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: rgba(253, 217, 157, .78);
  border: 1px solid rgba(253, 217, 157, .14);
  transition: transform .35s var(--ease);
}
.extra:hover { transform: translateY(-5px); }
.extra h3 {
  color: var(--cream);
  font-size: 1.12rem;
  text-transform: uppercase;
  margin-bottom: .4em;
}
.extra p { margin: 0; font-size: .94rem; }
.extra__ico {
  width: 34px;
  height: 34px;
  flex: none;
  padding: 7px;
  border-radius: 10px;
  background: var(--grad);
  fill: #fff;
  box-sizing: content-box;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why {
  background: var(--ink);
  color: rgba(253, 217, 157, .76);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 128, 44, .16), transparent 68%);
  pointer-events: none;
}
.why .wrap { position: relative; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1px;
  background: rgba(253, 217, 157, .14);
  border: 1px solid rgba(253, 217, 157, .14);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why__item {
  background: var(--ink);
  padding: 34px 28px 38px;
  transition: background-color .35s var(--ease);
}
.why__item:hover { background: var(--ink-3); }
.why__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .35em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why__item h3 {
  color: var(--cream);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .55em;
}
.why__item p { margin: 0; font-size: .94rem; }

/* ==========================================================================
   SHOWCASE (before / after)
   ========================================================================== */
.showcase { background: var(--paper); }
.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(34px, 5vw, 66px);
}
.showcase__copy p { color: var(--muted); }
.showcase__copy .btn { margin-top: 10px; }

.showcase__media {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
/* Full frame, uncropped, so the before and after halves are both readable. */
.showcase__media img {
  display: block;
  width: 100%;
  height: auto;
}
.showcase__media figcaption {
  padding: 15px 22px;
  background: var(--sand);
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid var(--line);
}

.ba {
  position: absolute;
  top: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(6px);
}
.ba--before { left: 16px; background: rgba(9, 23, 34, .78); }
.ba--after  { right: 16px; background: linear-gradient(135deg, var(--terra), var(--orange)); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--sand); }
.about__inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.about__media {
  position: relative;
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: var(--r);
  background: rgba(9, 23, 34, .9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 217, 157, .25);
  color: var(--cream);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__badge span { font-size: .82rem; line-height: 1.35; opacity: .9; }

.about__copy p { color: var(--muted); }

.ticks {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.ticks li {
  position: relative;
  padding-left: 34px;
  font-size: .97rem;
  color: var(--body);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.2 14.6L6.2 12l1.5-1.4 3.1 3.1 5.5-5.5L17.8 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.2 14.6L6.2 12l1.5-1.4 3.1 3.1 5.5-5.5L17.8 9.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--ink);
  color: var(--cream);
}

/* Masonry columns instead of fixed-height rows: every photo is shown in full
   at its own aspect ratio, so the before and after halves are never cropped. */
.grid {
  column-count: 3;
  column-gap: 18px;
}
.grid__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 18px;
}

.tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(253, 217, 157, .16);
  background: var(--ink-3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 23, 34, .8) 0%, rgba(9, 23, 34, .1) 45%, transparent 70%);
  opacity: .75;
  transition: opacity .4s var(--ease);
}
.tile:hover,
.tile:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(253, 217, 157, .4);
}
.tile:hover::after { opacity: .95; }

.tile__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(9, 23, 34, .75);
  border: 1px solid rgba(253, 217, 157, .26);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--grad);
  color: #fff;
  padding: clamp(48px, 6vw, 76px) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: .3em;
}
.cta-band p { margin: 0; opacity: .95; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--paper); }

.contact__grid { display: block; }

/* Five cards, laid out as many to a row as the width allows. */
.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
  align-items: start;
}

.info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--sand);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
a.info:hover {
  transform: translateX(4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.info--static { cursor: default; }

.info__ico {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(187, 72, 37, .3);
}
.info__ico svg { width: 20px; height: 20px; fill: #fff; }

.info__body {
  display: block;
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.5;
}
.info__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink-2);
  color: rgba(253, 217, 157, .64);
  padding-top: clamp(52px, 6vw, 78px);
  font-size: .94rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 46px;
}
.site-footer__brand p { margin: 16px 0 18px; max-width: 34ch; }
.site-footer__brand .brand__logo { width: 150px; }

.social {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(253, 217, 157, .26);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.social svg { width: 19px; height: 19px; fill: var(--cream); }
.social:hover {
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-3px);
}

.site-footer__col h3 {
  color: var(--cream);
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.site-footer__col ul { display: grid; gap: 10px; }
.site-footer__col a { transition: color .22s var(--ease), padding-left .22s var(--ease); }
.site-footer__col a:hover { color: var(--orange-hi); padding-left: 4px; }

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(253, 217, 157, .13);
  font-size: .87rem;
  color: rgba(253, 217, 157, .5);
}
.site-footer__bar p { margin: 0; }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.site-footer__legal a {
  color: rgba(253, 217, 157, .62);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.site-footer__legal a:hover {
  color: var(--orange-hi);
  border-bottom-color: currentColor;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 10px 26px rgba(187, 72, 37, .42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top svg { width: 22px; height: 22px; fill: #fff; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(6, 20, 32, .95);
  backdrop-filter: blur(10px);
  animation: fade .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lightbox__figure figcaption {
  color: rgba(253, 217, 157, .82);
  font-size: .93rem;
  text-align: center;
  max-width: 60ch;
}

.lightbox__close,
.lightbox__nav {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(253, 217, 157, .3);
  background: rgba(9, 23, 34, .7);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; fill: var(--cream); }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--grad); transform: scale(1.07); }

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 66px; }

  /* Anchored to the sticky header (a positioned ancestor), so the panel
     always hangs directly below it at any scroll position. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 18px 20px 30px;
    background: var(--ink);
    border-bottom: 1px solid rgba(253, 217, 157, .16);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(253, 217, 157, .1); }
  .nav__link {
    display: block;
    padding: 15px 4px;
    font-size: 1.05rem;
  }
  .nav__link::after { display: none; }

  .nav__cta { margin-top: 20px; justify-content: center; }

  .burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero .kicker::before { display: none; }
  .eyebrow { justify-content: center; }
  .hero__lede { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero__chip { right: 10px; bottom: -20px; }

  .showcase__inner,
  .about__inner { grid-template-columns: 1fr; }

  .about__media { order: -1; max-width: 620px; }

  .showcase__copy, .about__copy { text-align: left; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .topbar__inner { justify-content: center; gap: 6px 18px; padding: 8px 0; }
  .topbar__note { font-size: .8rem; }

  .grid {
    column-count: 2;
    column-gap: 12px;
  }
  .grid__item { margin-bottom: 12px; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand p { max-width: none; }

  .lightbox { padding: 12px; gap: 6px; }
  .lightbox__close, .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__close { top: 12px; right: 12px; }
}

@media (max-width: 520px) {
  .wrap { width: calc(100% - 30px); }

  .topbar__links { gap: 14px; font-size: .8rem; }

  .hero__actions .btn,
  .about__actions .btn,
  .cta-band__actions .btn { flex: 1 1 100%; }

  .grid { column-count: 1; }

  .hero__chip { position: static; margin-top: 18px; justify-items: center; text-align: center; }
  .shot { transform: none; }

  .extra { flex-direction: column; gap: 14px; }
}

/* ==========================================================================
   MOTION / PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

@media print {
  .topbar, .site-header, .to-top, .lightbox, .ticker, .cta-band, .form { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero, .why, .gallery, .site-footer { background: #fff !important; color: #000 !important; }
  .hero__title, .section__title, .why__item h3 { color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* ==========================================================================
   LEGAL PAGES (terms.html / privacy.html)
   ========================================================================== */
.page-head {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(46px, 7vw, 86px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(223, 128, 44, .26), transparent 58%);
  pointer-events: none;
}
.page-head__inner { position: relative; max-width: 780px; }
.page-head h1 {
  font-size: clamp(2rem, 5.4vw, 3.1rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .35em;
}
.page-head__meta {
  margin: 0;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253, 217, 157, .68);
}

.legal { background: var(--paper); padding: clamp(40px, 6vw, 78px) 0; }
.legal__inner { max-width: 820px; }

.legal__intro {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--body);
  padding: 22px 26px;
  margin: 0 0 2.4em;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--sand);
}

.legal h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  text-transform: uppercase;
  color: var(--ink);
  margin: 2.1em 0 .6em;
  padding-top: 1.1em;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }

.legal h3 {
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--terra);
  margin: 1.6em 0 .5em;
}

.legal p { margin: 0 0 1.1em; }
.legal ul { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.legal ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: .6em;
  line-height: 1.62;
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.legal a { color: var(--terra); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--orange); }
.legal strong { color: var(--ink); }

/* Pulled-out box for the chat-widget consent terms. */
.legal__callout {
  padding: 24px 28px;
  margin: 0 0 1.6em;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--sand-2);
}
.legal__callout h3 { margin-top: 0; }
.legal__callout > :last-child { margin-bottom: 0; }

.legal__back { margin-top: 2.6em; }
