/* ==========================================================
  Burgeon Group — Main stylesheet
  ========================================================== */

/* ---------- Tokens ---------- */
:root {
  --brand: #111111;
  --accent: #111111;
  --brand-dark: #000000;
  --brand-tint: #f2f2f2;
  --ink: #0a0a0a;
  --text: #2b2b2b;
  --muted: #666666;
  --line: #e5e5e5;
  --paper: #f5f5f5;
  --white: #ffffff;
  --c-construction: #b7410e;
  --c-technology: #1e40af;
  --c-travel: #7cc4ec;
  --c-travel-text: #1a73a8;
  --c-food: #2e7d32;
  --font: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --gutter: 40px;
  --section: 120px;
  --radius: 10px;
  --radius-lg: 14px;
  --header-h: 80px;
  --shadow: 0 1px 2px rgba(26, 26, 26, 0.06), 0 8px 24px rgba(26, 26, 26, 0.06);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  color: var(--brand-dark);
}
/* links keep the hand cursor while their href is parked (see script.js) */
a[data-href] {
  cursor: pointer;
}
h1,
h2,
h3,
p,
ul,
dl,
dd,
figure,
blockquote {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
address {
  font-style: normal;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 300;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section) 0;
}
.section--tint {
  background: var(--paper);
}

.contact-image {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 1.75rem 0 2rem;
  border-radius: 12px;
}

/* ---------- Type scale ---------- */
.kicker {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}
.h2 {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .h2 {
  max-width: 560px;
}
.section-head-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.btn-lg {
  height: 56px;
  padding: 0 28px;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-dark);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--brand-tint);
  color: var(--ink);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}
.text-link svg {
  transition: transform 0.2s var(--ease);
}
.text-link:hover {
  color: var(--brand);
}
.text-link:hover svg {
  transform: translateX(3px);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.icon-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ==========================================================
   TOP BAR + HEADER
   ========================================================== */
.topbar {
  background: var(--ink);
  color: #c3c3c3;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 24px;
}
.topbar-links {
  display: flex;
  gap: 28px;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dddddd;
}
.topbar-links a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo:hover {
  color: var(--ink);
}
.logo-text {
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo-text strong {
  font-weight: 700;
}
.logo--light,
.logo--light:hover {
  color: var(--white);
}

.main-nav {
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-link:hover {
  color: var(--ink);
  background: var(--paper);
}
.nav-link.is-active {
  color: var(--ink);
  font-weight: 600;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -18px;
  height: 2px;
  background: var(--brand);
}
.chev {
  transition: transform 0.2s;
}
.menu-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}
.nav-cta-mobile {
  display: none;
}

/* Mega menu */
.has-menu {
  position: relative;
}
.mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 560px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(26, 26, 26, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition:
    opacity 0.2s,
    transform 0.2s var(--ease),
    visibility 0.2s;
}
.has-menu.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--ink);
}
.mega-item:hover {
  background: var(--paper);
  color: var(--ink);
}
.mega-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--c);
  flex-shrink: 0;
}
.mega-item strong {
  display: block;
  font-weight: 600;
}
.mega-item small {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
/* the header nav collapses at 960px, so the burger appears there too */
.bg-head .nav-toggle {
  display: none;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease-out;
}
.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}
/* Zoomed-out slide: whole photo fits on the right and fades into the dark hero */
.hero-bg--fit {
  left: auto;
  width: auto;
  max-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}
@media (max-width: 900px) {
  .hero-bg--fit {
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: 70% center;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(19, 19, 19, 0.88) 0%,
      rgba(19, 19, 19, 0.7) 42%,
      rgba(19, 19, 19, 0.25) 100%
    ),
    linear-gradient(0deg, rgba(19, 19, 19, 0.75) 0%, rgba(19, 19, 19, 0) 35%);
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 72px;
}
.hero-content {
  max-width: 720px;
}
.hero-kicker {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #c5c5c5;
}
.hero-title {
  font-size: 60px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero-title em {
  display: block;
  color: inherit;
  font-style: normal;
}
.hero-text {
  margin-top: 24px;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.65;
  color: #dadada;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero-tabs-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(19, 19, 19, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero-tab {
  position: relative;
  text-align: left;
  padding: 26px 24px 28px 0;
  border: 0;
  background: none;
  color: var(--white);
}
.hero-tab + .hero-tab {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-tab strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
}
.hero-tab small {
  display: block;
  font-size: 14px;
  color: #b4b4b4;
}
.hero-tab-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 3px;
  background: transparent;
  overflow: hidden;
}
.hero-tab + .hero-tab .hero-tab-bar {
  left: 24px;
}
.hero-tab-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--c);
}
.hero-tab:hover strong {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-tab.is-active .hero-tab-bar i {
  width: 100%;
}
.hero-tab.is-active.is-running .hero-tab-bar i {
  animation: tabProgress var(--hero-delay, 7s) linear forwards;
}
.hero-tab.is-active small {
  color: #dadada;
}
@keyframes tabProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ==========================================================
   INTRO
   ========================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 80px;
  align-items: start;
}
.intro-head .h2 {
  max-width: 460px;
}
.intro-visual {
  position: relative;
  max-width: 420px;
  margin-top: 42px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 26, 26, 0.55));
  pointer-events: none;
}
.intro-visual img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.intro-visual:hover img {
  transform: scale(1.035);
}
.intro-badge {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
}
.intro-badge strong {
  font-size: 25px;
  line-height: 1;
}
.intro-label {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intro-body {
  padding-top: 8px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.fact {
  padding: 24px 20px 0 0;
}
.fact + .fact {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.fact dt {
  font-size: 14px;
  color: var(--muted);
}
.fact dd {
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fact dd.fact-note {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}

/* ==========================================================
   DIVISIONS
   ========================================================== */
.division-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.division-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.division-card:hover {
  box-shadow: var(--shadow);
  border-color: #d9d9d9;
}
.division-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}
.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.division-card:hover .division-media img {
  transform: scale(1.03);
}

.division-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 36px 36px;
  border-top: 3px solid var(--c);
}
.division-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.division-tag span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--c);
}
.division-body h3 {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.division-body h3 a {
  color: var(--ink);
}
.division-body h3 a:hover {
  color: var(--brand);
}
.division-body > p:not(.division-tag) {
  margin-top: 12px;
  color: var(--muted);
}
.check-list {
  margin: 20px 0 28px;
  display: grid;
  gap: 8px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4.5 8.2 2.2 2.2 4.8-4.8' fill='none' stroke='%230E6BA8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.division-body .text-link {
  margin-top: auto;
}

/* ==========================================================
   WHY BURGEON
   ========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 88px;
  /* photo column stretches to the text column so both sides match */
  align-items: stretch;
}
.why-media {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-content .lead {
  margin-top: 20px;
}
.features {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
.feature {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-tint);
  color: var(--brand);
}
.feature h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.feature p {
  margin-top: 4px;
  font-size: 16px;
  color: var(--muted);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-head {
  text-align: center;
  margin-bottom: 48px;
}
.t-slider {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.t-slides {
  display: grid;
  min-height: 220px;
}
.t-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s var(--ease),
    visibility 0.45s;
}
.t-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.t-slide blockquote {
  font-size: 30px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.t-slide figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  text-align: left;
}
.t-slide figcaption img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.t-slide figcaption strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
}
.t-slide figcaption small {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.t-dots {
  display: flex;
  gap: 4px;
}
.t-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
}
.t-dot::before {
  content: "";
  position: absolute;
  inset: 11px 4px;
  border-radius: 3px;
  background: #d0d0d0;
  transition: background-color 0.2s;
}
.t-dot.is-active::before {
  background: var(--brand);
}

.partners {
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.partners > p {
  font-size: 15px;
  color: var(--muted);
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.partner-list li {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #d0d0d0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #909090;
}
.partner-list img {
  max-height: 40px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  --accent: var(--brand);
  position: relative;
  isolation: isolate;
  /* clip (not hidden) so the sticky intro column keeps working */
  overflow: hidden;
  overflow: clip;
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    #fafafa 38%,
    var(--white) 100%
  );
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(
    rgba(17, 17, 17, 0.14) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    120% 70% at 50% 0%,
    #000 0%,
    transparent 72%
  );
  mask-image: radial-gradient(120% 70% at 50% 0%, #000 0%, transparent 72%);
  opacity: 0.6;
}
.faq-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.faq-orb--a {
  top: -120px;
  left: -140px;
  width: 460px;
  height: 460px;
  background: rgba(17, 17, 17, 0.18);
}
.faq-orb--b {
  right: -160px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  background: rgba(119, 119, 119, 0.14);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: center;
}
.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}
.faq-intro .lead {
  margin-top: 16px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.faq-kicker__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.faq-kicker__dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.45);
  animation: faqPulse 2.4s var(--ease) infinite;
}
@keyframes faqPulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.faq-title {
  margin-top: 18px;
}
.faq-title em {
  position: relative;
  font-style: normal;
  background: linear-gradient(100deg, var(--ink) 0%, #6b6b6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.help-box {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #2e2e2e 0%, var(--ink) 58%, #141414 100%);
  box-shadow: 0 22px 44px rgba(26, 26, 26, 0.22);
  color: rgba(255, 255, 255, 0.78);
}
.help-box__glow {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(17, 17, 17, 0.55),
    transparent 68%
  );
  pointer-events: none;
}
.help-box__eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.help-box h3 {
  position: relative;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}
.help-box p {
  position: relative;
  margin: 6px 0 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.66);
}
.help-box .btn {
  position: relative;
}

.faq-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(26, 26, 26, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  scrollbar-width: none;
}
.faq-tabs::-webkit-scrollbar {
  display: none;
}
.faq-tabs .faq-tab {
  position: relative;
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.faq-tabs .faq-tab:hover {
  color: var(--ink);
  background: rgba(26, 26, 26, 0.045);
}
.faq-tabs .faq-tab.is-active {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    color-mix(in srgb, var(--accent) 72%, #242424) 100%
  );
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 34%, transparent);
}
.faq-tab__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.07);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition:
    background 0.25s,
    color 0.25s;
}
.faq-tabs .faq-tab.is-active .faq-tab__number {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.faq-panel[hidden] {
  display: none;
}
.faq-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 4px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.faq-panel__heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.faq-panel__heading span::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.faq-panel__heading small {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.faq-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.35s var(--ease);
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.07);
}
.faq-item.is-open {
  border-color: color-mix(in srgb, var(--accent) 38%, transparent);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.09);
}
.faq-item.is-open::before {
  height: 100%;
}
.faq-item h3 {
  font: inherit;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q__text {
  flex: 1;
}
.faq-q__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.faq-item.is-open .faq-q__index {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-4deg) scale(1.04);
}
.faq-q:hover {
  color: var(--accent);
}
.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
  border-radius: 16px;
}

.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.8px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-q:hover .faq-icon {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  color: var(--accent);
}
.faq-item.is-open .faq-icon {
  border-color: transparent;
  background: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-a > div {
  overflow: hidden;
}
.faq-a p {
  margin-left: 72px;
  padding: 0 60px 24px 16px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--muted);
}
.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-panel:not([hidden]) .faq-item {
  animation: faqRise 0.45s var(--ease) both;
}
.faq-panel:not([hidden]) .faq-item:nth-child(2) {
  animation-delay: 0.06s;
}
.faq-panel:not([hidden]) .faq-item:nth-child(3) {
  animation-delay: 0.12s;
}
.faq-panel:not([hidden]) .faq-item:nth-child(4) {
  animation-delay: 0.18s;
}
.faq-panel:not([hidden]) .faq-item:nth-child(5) {
  animation-delay: 0.24s;
}
@keyframes faqRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel:not([hidden]) .faq-item,
  .faq-kicker__dot::after {
    animation: none;
  }
  .faq-item:hover {
    transform: none;
  }
}

/* Fallback for browsers without color-mix() */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
  .faq-tabs .faq-tab.is-active {
    background: var(--accent);
  }
  .faq-q__index {
    background: var(--brand-tint);
  }
  .faq-a p {
    border-left-color: var(--line);
  }
}
/* ==========================================================
   CTA
   ========================================================== */
.cta {
  background: var(--brand);
  color: var(--white);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta .h2 {
  color: var(--white);
}
.cta-content p {
  margin-top: 12px;
  max-width: 560px;
  font-size: 18px;
  color: #e3e3e3;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--ink);
  color: #b9b9b9;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding: 80px 0 56px;
}
.footer-brand p {
  margin-top: 18px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h2 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.footer-col ul {
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: #b9b9b9;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-contact p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.footer-bottom a {
  color: #b9b9b9;
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
  .hero-bg {
    transform: none;
  }
}

/* ---------- CTA background photo (added) ---------- */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.9);
}

/* ==========================================================
   Inner pages
   The division and policy pages use the original shared markup vocabulary.
   Keep these rules here so every page can use the same stylesheet.
   ========================================================== */
:root {
  --night: var(--ink);
  --night-2: #1c1c1c;
  --night-line: #333333;
  --fg: var(--ink);
  --fg-muted: var(--muted);
  --panel: var(--paper);
  --rule: var(--line);
  --sea: var(--brand);
  --sea-2: #a6a6a6;
  --blue: var(--brand);
  --c-build: var(--c-construction);
  --c-tech: var(--c-technology);
  --c-organic: var(--c-food);
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.bg-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.bg-head.is-scrolled {
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
}
.bg-head__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: var(--header-h);
}
.bg-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.bg-nav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.bg-nav a:hover,
.bg-nav a.active {
  color: var(--ink);
  background: var(--paper);
}
.bg-nav a.active {
  font-weight: 600;
}
/* only shown inside the collapsed mobile drawer */
.bg-nav .bg-nav__cta {
  display: none;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brandmark img {
  display: block;
  width: auto;
  height: 36px;
}
/* footers sit on --ink, so they use the white-wordmark variant at a smaller size */
.footer-brand .brandmark img,
.foot .brandmark img {
  height: 32px;
}
.brandmark .word {
  color: var(--ink);
  font-weight: 800;
}
.brandmark .sub {
  display: block;
  color: var(--sea-2);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.btn-grad {
  display: inline-block;
  padding: 0 22px;
  white-space: nowrap;
  min-height: 48px;
  line-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.btn-grad:hover {
  color: #fff;
  filter: brightness(1.08);
}
/* keep the bar on one line as it narrows towards the 960px collapse */
@media (max-width: 1120px) {
  .bg-head__inner {
    gap: 20px;
  }
  .bg-nav a {
    padding: 0 11px;
    font-size: 15px;
  }
  .bg-head .btn-grad {
    min-height: 44px;
    line-height: 44px;
    padding: 0 16px;
    font-size: 15px;
  }
}
.pagehero {
  position: relative;
  overflow: hidden;
  padding-block: 3.6rem;
  background: var(--night);
  color: #fff;
}
.pagehero--photo {
  background-image:
    linear-gradient(90deg, rgba(32, 32, 32, 0.94), rgba(32, 32, 32, 0.45)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}
.pagehero h1 {
  position: relative;
  max-width: 850px;
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3rem);
}
.pagehero p {
  position: relative;
  max-width: 60ch;
  margin-top: 1rem;
  color: #d5d5d5;
}
.crumb {
  color: var(--sea-2);
  font-size: 0.85rem;
}
.crumb a {
  color: #bababa;
  text-decoration: none;
}
.sec {
  padding-block: 5.5rem;
}
.sec__title {
  margin-bottom: 0.75rem;
  color: var(--fg);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}
.lead,
.measure {
  max-width: 60ch;
}
.lead {
  color: var(--fg-muted);
  font-size: 1.08rem;
}
.eyebrow-light {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.card-grid,
.proj-grid,
.photo-gallery,
.deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.icard__image {
  min-height: 190px;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
}
.icard__dot,
.dcard__ring span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: 0.6rem;
  border-radius: 50%;
}
.icard h4,
.destination-copy h3,
.tenet h4 {
  color: var(--fg);
  font-size: 1.08rem;
}
.icard p,
.destination-copy p,
.tenet p,
.why-tile p {
  margin-top: 0.45rem;
  color: var(--fg-muted);
}
.photo-frame {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.photo-frame--wide {
  aspect-ratio: 16 / 8;
}
.photo-frame--portrait {
  height: 100%;
  min-height: 360px;
}
.photo-gallery .photo-frame {
  aspect-ratio: 4 / 3;
}
.travel-destinations,
.overview {
  background: var(--panel);
}
.travel-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 850px;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
}
.travel-proof__item {
  padding: 1rem 1.2rem 1rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.travel-proof__item:last-child {
  border-right: 0;
}
.travel-proof strong,
.travel-proof span {
  display: block;
  color: #fff;
}
.travel-proof span {
  color: #c7c7c7;
  font-size: 0.75rem;
}
.detail {
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.detail dt {
  color: var(--fg-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.detail dd {
  margin-top: 0.25rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--rule);
  border-radius: 7px;
  background: var(--white);
  color: var(--fg);
  font: inherit;
}
.faq-tab {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--fg-muted);
  font-size: 0.82rem;
}
.foot {
  padding-block: 3.5rem 1.5rem;
  background: var(--night);
  color: #d5d5d5;
}
.foot h5 {
  margin-bottom: 0.8rem;
  color: #fff;
}
.foot a {
  display: block;
  margin-bottom: 0.35rem;
  color: #d5d5d5;
  text-decoration: none;
}
.foot__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--night-line);
  color: #bababa;
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .bg-head .brandmark img {
    height: 38px;
  }
  .bg-nav {
    display: none;
  }
  #siteHeader .nav-toggle {
    display: flex;
  }
  #siteHeader .btn-grad {
    display: none;
  }
  #siteHeader .bg-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--nav-top, 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 12px var(--gutter) 32px;
    background: var(--white);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s,
      transform 0.25s var(--ease),
      visibility 0.2s;
  }
  #siteHeader .bg-nav a {
    height: auto;
    min-height: 56px;
    padding: 0 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  #siteHeader .bg-nav a:hover,
  #siteHeader .bg-nav a.active {
    background: none;
    color: var(--brand);
  }
  #siteHeader .bg-nav a.bg-nav__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    margin-top: 20px;
    padding: 0 20px;
    border: 0;
    border-bottom: 0;
    border-radius: var(--radius);
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
  }
  #siteHeader .bg-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
@media (max-width: 900px) {
  .card-grid,
  .proj-grid,
  .photo-gallery,
  .deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .travel-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .sec {
    padding-block: 3.2rem;
  }
  .pagehero {
    padding-block: 3rem 2.4rem;
  }
  .card-grid,
  .proj-grid,
  .photo-gallery,
  .deck {
    grid-template-columns: 1fr;
  }
  .travel-proof {
    grid-template-columns: 1fr 1fr;
  }
  .travel-proof__item {
    padding: 0.85rem 0.8rem;
  }
  .travel-proof__item:nth-child(2) {
    border-right: 0;
  }
  .foot__base {
    display: block;
  }
}

/* ==========================================================
   Service cards ("What we build")
   ========================================================== */
.sec--services {
  background: linear-gradient(180deg, var(--white), #f9f9f9);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.scard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.05);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.scard:hover {
  transform: translateY(-6px);
  border-color: #dcdcdc;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
}
.scard__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--brand-tint);
}
.scard__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.7s var(--ease);
}
.scard:hover .scard__img {
  transform: scale(1.06);
}
.scard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--brand) 26%, transparent),
    rgba(26, 26, 26, 0.46)
  );
  transition: opacity 0.4s var(--ease);
}
.scard:hover .scard__media::after {
  opacity: 0.55;
}
.scard__icon {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  box-shadow: 0 8px 20px rgba(32, 32, 32, 0.28);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.scard__icon svg {
  width: 23px;
  height: 23px;
}
.scard:hover .scard__icon {
  transform: translateY(-3px);
  background: var(--brand);
  color: var(--white);
}
.scard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem 1.5rem 1.6rem;
}
.scard__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.32;
}
.scard__text {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  .scard__body {
    padding: 1.2rem 1.25rem 1.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scard,
  .scard__img,
  .scard__icon {
    transition: none;
  }
  .scard:hover,
  .scard:hover .scard__img,
  .scard:hover .scard__icon {
    transform: none;
  }
}

/* ==========================================================
   Division overview (media + pillars)
   ========================================================== */
.overview {
  background: linear-gradient(180deg, var(--paper), #f2f2f2);
}
.overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 4rem;
}
.overview__media {
  position: relative;
  padding: 0 0 3.25rem;
}
/* Equal-height variant: photo column stretches to match the text column */
.overview__grid--equal {
  align-items: stretch;
}
.overview__grid--equal .overview__media {
  display: flex;
  flex-direction: column;
}
.overview__grid--equal .overview__frame {
  flex: 1;
}
.overview__grid--equal .overview__img {
  height: 100%;
  aspect-ratio: auto;
}
@media (max-width: 992px) {
  .overview__grid--equal .overview__img {
    aspect-ratio: 4 / 3;
  }
}
.overview__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 50px rgba(26, 26, 26, 0.18);
}
.overview__frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
}
.overview__media::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1.5rem;
  right: -1.5rem;
  width: 9.5rem;
  height: 9.5rem;
  background-image: radial-gradient(var(--brand) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.3;
}
.overview__media::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -1.75rem;
  bottom: 1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--brand), var(--sea-2));
  opacity: 0.12;
}
.overview__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.overview__badge {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 0;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.12);
}
.overview__badge-num {
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.overview__badge-txt {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}
.pillar {
  padding: 1.35rem 1.25rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: #dcdcdc;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.1);
}
.pillar__icon {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand-tint);
  color: var(--brand);
}
.pillar__icon svg {
  width: 22px;
  height: 22px;
}
.pillar h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}
.pillar p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.pillars--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ==========================================================
   Process steps
   ========================================================== */
.sec--process {
  background: var(--white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
}
.step__head {
  position: relative;
  display: flex;
  height: 48px;
  align-items: center;
  margin-bottom: 1.1rem;
}
.step__head::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 62px;
  right: -1.75rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--brand) 25%, #ffffff),
    color-mix(in srgb, var(--brand) 6%, transparent)
  );
}
.step:last-child .step__head::after {
  display: none;
}
.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-dark), var(--brand));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.28);
}
.step__card {
  flex: 1;
  padding: 1.4rem 1.5rem 1.55rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.05);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.step:hover .step__card {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(26, 26, 26, 0.12);
}
.step__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}
.step__text {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .overview__grid {
    gap: 2.5rem;
  }
  .pillars {
    gap: 1rem;
  }
}
@media (max-width: 992px) {
  .overview__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }
  .overview__media {
    max-width: 560px;
  }
  .overview__media::after {
    display: none;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
  }
  .step__head::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .pillars {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .overview__badge {
    right: 1rem;
    left: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pillar,
  .step__card {
    transition: none;
  }
  .pillar:hover,
  .step:hover .step__card {
    transform: none;
  }
}

/* ==========================================================
   Scroll reveal (progressive enhancement — .js-reveal is set by script.js)
   ========================================================== */
.reveal {
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  transition-delay: var(--d, 0s);
}
.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   Project cards
   ========================================================== */
.sec--projects {
  background: linear-gradient(180deg, var(--white), var(--paper) 38%);
}
.sec__head {
  margin-bottom: 2.75rem;
}
.proj-grid--products {
  gap: 1.75rem;
}
.proj-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.05);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.proj-card:hover,
.proj-card:focus-within {
  transform: translateY(-6px);
  border-color: #dcdcdc;
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
}
.proj-card__art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, #fdfdfd, var(--brand-tint));
  background-position: center;
  background-size: cover;
}
.proj-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.proj-card:hover .proj-card__img {
  transform: scale(1.05);
}
.proj-grid--photo .proj-card__art {
  background: linear-gradient(160deg, #f2f2f2, var(--brand-tint));
}
.proj-grid--photo .proj-card__img {
  object-fit: cover;
}
.proj-card__fade {
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--sea-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.proj-card:hover .proj-card__fade,
.proj-card:focus-within .proj-card__fade {
  transform: scaleX(1);
}
.proj-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 1.5rem 1.6rem;
}
.proj-card__tag {
  margin: 0;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proj-card__body h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.32;
}
.proj-card__loc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .sec__head {
    margin-bottom: 2rem;
  }
  .proj-grid--products {
    gap: 1.25rem;
  }
  .proj-card__body {
    padding: 1.2rem 1.25rem 1.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proj-card,
  .proj-card__img,
  .proj-card__fade {
    transition: none;
  }
  .proj-card:hover {
    transform: none;
  }
  .proj-card:hover .proj-card__img {
    transform: none;
  }
}

/* ==========================================================
   CTA band (inner pages)
   ========================================================== */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand) 62%);
  color: var(--white);
}
.cta-band::after {
  content: none;
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -55%;
  right: -10%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0) 62%
  );
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-block: 4.5rem;
}
.cta-band__eyebrow {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-band__title {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.cta-band__sub {
  max-width: 46ch;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}
.cta-band__btn {
  flex-shrink: 0;
  display: inline-block;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 52px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(32, 32, 32, 0.22);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.cta-band__btn:hover,
.cta-band__btn:focus-visible {
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(32, 32, 32, 0.28);
}
@media (max-width: 860px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    padding-block: 3.5rem;
  }
  .cta-band__btn {
    width: 100%;
    text-align: center;
  }
}

/* Graceful fallback when a remote destination photo cannot load */
.is-empty {
  display: grid !important;
  place-items: center;
  background: linear-gradient(150deg, #e8e8e8, #d0d0d0 60%, #bdbdbd);
}
.is-empty > img {
  display: none;
}
.is-empty::after {
  content: "";
  width: 38%;
  height: 38%;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a5585' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.55'%3E%3Cpath d='M2 19l6.5-10 4 6 3-4.5L22 19z'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.8'/%3E%3C/svg%3E");
}

/* ==========================================================
   Hero entrance (used by .fade-in with an inline animation-delay)
   ========================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fade-in {
  animation: fadeInUp 0.7s var(--ease) both;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
}

/* ==========================================================
   TRAVEL PAGE
   ========================================================== */

/* ---------- Cinematic hero ---------- */
.ph-hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  --ph-hang: 56px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h) - var(--ph-hang) - 24px);
  min-height: min(
    calc(100svh - var(--header-h) - var(--ph-hang) - 24px),
    var(--ph-hero-cap, 100svh)
  );
  padding: clamp(1.75rem, 4.5vh, 3.75rem) 0 0;
  background: #161616;
  color: #fff;
}
.ph-hero__bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center 38%;
  background-size: cover;
}
/* Zoomed-out hero: whole photo sits on the right and fades into the dark hero */
.ph-hero__bg--fit {
  left: auto;
  width: auto;
  aspect-ratio: 3 / 2;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}
.ph-hero__bg--4x3 {
  aspect-ratio: 4 / 3;
}
@media (max-width: 900px) {
  .ph-hero__bg--fit {
    left: 0;
    width: auto;
    aspect-ratio: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.ph-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      104deg,
      rgba(22, 22, 22, 0.95) 6%,
      rgba(22, 22, 22, 0.74) 42%,
      rgba(22, 22, 22, 0.3) 76%
    ),
    linear-gradient(180deg, rgba(22, 22, 22, 0.62), rgba(22, 22, 22, 0.1) 34%);
}
.ph-hero__inner {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(2rem, 5vh, 4.5rem);
}
.ph-hero__kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(0.85rem, 2vh, 1.4rem);
  padding: 0.44rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  color: var(--accent-pale, #e2e2e2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.ph-hero__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring, rgba(119, 119, 119, 0.3));
}
.ph-hero h1 {
  max-width: 20ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
  letter-spacing: -0.035em;
}
.ph-hero h1 em {
  display: block;
  color: var(--accent-light, #c6c6c6);
  font-style: normal;
}
.ph-hero__sub {
  max-width: 52ch;
  margin: clamp(0.9rem, 2.2vh, 1.4rem) 0 0;
  color: #d3d3d3;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.ph-hero__tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: clamp(0.9rem, 2.2vh, 1.35rem);
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ph-hero__actions {
  display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.25rem, 3vh, 2rem);
}
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}
.ph-btn svg {
  width: 18px;
  height: 18px;
}
.ph-btn--solid {
  background: var(--accent);
  color: var(--accent-ink, #fff);
  box-shadow: 0 14px 32px var(--accent-glow, rgba(119, 119, 119, 0.4));
}
.ph-btn--solid:hover,
.ph-btn--solid:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark, #626262);
  color: var(--accent-ink, #fff);
}
.ph-btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.ph-btn--ghost:hover,
.ph-btn--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.ph-hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: calc(var(--ph-hang) * -1);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(21, 21, 21, 0.3);
  overflow: hidden;
}
.ph-stat {
  padding: 1.5rem 1.6rem;
  border-right: 1px solid var(--line);
}
.ph-stat:last-child {
  border-right: 0;
}
.ph-stat b {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.ph-stat span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* ---------- Section head (split) ---------- */
.ph-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: end;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.ph-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ph-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.ph-head__solo {
  margin: 0 0 1.1rem;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ph-head--center {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}
.ph-head--center p {
  max-width: 58ch;
  margin-top: 1.2rem;
}
.ph-kicker {
  margin: 0 0 0.9rem;
  color: var(--accent-text, var(--accent));
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Promise tiles ---------- */
.ph-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}
.ph-promise__item {
  padding: 1.7rem 1.5rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.ph-promise__item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-line, #dbdbdb);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.1);
}
.ph-promise__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft, rgba(119, 119, 119, 0.1));
  color: var(--accent-text, var(--accent));
}
.ph-promise__icon svg {
  width: 23px;
  height: 23px;
}
.ph-promise__item h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
}
.ph-promise__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---------- Packages (dark) ---------- */
.tv-packages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #161616;
  color: #fff;
}
.tv-packages::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  left: 50%;
  width: 60rem;
  height: 60rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(19, 92, 132, 0.3),
    rgba(19, 92, 132, 0) 62%
  );
}
.tv-packages .ph-head h2 {
  color: #fff;
}
.tv-packages .ph-head p {
  color: #c8c8c8;
}
.tv-packages .ph-kicker {
  color: #6bbeea;
}
.tv-packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.tv-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.9rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.tv-pack:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 190, 234, 0.55);
  background: rgba(255, 255, 255, 0.09);
}
.tv-pack--hero {
  border-color: rgba(107, 190, 234, 0.5);
  background: linear-gradient(
    165deg,
    rgba(19, 92, 132, 0.32),
    rgba(255, 255, 255, 0.05) 58%
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.tv-pack__name {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.tv-pack__who {
  margin: 0.3rem 0 0;
  color: #ababab;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tv-pack__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.tv-pack__cur {
  color: #6bbeea;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.tv-pack__amt {
  color: #fff;
  font-size: clamp(2.3rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}
.tv-pack__per {
  color: #ababab;
  font-size: 0.86rem;
  font-weight: 600;
}
.tv-pack__list {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}
.tv-pack__list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  color: #d2ebf9;
  font-size: 0.96rem;
  line-height: 1.5;
}
.tv-pack__list svg {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: #6bbeea;
}
.tv-pack__list b {
  color: #fff;
  font-weight: 700;
}
.tv-pack__cta {
  display: block;
  margin-top: auto;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}
.tv-pack__cta:hover,
.tv-pack__cta:focus-visible {
  border-color: transparent;
  background: #fff;
  color: #161616;
}
.tv-pack--hero .tv-pack__cta {
  border-color: transparent;
  background: var(--accent);
  color: var(--accent-ink, #fff);
}
.tv-pack--hero .tv-pack__cta:hover,
.tv-pack--hero .tv-pack__cta:focus-visible {
  background: #fff;
  color: #161616;
}
.tv-packs__foot {
  max-width: 64ch;
  margin: 2.4rem auto 0;
  color: #b4b4b4;
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Cover (included / excluded) ---------- */
.tv-cover {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.tv-col {
  padding: 2rem 2rem 2.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.tv-col--out {
  background: var(--paper);
}
.tv-col h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}
.tv-col h3 i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
}
.tv-col--in h3 i {
  background: rgba(19, 92, 132, 0.13);
  color: var(--c-travel-text);
}
.tv-col--out h3 i {
  background: rgba(138, 138, 138, 0.15);
  color: var(--muted);
}
.tv-col h3 svg {
  width: 17px;
  height: 17px;
}
.tv-col ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tv-col li {
  padding-left: 1.6rem;
  background: no-repeat left 4px / 17px 17px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.tv-col li b {
  display: block;
  color: var(--ink);
  font-size: 1.01rem;
  font-weight: 700;
}
.tv-col--in li {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f8488' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E");
}
.tv-col--out li {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c27a0e' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E");
}

/* ---------- Highlight notes ---------- */
.tv-extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.tv-extra {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.6rem 1.7rem;
  border-radius: 18px;
  background: linear-gradient(140deg, #176f9f, #0b364d);
  color: #fff;
}
.tv-extra--alt {
  background: linear-gradient(140deg, #135c84, #0b364d);
}
.tv-extra__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}
.tv-extra__icon svg {
  width: 23px;
  height: 23px;
}
.tv-extra h4 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 700;
}
.tv-extra p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}
.tv-extra strong {
  color: #99d2f0;
  font-weight: 800;
}

/* ---------- Destinations (magazine grid) ---------- */
.tv-dests {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1.25rem;
}
.tv-dest {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #cfeaf8;
  color: #fff;
  text-decoration: none;
}
.tv-dest--big {
  grid-column: span 2;
  grid-row: span 2;
}
.tv-dest--tall {
  grid-row: span 2;
}
.tv-dest img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tv-dest:hover img {
  transform: scale(1.07);
}
.tv-dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0) 34%,
    rgba(22, 22, 22, 0.82) 100%
  );
  transition: opacity 0.4s var(--ease);
}
.tv-dest__body {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
}
.tv-dest__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.tv-dest__body h3 {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.tv-dest--big .tv-dest__body h3 {
  font-size: 1.85rem;
}
.tv-dest__body p {
  margin: 0.3rem 0 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ---------- Region coverage ---------- */
.tv-regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.tv-region {
  padding: 1.6rem 1.6rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.tv-region:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.1);
}
.tv-region__n {
  display: block;
  margin-bottom: 0.7rem;
  color: rgba(19, 92, 132, 0.42);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.tv-region h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}
.tv-region ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tv-region li {
  padding: 0.3rem 0.7rem;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.855rem;
  line-height: 1.5;
}

/* ---------- Booking flow ---------- */
.ph-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: flow;
}
.ph-step {
  position: relative;
  padding-top: 2.6rem;
  border-top: 2px solid var(--line);
}
.ph-step::before {
  counter-increment: flow;
  content: "0" counter(flow);
  position: absolute;
  top: -1.1rem;
  left: 0;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink, #fff);
  font-size: 0.76rem;
  font-weight: 800;
}
.ph-step h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}
.ph-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Closing CTA ---------- */
.ph-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0;
  background: #161616;
  color: #fff;
  text-align: center;
}
.ph-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    60% 90% at 50% 100%,
    color-mix(in srgb, var(--accent) 42%, transparent),
    rgba(119, 119, 119, 0) 70%
  );
}
.ph-cta h2 {
  max-width: 18ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.ph-cta p {
  max-width: 54ch;
  margin: 1.3rem auto 0;
  color: #c8c8c8;
  font-size: 1.08rem;
  line-height: 1.7;
}
.ph-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}
.ph-cta__phone {
  margin-top: 2rem;
  color: #c6c6c6;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Traveller notes (home-page slider) ---------- */
.t-slide .t-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #111111, #363636);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.t-stars {
  margin-bottom: 1.4rem;
  color: #acacac;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

/* ---------- Travel responsive ---------- */
@media (max-width: 1100px) {
  .tv-dests {
    grid-auto-rows: 200px;
  }
}
@media (max-width: 992px) {
  .ph-hero {
    --ph-hang: 40px;
    min-height: 0;
    padding-top: 3rem;
  }
  .ph-hero__inner {
    padding-bottom: 3.25rem;
  }
  .ph-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.2rem;
  }
  .ph-promise,
  .tv-packs,
  .tv-regions,
  .ph-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ph-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ph-stat:nth-child(2) {
    border-right: 0;
  }
  .ph-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .tv-cover,
  .tv-extras {
    grid-template-columns: minmax(0, 1fr);
  }
  .tv-dests {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tv-dest--big {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .ph-hero {
    min-height: 0;
    padding-top: 2.5rem;
  }
  .ph-hero__inner {
    padding-bottom: 2.75rem;
  }
  .ph-promise,
  .tv-packs,
  .tv-regions,
  .ph-flow,
  .tv-dests,
  .ph-hero__stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .tv-dest--big,
  .tv-dest--tall {
    grid-column: auto;
    grid-row: auto;
  }
  .ph-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ph-stat:last-child {
    border-bottom: 0;
  }
  .ph-hero__actions .ph-btn,
  .ph-cta__actions .ph-btn {
    width: 100%;
    justify-content: center;
  }
  .tv-col,
  .tv-extra {
    padding: 1.4rem 1.3rem 1.5rem;
  }
  .tv-extra {
    grid-template-columns: minmax(0, 1fr);
  }
  .t-slide blockquote {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ph-promise__item,
  .tv-pack,
  .tv-region,
  .tv-dest img,
  .ph-btn {
    transition: none;
  }
  .ph-promise__item:hover,
  .tv-pack:hover,
  .tv-region:hover,
  .ph-btn:hover {
    transform: none;
  }
  .tv-dest:hover img {
    transform: none;
  }
}

/* Destination card keeps its dark scrim when a remote photo fails */
.tv-dest.is-empty {
  display: block !important;
  background: linear-gradient(150deg, #12587d, #0a3146);
}
.tv-dest.is-empty::after {
  content: "";
  width: auto;
  height: auto;
  background:
    no-repeat center 34% / 23%
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round' opacity='.4'%3E%3Cpath d='M2 19l6.5-10 4 6 3-4.5L22 19z'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.8'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(22, 22, 22, 0) 34%, rgba(22, 22, 22, 0.82) 100%);
}

/* ==========================================================
   ORGANIC FOOD PAGE
   ========================================================== */

/* ---------- Why us ---------- */
.of-why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f3fbf4, #f2f2f2);
}
.of-why::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(53, 143, 57, 0.12),
    rgba(53, 143, 57, 0) 68%
  );
}
.of-why__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 4.5rem;
}
.of-why__media {
  position: relative;
  padding: 0 2.5rem 2.5rem 0;
}
.of-why__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(18, 50, 20, 0.22);
}
.of-why__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* side-by-side layout: photo column stretches to the text column's height */
@media (min-width: 993px) {
  .of-why__grid {
    align-items: stretch;
  }
  .of-why__media {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .of-why__frame {
    flex: 1;
    aspect-ratio: auto;
  }
  /* same overhang on the photo corner as before */
  .of-why__media .of-seal {
    bottom: -1.25rem;
  }
}
.of-why__media::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1.35rem;
  left: -1.35rem;
  width: 10rem;
  height: 10rem;
  background-image: radial-gradient(var(--c-food) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.4;
}
.of-seal {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 1.25rem;
  display: grid;
  width: 9.5rem;
  height: 9.5rem;
  place-items: center;
  padding: 0.6rem;
  border-radius: 50%;
  background: var(--c-food);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(18, 50, 20, 0.3);
}
.of-seal::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.of-seal b {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.of-seal span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}
.of-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.4rem;
}
.of-reason {
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.of-reason:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 50, 20, 0.12);
}
.of-reason__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  place-items: center;
  border-radius: 12px;
  background: rgba(53, 143, 57, 0.12);
  color: var(--c-food);
}
.of-reason__icon svg {
  width: 21px;
  height: 21px;
}
.of-reason h3 {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
}
.of-reason p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ---------- Product cards ---------- */
.of-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.of-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.05);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.of-card:hover {
  transform: translateY(-6px);
  border-color: #d9d9d9;
  box-shadow: 0 20px 44px rgba(18, 50, 20, 0.15);
}
.of-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #f1f1f1;
}
.of-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.of-card:hover .of-card__media img {
  transform: scale(1.06);
}
.of-card__tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-food);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(18, 50, 20, 0.18);
}
.of-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem 1.55rem 1.6rem;
}
.of-card__body h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.of-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Organic responsive ---------- */
@media (max-width: 992px) {
  .of-why__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }
  .of-why__media {
    max-width: 440px;
  }
  .of-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .of-grid,
  .of-reasons {
    grid-template-columns: minmax(0, 1fr);
  }
  .of-why__media {
    padding-right: 1.25rem;
  }
  .of-seal {
    width: 7.5rem;
    height: 7.5rem;
  }
  .of-seal b {
    font-size: 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .of-card,
  .of-reason,
  .of-card__media img {
    transition: none;
  }
  .of-card:hover,
  .of-reason:hover {
    transform: none;
  }
  .of-card:hover .of-card__media img {
    transform: none;
  }
}

/* Product tile awaiting its own photograph */
.of-card__media--await {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #296e2c, #18411a);
}
.of-card__media--await::after {
  content: "";
  width: 34%;
  height: 34%;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round' opacity='.5'%3E%3Cpath d='M9 2.8h6v2.4l1.6 2.4A4 4 0 0117.3 10v8.4a2.4 2.4 0 01-2.4 2.4H9.1a2.4 2.4 0 01-2.4-2.4V10a4 4 0 01.7-2.4L9 5.2z'/%3E%3Cpath d='M6.7 13.4h10.6'/%3E%3C/svg%3E");
}

/* ==========================================================
   Monochrome theme — dark sections
   The global accent is near-black, so on dark backgrounds the
   primary buttons flip to white. Division pages use their own
   accent colour instead (set in each page's <style>).
   ========================================================== */
.hero .btn-primary,
.help-box .btn-primary,
.cta .btn-primary,
.cta-band .btn-primary,
.pagehero .btn-primary,
.site-footer .btn-primary,
.foot .btn-primary {
  background: #ffffff;
  color: #0a0a0a;
}
.hero .btn-primary:hover,
.help-box .btn-primary:hover,
.cta .btn-primary:hover,
.cta-band .btn-primary:hover,
.pagehero .btn-primary:hover,
.site-footer .btn-primary:hover,
.foot .btn-primary:hover {
  background: #e5e5e5;
  color: #0a0a0a;
}
