/* ==========================================================================
   Kash Flow Media — main stylesheet
   Sections: reset · type · layout helpers · buttons · header/nav · hero ·
   portfolio · services · why-local · pricing · cta band · footer · responsive
   ========================================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; color: var(--navy); font-weight: 600; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; z-index: 1000;
  padding: 0.65rem 1rem; clip: auto; background: var(--navy); color: var(--cream);
  border-radius: var(--radius-sm);
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--offwhite { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-label);
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 0.9rem;
}
.section--navy .eyebrow { color: var(--gold-bright); }
.eyebrow--center { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.eyebrow--center::before, .eyebrow--center::after {
  content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.5;
}

.display { font-family: var(--font-display); font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.01em; }
.h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700; }
.h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700; }
.h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; }
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.6; }
.section--navy .lead { color: rgba(246, 238, 232, 0.82); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }
.section-head.text-center { margin-inline: auto; }
.section-head .lead { margin-top: 0.85rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: var(--cream); --btn-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-label); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { --btn-bg: var(--navy); --btn-fg: var(--cream); --btn-bd: var(--navy); }
.btn-primary:hover { background: var(--navy-800); border-color: var(--navy-800); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold { --btn-bg: var(--gold); --btn-fg: var(--navy); --btn-bd: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
/* Buttons placed on navy backgrounds */
.on-navy .btn-outline, .section--navy .btn-outline, .cta-band .btn-outline { --btn-fg: var(--cream); --btn-bd: var(--gold-bright); }
.on-navy .btn-outline:hover, .section--navy .btn-outline:hover, .cta-band .btn-outline:hover { background: var(--gold-bright); color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.text-link {
  font-family: var(--font-label); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.text-link::after { content: "\2192"; transition: transform 0.18s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }
.section--navy .text-link { color: var(--gold-bright); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  font-family: var(--font-label); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--navy);
  padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  position: relative; transition: color 0.15s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.35rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--gold-deep); }
.nav-cta { margin-left: 0.6rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--radius-sm); cursor: pointer;
  position: relative; padding: 0;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2px;
  background: var(--navy); transform: translateX(-50%); transition: 0.2s var(--ease);
}
.nav-toggle-bars { top: 50%; margin-top: -1px; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--cream); padding-block: clamp(2.5rem, 1rem + 6vw, 5.5rem) var(--section-y); overflow: hidden; }
.hero-inner { text-align: center; max-width: 880px; margin-inline: auto; }
.hero-logo { width: min(520px, 84%); margin: 0 auto clamp(1.25rem, 0.5rem + 2vw, 2.25rem); }
.hero-title { font-family: var(--font-display); font-size: var(--fs-display); font-weight: 700; color: var(--navy); line-height: 1.08; letter-spacing: -0.015em; }
.hero-title .accent { color: var(--gold-deep); font-style: italic; }
.hero-lead { margin: 1.4rem auto 0; max-width: 620px; }
.hero .btn-row { justify-content: center; margin-top: clamp(1.75rem, 1rem + 2vw, 2.5rem); }

/* ---------- Portfolio (teaser + grid) ---------- */
.portfolio-grid {
  display: grid; gap: clamp(0.9rem, 0.4rem + 1.5vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--white);
  aspect-ratio: 4 / 5; display: block;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; }
/* On-brand placeholder while real work is still to be dropped in */
.portfolio-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 0.5rem;
  padding: 1.5rem; color: var(--cream);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(195,160,107,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy) 70%);
}
.portfolio-ph .ph-wave { width: 46px; height: 46px; opacity: 0.9; margin-bottom: 0.35rem; }
.portfolio-ph .ph-cat {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.68rem; color: var(--gold-bright);
}
.portfolio-ph .ph-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.portfolio-caption {
  position: absolute; inset: auto 0 0 0; padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(3,28,56,0.92), transparent);
  color: var(--cream); opacity: 0; transform: translateY(8px);
  transition: 0.22s var(--ease);
}
.portfolio-card:hover .portfolio-caption,
.portfolio-card:focus-visible .portfolio-caption { opacity: 1; transform: translateY(0); }
.portfolio-caption .cap-cat {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.66rem; color: var(--gold-bright);
}
.portfolio-caption .cap-title { font-family: var(--font-display); font-size: 1.05rem; }

/* Video (Reel) cards — native vertical 9:16, phone-native content wall.
   Rendered as inline players with a meta block below (not lightbox tiles). */
.portfolio-card--video {
  aspect-ratio: auto; /* override the 4/5 image-card ratio; video sets its own */
  background: var(--navy); display: flex; flex-direction: column;
}
.portfolio-card--video:hover { transform: none; box-shadow: var(--shadow-sm); }
.portfolio-card--video video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  background: var(--navy-800); display: block;
}
.portfolio-card__meta { padding: 0.9rem 1.1rem 1.1rem; color: var(--cream); }
.portfolio-card__meta .cap-cat {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.66rem; color: var(--gold-bright);
}
.portfolio-card__meta h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin: 0.25rem 0 0.4rem; }
.portfolio-card__meta p { color: rgba(246, 238, 232, 0.82); font-size: 0.9rem; margin: 0; }
.center-cta { margin-top: clamp(2rem, 1rem + 2vw, 3rem); text-align: center; }

/* ---------- Services overview ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 0.4rem + 2vw, 2rem); }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream); color: var(--navy); margin-bottom: 1.1rem;
  border: 1.5px solid var(--gold);
}
.service-card h3 { margin-bottom: 0.6rem; }
.service-card .text-link { margin-top: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 0; }
.service-tags li {
  font-size: 0.76rem; font-family: var(--font-label); letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  background: var(--cream); color: var(--muted);
}

/* ---------- Why local ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.why-points { display: grid; gap: 1.1rem; margin-top: 1.5rem; }
.why-point { display: flex; gap: 0.9rem; align-items: flex-start; }
.why-point .dot {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(195,160,107,0.18); color: var(--gold-bright);
  display: grid; place-items: center; margin-top: 2px;
}
.why-point h3 { color: var(--white); font-family: var(--font-label); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em; text-transform: none; margin-bottom: 0.2rem; }
.why-point p { color: rgba(246,238,232,0.78); font-size: 0.98rem; margin: 0; }
.why-badge-wrap { display: grid; place-items: center; }
.why-badge { width: min(280px, 70%); }

/* ---------- Pricing (teaser cards) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.4rem + 1.5vw, 1.75rem); align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 1.2vw, 2.25rem); box-shadow: var(--shadow-sm);
  position: relative; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.is-featured {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.price-card.is-featured .price-name,
.price-card.is-featured .price-amount { color: var(--white); }
.price-card.is-featured .price-tagline { color: var(--gold-bright); }
.price-card.is-featured .price-features li { color: rgba(246,238,232,0.9); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-family: var(--font-label);
  font-weight: 600; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-tagline {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.7rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 0.6rem;
}
.price-name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--navy); }
.price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-top: 0.4rem; }
.price-amount .per { font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--muted); }
.price-card.is-featured .price-amount .per { color: rgba(246,238,232,0.7); }
.price-features { margin: 1.35rem 0; display: grid; gap: 0.6rem; }
.price-features li { position: relative; padding-left: 1.7rem; font-size: 0.95rem; color: var(--ink); }
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 0.36em; width: 15px; height: 9px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card.is-featured .price-features li::before { border-color: var(--gold-bright); }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card.is-featured .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.price-card.is-featured .btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.pricing-foot { margin-top: 1.75rem; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(100% 140% at 50% -20%, rgba(195,160,107,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy) 65%);
  color: var(--cream); text-align: center;
}
.cta-band .h2 { color: var(--white); }
.cta-band .lead { color: rgba(246,238,232,0.82); margin: 1rem auto 0; max-width: 560px; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(246,238,232,0.8); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.75rem, 1rem + 3vw, 4rem);
  padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem);
}
.footer-badge { width: 92px; margin-bottom: 0.85rem; }
.footer-tagline { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.72rem; color: var(--gold-bright); margin-bottom: 0.75rem; }
.footer-area { color: rgba(246,238,232,0.7); font-size: 0.95rem; max-width: 340px; }
.footer-heading {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.75rem; font-weight: 600; color: var(--white); margin-bottom: 1rem;
}
.footer-nav li { margin-bottom: 0.55rem; }
.footer-nav a, .footer-contact a { color: rgba(246,238,232,0.8); transition: color 0.15s var(--ease); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-bright); }
.footer-email { font-size: 1.05rem; }
.footer-social { margin-top: 1.1rem; }
.footer-social a { display: inline-flex; align-items: center; gap: 0.55rem; color: rgba(246,238,232,0.8); }
.footer-social a:hover { color: var(--gold-bright); }
.footer-bar { border-top: 1px solid var(--line-navy); }
.footer-bar-inner {
  display: flex; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap;
  padding-block: 1.25rem; font-size: 0.82rem; color: rgba(246,238,232,0.6);
}
.footer-bar-inner p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-badge-wrap { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  /* Full-width drop-down panel: spans left:0/right:0 so it never creates
     horizontal overflow (unlike an off-canvas translateX panel). */
  .primary-nav {
    position: fixed; left: 0; right: 0; top: var(--header-h);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    background: var(--white); border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-link { display: block; padding: 0.9rem 0.5rem; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .nav-cta { margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; }
}
@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.is-featured { order: -1; }
}
@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .cta-band .btn-row .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Page components (Services · Pricing · Portfolio · About · Contact)
   ========================================================================== */

/* ---------- Sub-page hero ---------- */
.page-hero { background: var(--cream); text-align: center; padding-block: clamp(2.75rem, 1.75rem + 4vw, 5rem) clamp(2rem, 1.25rem + 2.5vw, 3.25rem); }
.page-hero .lead { margin: 1.1rem auto 0; max-width: 660px; }

/* ---------- Generic gold check list ---------- */
.check-list { display: grid; gap: 0.6rem; }
.check-list li { position: relative; padding-left: 1.7rem; font-size: 0.98rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.4em; width: 15px; height: 9px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.section--navy .check-list li::before { border-color: var(--gold-bright); }

/* ---------- Services ---------- */
.svc-head { max-width: 760px; }
.cluster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem); }
.cluster { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 1vw, 2.1rem); box-shadow: var(--shadow-sm); }
.cluster-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--navy); border: 1.5px solid var(--gold); margin-bottom: 1rem; }
.cluster h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 1rem; }
.web-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
.web-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 0; }
.web-tags a {
  font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); background: var(--cream);
  color: var(--navy); border: 1px solid var(--line); transition: 0.15s var(--ease);
}
.web-tags a:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---------- Callout (navy box) ---------- */
.callout {
  background: var(--navy); color: var(--cream); border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.1rem); display: flex; gap: 1.25rem; align-items: center;
}
.callout-icon { flex: 0 0 auto; color: var(--gold-bright); }
.callout h3 { color: var(--white); margin-bottom: 0.3rem; font-family: var(--font-display); font-size: 1.3rem; }
.callout p { color: rgba(246, 238, 232, 0.82); margin: 0; }

/* ---------- Pricing (full page) ---------- */
/* Flex-wrap (not grid) so 5 tiers sit on one row on desktop and any wrapped
   rows stay centered (5 / 3+2 / 2 / 1) instead of orphaning the last card. */
.pricing-grid--full { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.pricing-grid--full > .price-card { flex: 1 1 200px; max-width: 224px; }
.alacarte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.9rem; }
.alacarte-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem;
}
.alacarte-item .name { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.8rem; color: var(--navy); }
.alacarte-item .price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.web-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem); }
.web-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 1vw, 2.1rem); box-shadow: var(--shadow-sm); }
.web-card .price-name { font-size: 1.5rem; }
.web-card .web-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold-deep); margin: 0.5rem 0 0.75rem; }
.web-card p { color: var(--muted); font-size: 0.98rem; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1.5rem; }

/* ---------- Portfolio filters + lightbox ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.filter-btn {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; font-weight: 600;
  padding: 0.55rem 1.15rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: transparent; color: var(--navy); cursor: pointer; transition: 0.16s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.portfolio-card.is-hidden { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(3, 20, 40, 0.88); opacity: 0; visibility: hidden; transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; background: var(--cream); border-radius: var(--radius); max-width: 560px; width: 100%; overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox-media { aspect-ratio: 4 / 3; }
.lightbox-media img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-body { padding: 1.5rem clamp(1.5rem, 1rem + 1vw, 2rem) 1.75rem; }
.lightbox-body .cap-cat { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; color: var(--gold-deep); }
.lightbox-body h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0.3rem 0 0.6rem; }
.lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(3, 28, 56, 0.55); color: var(--cream); font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2; }
.lightbox-close:hover { background: var(--navy); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem); }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 1vw, 2.1rem); box-shadow: var(--shadow-sm); }
.testi .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.testi blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--navy); }
.testi .who { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--gold-deep); margin-top: 1.1rem; }
.placeholder-note { text-align: center; color: var(--muted); font-size: 0.85rem; font-style: italic; margin-top: 1.5rem; }

/* ---------- About ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.story-media { display: grid; place-items: center; }
.story-badge { width: min(300px, 72%); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 0.75rem + 2vw, 2.25rem); }
.step { text-align: center; }
.step .num { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem;
  background: var(--navy); color: var(--gold-bright); font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.15rem; }
.form-field label { display: block; font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; }
.form-field .req { color: var(--gold-deep); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--off-white); font-family: var(--font-body); font-size: 1rem; color: var(--ink); transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169, 133, 90, 0.16); }
.form-field input.has-error, .form-field textarea.has-error { border-color: #C0392B; }
.field-error { color: #C0392B; font-size: 0.8rem; margin: 0.35rem 0 0; }
.form-actions { margin-top: 0.5rem; }
.form-actions .btn { width: 100%; }
.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert-success { background: rgba(169, 133, 90, 0.14); border-left: 3px solid var(--gold); color: var(--navy); }
.alert-error { background: #FCEDEC; border-left: 3px solid #C0392B; color: #8A2A22; }
.contact-aside { background: var(--navy); color: rgba(246, 238, 232, 0.85); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.contact-aside h2, .contact-aside h3 { color: var(--white); }
.contact-aside .eyebrow { color: var(--gold-bright); }
.contact-aside a { color: var(--gold-bright); }
.contact-aside a:hover { text-decoration: underline; }
.contact-block { margin-bottom: 1.5rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-label { font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--gold-bright); margin-bottom: 0.35rem; }
.contact-aside .big-email { font-size: 1.1rem; }

/* ---------- Page-component responsive ---------- */
@media (max-width: 900px) {
  .cluster-grid { grid-template-columns: 1fr; }
  .web-split { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .callout { flex-direction: column; text-align: center; }
}
