/* Pacific theme — a brand layer over Bootstrap 5.
   Bootstrap owns the grid, navbar (+collapse JS), accordion, buttons and
   utilities; this file keeps the template's signature layouts: DM Sans, the
   dark hero + 3-cell action grid, and the service/review/list cards.

   Recoloured from Pacific's navy/orange to Steve's forest/gold — see
   brand.css for why green took the action role and gold became the accent.
   --ps-accent is therefore GREEN, not gold; --ps-gold is separate and belongs
   on dark grounds and non-text UI only. */

:root {
  --ps-surface: #F6F2E9;
  --ps-surface-raised: #ffffff;
  --ps-ink: var(--brand-ink, #23301F);
  --ps-ink-strong: var(--bs-dark, #0B1F12);
  --ps-muted: var(--bs-secondary, #556052);
  --ps-line: var(--brand-sand-200, #E2DCCD);
  --ps-accent: var(--bs-primary, #1B4429);
  --ps-accent-hover: var(--brand-forest-600, #245736);
  /* Beveled accent: lighter top → darker bottom, so one accent drives the
     whole gradient. */
  --ps-grad-accent: linear-gradient(180deg,
    color-mix(in srgb, var(--ps-accent) 88%, white) 0%,
    color-mix(in srgb, var(--ps-accent) 92%, black) 100%);
  --ps-grad-accent-hover: linear-gradient(180deg,
    color-mix(in srgb, var(--ps-accent) 96%, white) 0%,
    color-mix(in srgb, var(--ps-accent) 86%, black) 100%);
  --ps-accent-soft: color-mix(in srgb, var(--ps-accent) 12%, white);
  --ps-accent-tint: color-mix(in srgb, var(--ps-accent) 55%, white);
  --ps-green: var(--bs-success, #35704A);

  /* Gold. Three rungs because gold's usable contrast depends entirely on what
     it sits on: -400 for dark grounds, -500 for rules and icons on light,
     -600 for the rare piece of small gold text on light. */
  --ps-gold: var(--brand-gold-400, #E0A62F);
  --ps-gold-bright: var(--brand-gold-300, #EBC169);
  --ps-gold-ui: var(--brand-gold-500, #B87814);
  --ps-gold-text: var(--brand-gold-600, #96600F);
  --ps-gold-soft: color-mix(in srgb, var(--ps-gold-ui) 14%, white);

  /* Reversed-out text on the dark bands — warm, not the template's blue-greys. */
  --ps-on-dark: var(--brand-on-dark, #EDE8DC);
  --ps-on-dark-body: var(--brand-on-dark-body, #D6D2C4);
  --ps-on-dark-muted: var(--brand-on-dark-muted, #A9B0A0);

  /* Hero veil, keyed to the brand's near-black forest. */
  --ps-veil-rgb: 8 26 15;
  --ps-veil-deep-rgb: 5 18 10;
  --ps-shadow: 0 24px 80px rgb(11 31 18 / 0.14);
  --ps-shadow-sm: 0 1px 2px rgb(11 31 18 / 0.06);
  --ps-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Utility bar + navbar, both sticky — what a sticky column has to clear. */
  --ps-header-h: 114px;
  --ps-font: "DM Sans", "Google Sans", system-ui, "Helvetica Neue", Arial, sans-serif;
}

/* Tone laid over Bootstrap Reboot. */
body { font-family: var(--ps-font); color: var(--ps-ink); background: var(--bs-light, #FAF7F1); }
h1, h2, h3 { color: var(--ps-ink-strong); font-weight: 760; letter-spacing: -0.025em; }
.container { max-width: 1240px; }
.ps-section { padding: clamp(64px, 8vw, 112px) 0; }
.ps-eyebrow-space { max-width: 34rem; }

/* Buttons — Bootstrap .btn themed by --bs-*, given Pacific's pill + weight. */
.btn { font-weight: 700; }
.btn-lg { font-weight: 750; }

/* --- Brand mark ---------------------------------------------------------- */
.ps-brand { display: inline-flex; align-items: center; gap: 12px; }
.ps-brand-mark { width: 30px; height: 30px; flex: none; border-radius: 8px; background: linear-gradient(140deg, var(--ps-accent), var(--ps-accent-hover)); box-shadow: 0 4px 12px color-mix(in srgb, var(--ps-accent) 30%, transparent); }
.ps-brand-name { color: var(--ps-ink-strong); font-size: 21px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.ps-brand-light .ps-brand-name { color: #fff; }

/* --- Header: utility bar + Bootstrap navbar ------------------------------ */
.ps-header { position: sticky; top: 0; z-index: 1030; }
.ps-utility {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--ps-ink-strong) 92%, black) 0%,
    var(--ps-ink-strong) 42%,
    color-mix(in srgb, var(--ps-ink-strong) 78%, var(--ps-accent)) 100%);
  color: var(--ps-on-dark-body);
  font-size: 13px;
}
.ps-utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.ps-utility-note { font-weight: 600; letter-spacing: 0.02em; }
.ps-utility-right { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.ps-utility-links { display: flex; gap: 20px; }
.ps-utility-links a { color: var(--ps-on-dark-body); text-decoration: none; }
.ps-utility-links a:hover { color: #fff; }
.ps-utility-divider { width: 1px; height: 14px; background: rgb(255 255 255 / 0.28); }
.ps-utility-hours { display: inline-flex; align-items: center; gap: 7px; color: var(--ps-on-dark-body); white-space: nowrap; }
.ps-utility-hours-icon { width: 15px; height: 15px; color: var(--ps-accent-tint); flex: none; }
.ps-utility-hours-label { color: var(--ps-on-dark-muted); font-weight: 600; }
.ps-utility-hours strong { color: #fff; font-weight: 700; }
@media (max-width: 575.98px) { .ps-utility-links { display: none; } .ps-utility-divider { display: none; } }

.ps-navbar { background: color-mix(in srgb, var(--bs-light, #FAF7F1) 88%, transparent); backdrop-filter: saturate(160%) blur(8px); box-shadow: 0 1px 0 var(--ps-line); }
.ps-navbar .nav-link { color: color-mix(in srgb, var(--ps-ink) 84%, transparent); font-weight: 600; }
.ps-navbar .nav-link:hover, .ps-navbar .nav-link:focus { color: var(--ps-accent); }

/* Dropdowns — rounded, shadowed panel + small orange caret, matching the
   template. Desktop opens on hover; Bootstrap's click still drives the mobile
   collapsed menu. */
.ps-navbar .dropdown-toggle { display: inline-flex; align-items: center; }
.ps-navbar .dropdown-toggle::after {
  width: 0; height: 0;
  margin-left: 7px;
  vertical-align: middle;
  border-top: 4px solid var(--ps-gold-ui);
  border-right: 3.5px solid transparent;
  border-left: 3.5px solid transparent;
  border-bottom: 0;
  transform-origin: 50% 42%;
  transition: transform 180ms var(--ps-ease);
}
.ps-navbar .dropdown-toggle.show::after { transform: rotate(180deg); }
.ps-navbar .dropdown-menu {
  --bs-dropdown-min-width: 224px;
  padding: 10px;
  border: 0;
  border-radius: 16px;
  background: var(--ps-surface-raised);
  box-shadow: 0 10px 22px rgb(11 31 18 / 0.14), 0 24px 54px rgb(11 31 18 / 0.22);
}
.ps-navbar .dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ps-ink-strong);
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ps-ease);
}
.ps-navbar .dropdown-item:hover, .ps-navbar .dropdown-item:focus {
  background: var(--ps-accent-soft);
  color: var(--ps-accent-hover);
  transform: translateX(3px);
}
/* .active is the current page; :active is the mouse held down. Only the former
   was ever set on this nav, and it was the one rule the theme did not style —
   so "you are here" rendered in Bootstrap's stock blue. Solid forest reads as
   a state rather than a hover, with a gold rule to mark it. */
.ps-navbar .dropdown-item.active,
.ps-navbar .dropdown-item.active:hover,
.ps-navbar .dropdown-item.active:focus {
  position: relative;
  background: var(--ps-accent);
  color: #fff;
  transform: none;
}
.ps-navbar .dropdown-item.active::before {
  content: "";
  position: absolute;
  top: 9px; bottom: 9px; left: 5px;
  width: 3px;
  border-radius: 2px;
  background: var(--ps-gold);
}
.ps-navbar .dropdown-item:active {
  background: var(--ps-accent);
  color: #fff;
}

/* Desktop hover-to-open. The menu stays in the DOM (display:block) and is
   revealed with opacity/visibility, so there's no popper/JS timing to fight. */
@media (min-width: 992px) {
  .ps-navbar .nav-item.dropdown > .dropdown-menu {
    position: absolute; top: 100%; left: 0;
    display: block; margin-top: 12px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(6px);
    transition: opacity 160ms var(--ps-ease), transform 160ms var(--ps-ease), visibility 0s linear 160ms;
  }
  .ps-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .ps-navbar .nav-item.dropdown:focus-within > .dropdown-menu,
  .ps-navbar .nav-item.dropdown > .dropdown-menu.show {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition: opacity 160ms var(--ps-ease), transform 160ms var(--ps-ease), visibility 0s;
  }
  /* Invisible bridge across the 12px gap so crossing it doesn't drop the hover. */
  .ps-navbar .nav-item.dropdown::after {
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px;
  }
  .ps-navbar .nav-item.dropdown:hover > .dropdown-toggle::after,
  .ps-navbar .nav-item.dropdown:focus-within > .dropdown-toggle::after { transform: rotate(180deg); }
}
/* Phone CTA boxed as a bordered pill to echo the Book button beside it. */
.ps-header-call { display: inline-flex; align-items: center; gap: 11px; min-height: 52px; padding: 8px 22px; border: 1px solid var(--ps-line); border-radius: 999px; color: var(--ps-ink-strong); text-decoration: none; transition: color 180ms ease, border-color 180ms ease, transform 180ms var(--ps-ease), box-shadow 180ms ease; }
.ps-header-call:hover { border-color: var(--ps-accent); color: var(--ps-accent-hover); transform: translateY(-1px); box-shadow: var(--ps-shadow-sm); }
.ps-header-call-icon { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 auto; color: var(--ps-green); }
.ps-header-call-icon svg { width: 28px; height: 28px; }
.ps-header-call-copy { display: grid; line-height: 1.12; }
.ps-header-call-copy small { color: var(--ps-muted); font-size: 12px; font-weight: 700; }
.ps-header-call-copy strong { font-size: 17px; font-weight: 850; }
/* Book button — larger to sit level with the boxed phone CTA. */
.ps-header-book { min-height: 52px; padding: 0 30px; font-size: 16px; display: inline-flex; align-items: center; }

/* --- Hero ---------------------------------------------------------------- */
.ps-hero { position: relative; overflow: hidden; background: var(--ps-ink-strong); color: #FBF8F1; }
.ps-hero-media { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.ps-hero.has-image::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgb(var(--ps-veil-rgb) / 0.9) 0%, rgb(var(--ps-veil-rgb) / 0.72) 38%, rgb(var(--ps-veil-rgb) / 0.42) 62%, rgb(var(--ps-veil-rgb) / 0.15) 100%); }
.ps-hero-grid { position: relative; z-index: 2; }
.ps-hero-copy { width: min(100%, 900px); padding: clamp(64px, 13vh, 156px) 0; }
.ps-eyebrow { display: inline-block; margin: 0 0 20px; color: var(--ps-gold-bright); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; text-shadow: 0 2px 18px rgb(11 31 18 / 0.5); }
.ps-hero-copy h1 { max-width: 800px; margin: 0 0 26px; color: #FBF8F1; font-size: clamp(48px, 5.6vw, 76px); line-height: 0.96; text-shadow: 0 3px 30px rgb(5 18 10 / 0.45); }
.ps-hero-lede { max-width: 560px; margin: 0 0 26px; color: var(--ps-on-dark-body); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; text-shadow: 0 2px 20px rgb(5 18 10 / 0.6); }
.ps-hero-proof { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; color: #FBF8F1; font-size: 14px; font-weight: 700; text-shadow: 0 2px 16px rgb(5 18 10 / 0.65); }
.ps-hero-rating { font-size: 19px; font-weight: 850; letter-spacing: -0.01em; }
.ps-stars { color: var(--ps-gold-ui); letter-spacing: 0.06em; }
.ps-hero-proof .ps-stars, .ps-video-band .ps-stars, .ps-coupons .ps-stars { color: var(--ps-gold); }

/* The 3-cell action grid is bespoke — Bootstrap has no equivalent component. */
.ps-action-grid { display: grid; width: min(100%, 860px); grid-template-columns: 1.2fr 1fr 0.9fr; gap: 10px; }
.ps-action { display: flex; align-items: center; gap: 12px; min-width: 0; min-height: 80px; padding: 12px 16px; border-radius: 14px; background: rgb(var(--ps-veil-rgb) / 0.8); color: #FBF8F1; text-decoration: none; box-shadow: 0 16px 36px rgb(11 31 18 / 0.22); transition: transform 180ms var(--ps-ease), background 180ms ease; }
.ps-action:hover { background: rgb(var(--ps-veil-deep-rgb) / 0.92); transform: translateY(-3px); color: #FBF8F1; }
/* Gold, not the green accent: this tile sits on the dark hero veil, where a
   green button would sink into the ground. Dark text on gold — white on
   #E0A62F is 2.1:1. */
.ps-action-primary {
  background: linear-gradient(180deg, var(--ps-gold-bright) 0%, var(--ps-gold) 100%);
  color: var(--ps-ink-strong);
  /* Bevel: inset top highlight + inset bottom shade over the outer drop shadow. */
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.38),
    inset 0 -2px 0 rgb(0 0 0 / 0.16),
    0 16px 36px rgb(11 31 18 / 0.22);
}
.ps-action-primary:hover {
  background: linear-gradient(180deg, #F3D08C 0%, var(--ps-gold-bright) 100%);
  color: var(--ps-ink-strong);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.42),
    inset 0 -2px 0 rgb(0 0 0 / 0.2),
    0 20px 42px rgb(11 31 18 / 0.28);
}
.ps-action-call { background: linear-gradient(180deg, #ffffff 0%, #E6E0D2 100%); color: var(--ps-ink-strong); }
.ps-action-call:hover { background: linear-gradient(180deg, #FAF7F1 0%, #D3CBB8 100%); color: var(--ps-ink-strong); }
.ps-action-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: rgb(247 250 248 / 0.12); }
.ps-action-icon svg { width: 22px; height: 22px; }
.ps-action-primary .ps-action-icon { background: #fff; color: var(--ps-ink-strong); }
.ps-action-call .ps-action-icon { background: transparent; border: 2.5px solid var(--ps-green); color: var(--ps-green); }
.ps-action-call .ps-action-icon svg { width: 24px; height: 24px; }
.ps-action-copy { display: grid; min-width: 0; gap: 3px; }
.ps-action-copy strong { overflow: hidden; font-size: 16px; font-weight: 800; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.ps-action-copy small { overflow: hidden; color: var(--ps-on-dark-muted); font-size: 11px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.ps-action-primary .ps-action-copy small { color: color-mix(in srgb, var(--ps-ink-strong) 74%, transparent); }
.ps-action-call .ps-action-copy small { color: var(--ps-muted); }
.ps-action-arrow { margin-left: auto; display: grid; place-items: center; }
.ps-action-arrow svg { width: 15px; height: 15px; }

/* --- Section heads ------------------------------------------------------- */
.ps-kicker { margin: 0 0 12px; color: var(--ps-gold-text); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
/* The same kicker on a dark band needs the bright gold — the bronze rung is
   tuned for light grounds and drops to 3.3:1 over forest. Links inside one
   (the FAQ entry pages) would otherwise inherit the green link colour. */
.ps-pagehead .ps-kicker, .ps-video-band .ps-kicker,
.ps-cta .ps-kicker, .ps-coupons .ps-kicker { color: var(--ps-gold); }
.ps-pagehead .ps-kicker a, .ps-video-band .ps-kicker a,
.ps-cta .ps-kicker a, .ps-coupons .ps-kicker a { color: inherit; text-decoration: none; }
.ps-pagehead .ps-kicker a:hover, .ps-video-band .ps-kicker a:hover { color: var(--ps-gold-bright); }

/* --- Service cards (fill their Bootstrap column) ------------------------- */
.ps-svc-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: 18px; border: 1px solid var(--ps-line); background: var(--ps-surface-raised); box-shadow: var(--ps-shadow-sm); text-decoration: none; color: inherit; transition: transform 0.22s var(--ps-ease), box-shadow 0.22s var(--ps-ease), border-color 0.22s ease; }
.ps-svc-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--ps-shadow); }
.ps-svc-card-media { display: grid; place-items: center; aspect-ratio: 4 / 3; background: linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 62%, var(--ps-accent))); background-size: cover; background-position: center; color: rgb(255 255 255 / 0.9); }
.ps-svc-card-media svg { width: 56px; height: 56px; }
.ps-svc-card-body { display: flex; flex: 1; flex-direction: column; gap: 11px; padding: 24px 24px 28px; }
.ps-svc-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ps-svc-card-top h3 { margin: 0; color: var(--ps-ink-strong); font-size: 21px; font-weight: 800; letter-spacing: -0.02em; transition: color 180ms ease; }
.ps-svc-card:hover .ps-svc-card-top h3 { color: var(--ps-accent); }
.ps-svc-card-arrow { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; background: var(--ps-gold-soft); color: var(--ps-gold-text); transition: transform 0.22s var(--ps-ease); }
.ps-svc-card-arrow svg { width: 17px; height: 17px; }
.ps-svc-card:hover .ps-svc-card-arrow { transform: translateX(3px); }
.ps-svc-card-body p { margin: 0; color: var(--ps-muted); font-size: 15px; line-height: 1.55; }

/* Overflow services beyond the first four, as compact pills. */
.ps-svc-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 44px; }
.ps-svc-pill { display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 999px; border: 1px solid var(--ps-line); background: var(--ps-surface-raised); color: var(--ps-ink-strong); font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: var(--ps-shadow-sm); transition: transform 0.18s var(--ps-ease), box-shadow 0.18s var(--ps-ease), border-color 0.18s ease, color 0.18s ease; }
.ps-svc-pill svg { width: 15px; height: 15px; color: var(--ps-gold-ui); transition: transform 0.18s var(--ps-ease); }
.ps-svc-pill:hover { transform: translateY(-2px); border-color: transparent; color: var(--ps-accent); box-shadow: var(--ps-shadow); }
.ps-svc-pill:hover svg { transform: translateX(3px); }

/* --- Owner message: full-width 50/50 photo + accent quote panel ---------- */
.ps-founder { overflow: hidden; }
/* minmax(0,1fr) forces a true 50/50 — plain 1fr lets the quote's min-content
   steal width from the photo column. */
.ps-founder-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; min-height: 480px; }
.ps-founder-media { position: relative; overflow: hidden; background-size: cover; background-position: center; background-color: var(--ps-ink-strong); }
.ps-founder-media-ph { position: absolute; inset: 0; background: linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 55%, var(--ps-accent))); }
/* Forest panel with a gold quote mark. It used to be a gold panel carrying
   white text, which is 3.0:1 — the worst pair on the site. Swapping the two
   fixes the contrast and gives the gold something dark to sit against. */
.ps-founder-panel { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: clamp(44px, 5.5vw, 92px); background: linear-gradient(150deg, var(--ps-ink-strong) 0%, color-mix(in srgb, var(--ps-ink-strong) 82%, var(--ps-accent)) 100%); color: var(--ps-on-dark-body); }
.ps-founder-mark { position: absolute; z-index: 0; top: clamp(4px, 2vw, 24px); left: clamp(24px, 4vw, 56px); font-family: Georgia, "Times New Roman", serif; font-size: clamp(190px, 22vw, 300px); line-height: 1; color: rgb(224 166 47 / 0.18); pointer-events: none; }
.ps-founder-eyebrow { position: relative; z-index: 1; margin: 0; color: var(--ps-gold); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.ps-founder-quote { position: relative; z-index: 1; max-width: 34ch; margin: 0; color: #fff; font-size: clamp(21px, 2vw, 29px); font-weight: 680; line-height: 1.42; letter-spacing: -0.015em; }
.ps-founder-sign { position: relative; z-index: 1; margin-top: 8px; display: grid; gap: 2px; }
.ps-founder-sign strong { color: #fff; font-size: 17px; font-weight: 850; }
.ps-founder-sign span { color: rgb(255 255 255 / 0.8); font-size: 14px; font-weight: 600; }

/* --- Quick about: framed team photo + intro + callouts ------------------- */
.ps-about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.ps-about-media { position: relative; margin: 0; }
.ps-about-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 22px; background-size: cover; background-position: center; background-color: var(--ps-ink-strong); box-shadow: var(--ps-shadow); }
.ps-about-frame-ph { position: absolute; inset: 0; background: linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 60%, var(--ps-accent))); }
/* Gold badge with forest text — gold as a ground, never as text on light. */
.ps-about-badge { position: absolute; right: -12px; bottom: -18px; max-width: 62%; margin: 0; padding: 15px 22px; border-radius: 16px; background: var(--ps-gold); color: var(--ps-ink-strong); font-size: 15px; font-weight: 800; line-height: 1.2; box-shadow: var(--ps-shadow); }
.ps-about-lede { margin: 0 0 22px; color: var(--ps-muted); font-size: 17px; line-height: 1.6; }
.ps-about-points { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.ps-about-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--ps-ink); font-size: 16px; line-height: 1.5; }
.ps-about-point-icon { display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: color-mix(in srgb, var(--ps-green) 16%, white); color: var(--ps-green); }
.ps-about-point-icon svg { width: 15px; height: 15px; }

@media (max-width: 767.98px) {
  .ps-founder-grid { grid-template-columns: 1fr; }
  .ps-founder-media { min-height: 260px; }
  .ps-about-grid { grid-template-columns: 1fr; }
  .ps-about-media { max-width: 520px; }
  .ps-about-badge { right: 12px; }
}

/* --- Reviews ------------------------------------------------------------- */
.ps-reviews { background: var(--ps-surface); }
.ps-rev-card { position: relative; display: flex; flex-direction: column; gap: 18px; height: 100%; padding: 32px 30px; border-radius: 18px; background: var(--ps-surface-raised); box-shadow: 0 8px 26px rgb(11 31 18 / 0.07); }
.ps-rev-card .ps-stars { font-size: 17px; padding-right: 32px; }
.ps-rev-quote { flex: 1; margin: 0; color: var(--ps-ink); font-size: 16px; line-height: 1.6; font-style: italic; }
/* Home-page cards sit in an equal-height row, so long reviews are capped at
   five lines. The Reviews page uses .ps-rev-quote alone and stays uncut. */
.ps-rev-quote-clamp { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; line-clamp: 5; overflow: hidden; }
/* Provenance mark, pinned to the card's top-right corner. */
.ps-rev-source { position: absolute; top: 20px; right: 20px; display: block; width: 20px; height: 20px; line-height: 0; }
.ps-rev-source svg { display: block; width: 100%; height: 100%; }
a.ps-rev-source[href] { transition: opacity 0.15s ease; }
a.ps-rev-source[href]:hover, a.ps-rev-source[href]:focus-visible { opacity: 0.7; }
.ps-rev-person { display: flex; align-items: center; gap: 14px; }
.ps-rev-avatar { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(140deg, var(--ps-accent), var(--ps-accent-hover)); }
.ps-rev-meta { display: grid; gap: 2px; }
.ps-rev-meta strong { color: var(--ps-ink-strong); font-size: 15px; font-weight: 800; }
.ps-rev-meta span { color: var(--ps-muted); font-size: 13px; }

/* --- Coupons ------------------------------------------------------------- */
/* A dark ticket band, not a photo card grid: an offer is words, so the cards
   are dashed outlines on ink with the saving as the headline. The faint "%"
   watermark is the source template's; it sits under the ink gradient. */
.ps-coupons {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='80' font-family='Arial, sans-serif' font-size='100' font-weight='700' text-anchor='middle' fill='%23ffffff' fill-opacity='0.02'%3E%25%3C/text%3E%3C/svg%3E") center 30% / 115% auto no-repeat,
    linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 78%, black));
  color: #fff;
}
.ps-cpn-head { margin-bottom: clamp(34px, 4vw, 50px); }
.ps-cpn-chip { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; padding: 8px 16px; border: 1.5px dashed rgb(224 166 47 / 0.5); border-radius: 999px; color: var(--ps-gold); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.ps-cpn-chip svg { width: 15px; height: 15px; }
.ps-cpn-title { margin: 0; color: #fff; font-size: clamp(34px, 4vw, 52px); font-weight: 760; letter-spacing: -0.025em; line-height: 1.08; }

.ps-cpn-card { display: flex; flex-direction: column; height: 100%; padding: clamp(30px, 3vw, 44px) clamp(24px, 2.4vw, 34px); border: 2px dashed rgb(255 255 255 / 0.3); border-radius: 18px; color: inherit; text-align: center; text-decoration: none; transition: border-color 200ms ease, transform 200ms var(--ps-ease), box-shadow 200ms var(--ps-ease); }
.ps-cpn-card:hover { border-color: rgb(255 255 255 / 0.55); transform: translateY(-6px); box-shadow: 0 22px 44px rgb(11 31 18 / 0.35); }
.ps-cpn-card h3 { margin: 0 0 14px; color: var(--ps-gold); font-size: clamp(24px, 2.3vw, 30px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.ps-cpn-desc { color: rgb(255 255 255 / 0.72); font-size: 15px; line-height: 1.55; }
.ps-cpn-desc :last-child { margin-bottom: 0; }
/* Expiry and fine print sit at the card foot however long the body runs. */
.ps-cpn-exp { margin: auto 0 0; padding-top: 22px; color: rgb(255 255 255 / 0.45); font-size: 13px; letter-spacing: 0.02em; }
.ps-cpn-fine { margin: 8px 0 0; color: rgb(255 255 255 / 0.38); font-size: 12px; line-height: 1.45; }
/* An offer with fine print but no expiry: the fine print is then the foot. */
.ps-cpn-desc + .ps-cpn-fine { margin-top: auto; padding-top: 22px; }

.ps-cpn-more { margin-top: clamp(38px, 4.5vw, 58px); text-align: center; }
.ps-cpn-btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 30px; border-radius: 999px; background: linear-gradient(180deg, #ffffff 0%, #E6E0D2 100%); color: var(--ps-ink-strong); font-weight: 750; text-decoration: none; transition: background 180ms ease, transform 180ms var(--ps-ease); }
.ps-cpn-btn:hover { background: linear-gradient(180deg, #FAF7F1 0%, #D3CBB8 100%); color: var(--ps-ink-strong); transform: translateY(-1px); }
.ps-cpn-btn svg { width: 15px; height: 15px; transition: transform 180ms var(--ps-ease); }
.ps-cpn-btn:hover svg { transform: translateX(3px); }

/* The same card on a light page (the specials list, under its dark pagehead). */
.ps-coupons-light .ps-cpn-card { border-color: color-mix(in srgb, var(--ps-accent) 45%, var(--ps-line)); background: var(--ps-surface-raised); }
.ps-coupons-light .ps-cpn-card:hover { border-color: var(--ps-accent); box-shadow: var(--ps-shadow); }
.ps-coupons-light .ps-cpn-card h3 { color: var(--ps-accent); }
.ps-coupons-light .ps-cpn-desc { color: var(--ps-muted); }
.ps-coupons-light .ps-cpn-exp { color: var(--ps-ink-strong); font-weight: 700; }
.ps-coupons-light .ps-cpn-fine { color: var(--ps-muted); }

/* --- CTA band + footer --------------------------------------------------- */
.ps-cta { background: var(--ps-ink-strong); color: #fff; }
.ps-cta h2 { color: #fff; }
.ps-cta p { color: var(--ps-on-dark-body); }
.ps-footer { background: var(--ps-ink-strong); color: var(--ps-on-dark-body); }
.ps-footer h2 { color: var(--ps-gold); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; }
.ps-footer nav a, .ps-footer-contact a, .ps-footer-contact span { display: block; margin-bottom: 10px; color: var(--ps-on-dark-body); text-decoration: none; }
.ps-footer nav a:hover, .ps-footer-contact a:hover { color: #fff; }
.ps-footer-desc { color: var(--ps-on-dark-muted); max-width: 30ch; }
.ps-footer-contact strong { color: #fff; }
.ps-footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.12); font-size: 14px; color: var(--ps-on-dark-muted); }
.ps-footer-legal a { color: var(--ps-on-dark-muted); text-decoration: none; }
.ps-footer-legal a:hover { color: #fff; }

/* --- Inner pages --------------------------------------------------------- */
.ps-pagehead { background: var(--ps-ink-strong); color: #fff; }
.ps-pagehead h1 { color: #fff; }
.ps-pagehead p { color: var(--ps-on-dark-body); }
.ps-article { max-width: 46rem; }
.ps-lead { color: var(--ps-ink); font-size: 20px; line-height: 1.6; }
.ps-article-img { width: 100%; border-radius: 16px; }
.ps-page-body { line-height: 1.8; }
.ps-page-body h2 { margin-top: 2rem; }
.ps-list-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: 18px; border: 1px solid var(--ps-line); background: var(--ps-surface-raised); box-shadow: var(--ps-shadow-sm); text-decoration: none; color: inherit; transition: transform 0.22s var(--ps-ease), box-shadow 0.22s var(--ps-ease), border-color 0.22s ease; }
.ps-list-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--ps-shadow); }
.ps-list-media { aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 62%, var(--ps-accent))); background-size: cover; background-position: center; }
.ps-list-body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 22px 24px 26px; }
.ps-list-date { color: var(--ps-gold-text); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.ps-list-body h3 { margin: 0; color: var(--ps-ink-strong); font-size: 20px; letter-spacing: -0.02em; }
.ps-list-body p { margin: 0; color: var(--ps-muted); font-size: 15px; line-height: 1.55; }
.ps-contact-info dt { margin-top: 22px; color: var(--ps-gold-text); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.ps-contact-info dt:first-child { margin-top: 0; }
.ps-contact-info dd { margin: 6px 0 0; color: var(--ps-ink-strong); font-size: 18px; }
.ps-contact-info a { color: var(--ps-accent); }

/* --- Service-area band --------------------------------------------------- */
/* Copy and a city list on the left, the pinned home location on the right. */
.ps-area-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 4vw, 64px); align-items: center; }
.ps-area-heading { margin: 0 0 18px; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.08; }
.ps-area-lede { max-width: 52ch; margin: 0 0 30px; color: var(--ps-muted); font-size: 16.5px; line-height: 1.7; }

.ps-area-cities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 20px; margin: 0 0 30px; }
/* Inline, not inline-flex: on a two-line city name the flex version parks the
   marker beside the whole block instead of after the last word. */
.ps-area-cities a { color: var(--ps-ink-strong); font-size: 15px; font-weight: 500; text-decoration: none; }
.ps-area-cities a::after { content: "\00a0+"; color: var(--ps-gold-ui); font-weight: 700; }
.ps-area-cities a:hover { color: var(--ps-accent); }
.ps-area-cities a.is-home { font-size: 14px; font-weight: 800; letter-spacing: 0.045em; text-transform: uppercase; }
.ps-area-cities a.is-home::after { content: "\00a0★"; font-size: 11px; }

.ps-area-more { display: inline-flex; align-items: center; gap: 9px; color: var(--ps-accent); font-weight: 750; text-decoration: none; }
.ps-area-more svg { width: 16px; height: 16px; transition: transform 180ms var(--ps-ease); }
.ps-area-more:hover { color: var(--ps-accent-hover); }
.ps-area-more:hover svg { transform: translateX(3px); }

/* The panel's own background is the map's land colour, so a slow, blocked or
   unconfigured embed reads as a map rather than flashing white. */
.ps-area-map { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 18px; background: #EDEAE2; }
.ps-area-map iframe { display: block; width: 100%; height: 100%; border: 0; }
/* No embed key configured: a branded panel carrying the location card, rather
   than an empty rectangle in the map's land grey. */
.ps-area-map.is-static { display: grid; place-items: center; background: linear-gradient(150deg, var(--ps-ink-strong), color-mix(in srgb, var(--ps-ink-strong) 58%, var(--ps-accent))); }
.ps-area-map.is-static .ps-area-card { position: static; width: min(320px, calc(100% - 48px)); }
/* Google's own card styling, deliberately — it is standing in for their info
   window, so it should not carry the Pacific palette. */
.ps-area-card { position: absolute; top: 18px; left: 18px; z-index: 2; width: min(300px, calc(100% - 36px)); padding: 16px 18px; border-radius: 10px; background: #fff; box-shadow: 0 2px 6px rgb(0 0 0 / 0.16), 0 8px 24px rgb(0 0 0 / 0.14); }
.ps-area-card-name { margin: 0 0 3px; color: #202124; font-size: 15.5px; font-weight: 600; letter-spacing: -0.005em; }
.ps-area-card-addr { margin: 0 0 9px; color: #5f6368; font-size: 12.5px; line-height: 1.42; }
.ps-area-card-rating { display: flex; align-items: center; gap: 5px; margin: 0; color: #5f6368; font-size: 12.5px; }
.ps-area-card-rating b { color: #202124; font-weight: 500; }
.ps-area-card-star { color: #fbbc04; font-size: 12px; }
.ps-area-card-count { color: #1a73e8; }

@media (max-width: 979.98px) {
  .ps-area-band { grid-template-columns: 1fr; }
  .ps-area-map { order: -1; }
}
@media (max-width: 619.98px) {
  .ps-area-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- FAQ ----------------------------------------------------------------- */
/* The source template's two-column read: a sticky intro against a hairline list
   of native <details>. No Bootstrap accordion — <details> needs no JS, and it
   lets several answers stay open at once, which is how the original behaves. */
.ps-faq-layout { display: grid; grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.ps-faq-intro { position: sticky; top: calc(var(--ps-header-h) + 32px); }
.ps-faq-lede { max-width: 34ch; margin: 0; color: var(--ps-muted); font-size: 17px; line-height: 1.6; }
.ps-faq-more { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--ps-accent); font-weight: 750; text-decoration: none; }
.ps-faq-more svg { width: 16px; height: 16px; transition: transform 180ms var(--ps-ease); }
.ps-faq-more:hover { color: var(--ps-accent-hover); }
.ps-faq-more:hover svg { transform: translateX(3px); }

.ps-faq-list { border-top: 1px solid var(--ps-line); }
.ps-faq-list details { border-bottom: 1px solid var(--ps-line); }
.ps-faq-list summary { position: relative; padding: 26px 58px 26px 0; color: var(--ps-ink-strong); font-size: clamp(17px, 1.6vw, 21px); font-weight: 700; letter-spacing: -0.025em; list-style: none; cursor: pointer; }
.ps-faq-list summary::-webkit-details-marker { display: none; }
/* Two accent bars crossed into a "+"; the vertical one rotates flat when open. */
.ps-faq-list summary::before,
.ps-faq-list summary::after { content: ""; position: absolute; top: 50%; right: 5px; width: 18px; height: 1.5px; background: var(--ps-gold-ui); transition: transform 220ms var(--ps-ease); }
.ps-faq-list summary::after { transform: rotate(90deg); }
.ps-faq-list details[open] summary::after { transform: rotate(0deg); }
/* Hover only where there is a real pointer — on touch it sticks after a tap. */
@media (hover: hover) { .ps-faq-list summary:hover { color: var(--ps-accent); } }
.ps-faq-answer { max-width: 660px; padding: 0 58px 26px 0; color: var(--ps-muted); line-height: 1.7; }
.ps-faq-answer > :last-child { margin-bottom: 0; }

@media (max-width: 767.98px) {
  .ps-faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .ps-faq-intro { position: static; }
  .ps-faq-list summary { padding: 22px 46px 22px 0; }
  .ps-faq-answer { padding-right: 46px; }
}

/* --- Responsive (the bespoke bits Bootstrap's grid doesn't cover) -------- */
@media (max-width: 860px) {
  .ps-action-grid { grid-template-columns: 1fr; width: min(100%, 460px); }
  .ps-utility-links { display: none; }
}

/* --- Video facade -------------------------------------------------------- */
/* The poster and the iframe that replaces it share one aspect-ratio box, so
   swapping them on click never shifts the page. --ps-video-ratio is set inline
   per video: 16/9 for the landscape clips, 9/16 for the vertical one. */
.ps-video { position: relative; margin: 0; }
.ps-video-frame,
.ps-video-iframe {
  display: block; width: 100%; aspect-ratio: var(--ps-video-ratio, 16 / 9);
  border: 0; border-radius: 18px; background: var(--ps-ink-strong);
  box-shadow: var(--ps-shadow); overflow: hidden;
}
.ps-video-frame { position: relative; padding: 0; cursor: pointer; }
/* The vertical poster is YouTube's pillarboxed 4:3 frame; cover in a 9/16 box
   crops the black bars back off and leaves the original vertical picture. */
.ps-video-poster { width: 100%; height: 100%; object-fit: cover; }
.ps-video-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(var(--ps-veil-rgb) / 0.05) 0%, rgb(var(--ps-veil-rgb) / 0.45) 100%);
  transition: opacity 0.25s var(--ps-ease);
}
.ps-video-play {
  position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(180deg, var(--ps-gold-bright) 0%, var(--ps-gold) 100%);
  color: var(--ps-ink-strong);
  box-shadow: 0 12px 30px rgb(11 31 18 / 0.45);
  transition: transform 0.25s var(--ps-ease), background 0.2s ease;
}
.ps-video-play svg { width: 30px; height: 30px; }
.ps-video-time {
  position: absolute; z-index: 1; right: 14px; bottom: 14px;
  padding: 3px 9px; border-radius: 999px;
  background: rgb(0 0 0 / 0.72); color: #fff;
  font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.ps-video-frame:hover .ps-video-play,
.ps-video-frame:focus-visible .ps-video-play { transform: translate(-50%, -50%) scale(1.08); background: linear-gradient(180deg, #F3D08C 0%, var(--ps-gold-bright) 100%); }
.ps-video-frame:hover::after { opacity: 0.7; }
.ps-video-frame:focus-visible { outline: 3px solid var(--ps-accent); outline-offset: 3px; }
/* Vertical clips would otherwise run 800px tall in a sidebar column. */
.ps-video-portrait { max-width: 340px; }
.ps-video-caption { margin: 14px 0 0; color: var(--ps-muted); font-size: 14px; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .ps-video-frame::after, .ps-video-play { transition: none; }
  .ps-video-frame:hover .ps-video-play, .ps-video-frame:focus-visible .ps-video-play { transform: translate(-50%, -50%); }
}

/* The full-width band: copy on the left, player on the right. Dark green rather
   than another near-white section, both because it separates the band from the
   light sections either side of it and because a poster reads better framed
   against dark than floating on white. */
.ps-video-band { background: var(--ps-ink-strong); color: rgb(255 255 255 / 0.78); }
.ps-video-band h2 { color: #fff; }
.ps-video-band .ps-video-caption { color: rgb(255 255 255 / 0.6); }
.ps-video-band-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 68px); align-items: center; }
.ps-video-band-copy { max-width: 34rem; }
.ps-video-band-lede { margin: 0 0 22px; color: rgb(255 255 255 / 0.78); font-size: 17px; line-height: 1.6; }
.ps-video-band-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ps-gold); font-weight: 750; text-decoration: none; }
.ps-video-band-link svg { width: 17px; height: 17px; }
.ps-video-band-link:hover { color: var(--ps-gold-bright); }
/* A 9:16 clip filling the band's wider column would stand over 1100px tall on a
   desktop. Cap it and centre it in the cell — the cap is not just a mobile
   concern, which is why it sits outside the query below as well. */
.ps-video-band-player.ps-video-portrait { max-width: 340px; margin-inline: auto; }

@media (max-width: 991.98px) {
  .ps-video-band-inner { grid-template-columns: 1fr; }
  .ps-video-band-copy { max-width: none; }
  /* A 9:16 player at full container width would be taller than the viewport. */
  .ps-video-band-player { max-width: 520px; }
  .ps-video-band-player.ps-video-portrait { max-width: 340px; margin-inline: auto; }
}

/* --- Footer social ------------------------------------------------------- */
.ps-footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; padding: 0; list-style: none; }
.ps-footer-social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; border: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.06); color: var(--ps-on-dark-body);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s var(--ps-ease);
}
.ps-footer-social a:hover, .ps-footer-social a:focus-visible {
  background: var(--ps-gold); border-color: transparent; color: var(--ps-ink-strong); transform: translateY(-2px);
}
.ps-footer-social svg { width: 19px; height: 19px; }

@media (prefers-reduced-motion: reduce) {
  .ps-footer-social a { transition: none; }
  .ps-footer-social a:hover, .ps-footer-social a:focus-visible { transform: none; }
}
