﻿/* ============== TOKENS ============== */
:root {
  --green: #14594D;
  --green-deep: #0d3a32;
  --green-soft: #1f6d5e;
  --beige: #E8DED2;
  --beige-warm: #efe6d8;
  --gold: #C9A24A;
  --gold-soft: #d9b56a;
  --paper: #F7F5F2;
  --ink: #1A1A1A;
  --line: rgba(20,89,77,0.18);

  --display: 'Big Shoulders Display', 'Archivo Black', sans-serif;
  --body: 'Inter', sans-serif;
  --serif: 'Fraunces', serif;

  --topstrip-h: 36px;
  --nav-float-h: 76px;
  --chrome-top: calc(var(--topstrip-h) + var(--nav-float-h));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--chrome-top);
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============== UTILITIES ============== */
.display { font-family: var(--display); font-weight: 900; letter-spacing: -0.02em; line-height: 0.88; text-transform: uppercase; }
.eyebrow { font-family: var(--body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* parallel-line / striped text effect â€” matches logo motif */
.striped {
  background-image: repeating-linear-gradient(
    to bottom,
    currentColor 0,
    currentColor 0.16em,
    transparent 0.16em,
    transparent 0.24em
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green);
}
.outline {
  -webkit-text-stroke: 1.5px var(--green);
  color: transparent;
}

/* ============== TOP BAR ============== */
.topstrip {
  background: var(--green-deep);
  color: var(--beige);
  font-size: 12px;
  padding: 8px 0;
  overflow: hidden;
}
.topstrip-track {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  width: max-content;
}
.topstrip-track span { display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.08em; }
.topstrip-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============== NAV (pill bar) ============== */
.nav {
  position: fixed;
  top: var(--topstrip-h);
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 48px;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  pointer-events: none;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(680px, 100%);
  pointer-events: auto;
  padding: 8px 10px;
  background: rgba(247, 245, 242, 0.55);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  box-shadow:
    0 4px 28px rgba(13, 58, 50, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--paper);
  border: 1px solid rgba(20, 89, 77, 0.1);
  border-radius: 100px;
  color: var(--green);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
button.nav-chip {
  cursor: pointer;
}
a.nav-chip:hover,
button.nav-chip:hover {
  background: #fff;
  border-color: rgba(20, 89, 77, 0.18);
  color: var(--green-deep);
}
.nav-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 20px;
  height: 16px;
  flex-shrink: 0;
}
.nav-menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-menu-icon span:nth-child(1),
.nav-menu-icon span:nth-child(3) {
  width: 100%;
}
.nav-menu-icon span:nth-child(2) {
  width: 58%;
}
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  line-height: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.nav-cta {
  background: var(--green);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 100px;
  border: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--green-deep);
  color: var(--paper);
}
.nav-cta-label--mobile { display: none; }

/* slide-out menu */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 58, 50, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}
.nav-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--paper);
  padding: 28px 24px 32px;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.nav-drawer-close:hover {
  background: var(--beige-warm);
}
.nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-links a {
  display: block;
  padding: 14px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer-links a:hover {
  background: var(--beige-warm);
  color: var(--green);
}
body.nav-menu-open {
  overflow: hidden;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: calc(var(--chrome-top) + 20px) 24px 0;
  overflow: hidden;
  /* Tall section so hero-bg.png is not cropped at the bottom */
  min-height: min(92vh, 920px);
}
/* Full-bleed background image — spans the entire hero, behind everything */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center 42%;
  z-index: 0;
  filter: contrast(1.02) saturate(1.02);
  
}
/* Soft tint for legibility at the bottom (where stats/card sit) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(20, 89, 77, 0.08) 100%),
    linear-gradient(180deg, rgba(247, 245, 242, 0) 65%, rgba(20, 89, 77, 0.22) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-hashtags {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% + 48px);
  max-width: 100vw;
  margin: -10px -24px 28px;
  padding: 0 24px;
  box-sizing: border-box;
  flex-wrap: nowrap;
  color: var(--green);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.hero-hashtags span {
  white-space: nowrap;
}
.hero-hashtags span::before { content: '#'; opacity: 0.5; margin-right: 2px; }
.hero-title {
  font-size: clamp(80px, 16vw, 280px);
  color: var(--green);
  text-align: center;
  line-height: 0.82;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 4;
  margin-bottom: 0;
  pointer-events: none;
}
.hero-title .line2 {
  display: block;
  -webkit-text-stroke: 3.5px var(--green);
  color: transparent;
  background: none;
  -webkit-text-fill-color: transparent;
  margin-top: -0.04em;
}

/* Stage — tall area for card + stats; grows the hero section with it */
.hero-stage {
  position: relative;
  z-index: 2;
  height: 62vh;
  min-height: 520px;
  max-height: 780px;
  width: 100%;
  background: transparent;
  margin-top: 0;
}

/* glass card with copy + CTA, bottom-left */
.hero-card {
  position: absolute;
  bottom: 36px; left: 36px;
  max-width: 420px;
  background: rgba(247,245,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 26px 28px;
  border-radius: 4px;
  border: 1px solid rgba(232,222,210,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 2;
}
.hero-card .eye {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.hero-card .eye::before {
  content: ''; width: 24px; height: 1.5px; background: var(--gold);
}
.hero-card p {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  margin-bottom: 20px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green); color: var(--paper);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--green-deep); }
.hero-cta .arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--green-deep);
  display: grid; place-items: center; font-size: 13px;
}

/* stats bar bottom of stage */
.hero-stats {
  position: absolute;
  bottom: 36px; right: 36px;
  display: flex; gap: 0;
  background: var(--green-deep);
  border: 1px solid rgba(201,162,74,0.4);
  border-radius: 4px;
  z-index: 2;
}
.hero-stats .stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(232,222,210,0.18);
  text-align: center;
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .n {
  font-family: var(--display);
  font-size: 36px; font-weight: 900;
  color: var(--gold); line-height: 0.95;
}
.hero-stats .stat .l {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--beige); margin-top: 4px;
  white-space: nowrap;
}

/* fast sampling — icon + shared .l label */
.hero-stats .stat--sampling {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-stats .stat--sampling .sampling-icon {
  width: 48px;
  height: 30px;
  color: var(--gold);
  line-height: 0;
  margin-bottom: 4px;
}
.hero-stats .stat--sampling .sampling-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-stats .stat--sampling .l {
  margin-top: 0;
}

.hero-marquee {
  margin: 0;
  background: var(--green);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
}
.hero-marquee-track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-size: 22px; letter-spacing: 0.05em;
}
.hero-marquee-track .star { color: var(--gold); }

/* ============== SECTION HEADERS ============== */
.section { padding: 120px 48px; position: relative; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 140px);
  color: var(--green);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.section-meta {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 110px);
  color: var(--green);
  line-height: 0.9;
  opacity: 0.85;
  align-self: flex-end;
}

/* ============== CATALOG ============== */
#catalogue {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(239, 230, 216, 0.28) 55%, var(--paper) 100%);
}
#catalogue .section-head {
  align-items: baseline;
  margin-bottom: 28px;
  gap: 16px;
}
#catalogue .section-title {
  font-size: clamp(40px, 5.2vw, 76px);
  letter-spacing: -0.01em;
  line-height: 1;
}
#catalogue .section-meta {
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1;
  opacity: 0.9;
  color: var(--gold);
}

#catalogue .filters {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
#catalogue .filters::-webkit-scrollbar { display: none; }
#catalogue .filters button {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
#catalogue .filters button:hover {
  background: rgba(20, 89, 77, 0.06);
}
#catalogue .filters button.on {
  background: #ffffff;
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--line);
}

#catalogue .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid rgba(20, 89, 77, 0.1);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(13, 58, 50, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 74, 0.35);
  box-shadow: 0 20px 48px rgba(13, 58, 50, 0.14);
}
.pcard:hover::before { transform: scaleX(1); }
.pcard:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.pcard .img {
  aspect-ratio: 5 / 4;
  background: var(--beige);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.pcard .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 58, 50, 0.12) 0%,
    transparent 38%,
    transparent 55%,
    rgba(13, 58, 50, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
}
.pcard:hover .img::after {
  background: linear-gradient(
    180deg,
    rgba(13, 58, 50, 0.08) 0%,
    transparent 40%,
    transparent 50%,
    rgba(13, 58, 50, 0.45) 100%
  );
}
.pcard .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcard:hover .img img { transform: scale(1.06); }
.pcard .img .num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.pcard .img .price {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pcard .meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
  background: var(--paper);
}
.pcard .meta .name {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 0.95;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pcard .meta .desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.72;
  margin-bottom: 0;
  flex: 1;
}
.pcard .meta .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 89, 77, 0.12);
}
.pcard .meta .foot > div {
  min-width: 0;
}
.pcard .meta .rating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.pcard .meta .stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1;
}
.pcard .meta .score {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
  line-height: 1;
}
.pcard .meta .reviews {
  font-size: 10px;
  color: var(--green);
  opacity: 0.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.pcard .meta .more {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  background: transparent;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(20, 89, 77, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.pcard .meta .more::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
  opacity: 0.85;
  transition: opacity 0.22s ease;
}
.pcard .meta .more::after {
  content: '→';
  display: inline-block;
  width: auto;
  height: auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}
.pcard:hover .meta .more {
  color: var(--green-deep);
  border-color: rgba(20, 89, 77, 0.75);
}
.pcard:hover .meta .more::before {
  opacity: 1;
}
.pcard:hover .meta .more::after {
  transform: translateX(2px);
  color: var(--green-deep);
}

/* ============== SPLIT FEATURE ============== */
.split {
  background: var(--gold);
  color: var(--green-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.split-img {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .quote-card {
  position: absolute; bottom: 30px; left: 30px; right: 30px;
  background: rgba(20,89,77,0.85);
  backdrop-filter: blur(8px);
  color: var(--beige);
  padding: 18px 22px;
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px; line-height: 1.5;
}
.split-img .quote-card .who {
  margin-top: 10px; font-style: normal;
  font-family: var(--body);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.split-text {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%231A1A1A' stroke-width='0.6' opacity='0.12'><circle cx='100' cy='100' r='30'/><circle cx='100' cy='100' r='50'/><circle cx='100' cy='100' r='70'/><circle cx='100' cy='100' r='90'/></g></svg>");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 320px;
}
.split-text .word {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 100px);
  line-height: 0.9;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 900;
  margin-bottom: 8px;
}
.split-text .word.outl { -webkit-text-stroke: 2px var(--green-deep); color: transparent; }
.split-text .word.strp {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--green-deep) 0 6px,
    transparent 6px 10px
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.split-text .copy {
  margin-top: 32px;
  font-size: 14px; line-height: 1.6;
  color: var(--green-deep);
  max-width: 420px;
}
.split-text .cta {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-deep); color: var(--gold);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  width: max-content;
}
.split-text .cta .arr {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--green-deep);
  display: grid; place-items: center; font-size: 13px;
}

/* ============== CATALOGUE FOOT (View all CTA) ============== */
.catalogue-foot {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(20, 89, 77, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.catalogue-foot-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.65;
  letter-spacing: 0.02em;
  max-width: 440px;
}
#catalogue .catalogue-scroll-hint {
  display: none;
}

/* ============== GALLERY PAGE ============== */
.gallery-hero {
  padding: calc(var(--chrome-top) + 40px) 48px 28px;
  position: relative;
}
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.65; }
.gallery-hero-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  color: var(--green);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.gallery-meta {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--green);
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.gallery-sub {
  margin-top: 14px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.72;
}

.gallery-wrap {
  padding: 0 48px 96px;
}
.gallery-wrap .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}
.gallery-grid {
  margin-top: 8px;
}
.gallery-wrap .filters {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
}
.gallery-wrap .filters::-webkit-scrollbar { display: none; }
.gallery-wrap .filters button {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.gallery-wrap .filters button:hover { background: rgba(20, 89, 77, 0.06); }
.gallery-wrap .filters button.on {
  background: var(--paper);
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--line);
}

.g-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--beige);
  transition: transform 0.3s ease;
}
.g-card:hover { transform: translateY(-4px); }
.g-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.g-card:hover img { transform: scale(1.05); }
.g-card .g-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(247, 245, 242, 0.95);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--ink);
  opacity: 0.6;
  font-size: 15px;
}

/* ============== INDUSTRIES (locations equivalent) ============== */
.industries {
  padding: 120px 48px;
}
.industries .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.ind-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green);
  cursor: pointer;
}
.ind-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ind-card:hover img { transform: scale(1.05); }
.ind-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,58,50,0.85) 100%);
}
.ind-card .label {
  position: absolute; bottom: 22px; left: 22px; right: 70px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px; line-height: 1;
  text-transform: uppercase;
}
.ind-card .label small {
  display: block;
  font-family: var(--body);
  font-size: 10px; letter-spacing: 0.22em; font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
}
.ind-card .arrow {
  position: absolute; bottom: 22px; right: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-size: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.ind-card:hover .arrow { background: var(--paper); transform: rotate(-15deg); }

/* ============== PROCESS strip ============== */
.process-strip {
  background: var(--green-deep);
  color: var(--beige);
  padding: 140px 48px 132px;
  position: relative;
  overflow: hidden;
}
/* faint repeating-line motif on the right â€” matches logo */
.process-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(201,162,74,0.08) 0 4px,
    transparent 4px 12px
  );
  pointer-events: none;
}
.process-strip .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 90px; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.process-strip .section-title { color: var(--paper); }
.process-strip .section-meta { color: var(--gold); opacity: 1; }

.ptimeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  z-index: 1;
}
.pstep {
  position: relative;
  text-align: left;
  padding-top: 56px;
}
/* dashed connector from each node to the next */
.pstep:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 36px;
  width: calc(100% - 36px + 32px + 18px);
  height: 0;
  border: none;
  border-top: 2px dashed var(--gold);
  z-index: 1;
  pointer-events: none;
}
.pstep .node {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 13px; font-weight: 900;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--green-deep);
}
.pstep h4 {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 0.95;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pstep p {
  font-size: 14px; line-height: 1.6;
  color: rgba(232,222,210,0.78);
  max-width: 240px;
}
.pstep .duration {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.pstep .duration::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.process-foot {
  margin-top: 88px;
  padding-top: 30px;
  border-top: 1px solid rgba(232,222,210,0.18);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.process-foot .pf-copy {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.4;
  color: var(--gold);
  max-width: 540px;
}
.process-foot .pf-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--green-deep);
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.process-foot .pf-cta .arr {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-deep); color: var(--gold);
  display: grid; place-items: center; font-size: 13px;
}

/* ============== FAQ ============== */
.faq {
  background: var(--beige);
  padding: 120px 48px;
}
.faq .head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 901px) {
  .faq .section-title br { display: none; }
  .faq .section-title {
    white-space: nowrap;
  }
}
.faq .head p {
  align-self: end;
  font-size: 15px; line-height: 1.6;
  max-width: 420px;
  color: var(--ink); opacity: 0.75;
}
.acc {
  border-bottom: 1px solid rgba(20,89,77,0.25);
  padding: 22px 0;
  cursor: pointer;
}
.acc:first-of-type { border-top: 1px solid rgba(20,89,77,0.25); }
.acc summary {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--green);
  list-style: none;
  gap: 24px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc[open] summary { color: var(--green-deep); }
.acc .icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 20px; color: var(--green);
}
.acc[open] .icon { transform: rotate(180deg); }
.acc .answer {
  padding: 16px 0 4px;
  font-size: 14px; line-height: 1.65;
  color: var(--ink); opacity: 0.75;
  max-width: 720px;
}

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--paper);
  padding: 120px 48px;
  text-align: center;
}
.cta-band .pretitle {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--green);
  margin-bottom: 14px;
}
.cta-band .title {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 140px);
  color: var(--green);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.cta-band .title .gold { color: var(--gold); }
.cta-band .ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.btn-pri {
  background: var(--green); color: var(--paper);
  padding: 16px 28px; border-radius: 100px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; gap: 10px; align-items: center;
  transition: background 0.2s;
}
.btn-pri:hover { background: var(--green-deep); }
.btn-wa { background: #128C7E; color: white; padding: 16px 28px; border-radius: 100px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; display: inline-flex; gap: 10px; align-items: center; }
.btn-ghost {
  background: transparent;
  color: var(--green); border: 1px solid var(--green);
  padding: 16px 28px; border-radius: 100px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.btn-wa-call {
  display: none;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-wa-call .sep {
  opacity: 0.45;
}
.btn-wa-call .phone {
  white-space: nowrap;
}

/* ============== QUOTE BRIEF FORM ============== */
.contact-form-wrap {
  display: none;
  padding: 0 0 88px;
  background: var(--green-deep);
}
.contact-form-wrap.is-visible {
  display: block;
}
.contact-form-wrap.is-visible .quote-brief {
  animation: quoteBriefIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes quoteBriefIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-brief {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
}

.quote-brief-header {
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(201, 162, 74, 0.35);
  margin-bottom: 0;
}
.quote-brief-intro {
  padding: 36px 0 32px;
  color: var(--beige);
}
.quote-brief-intro .eyebrow {
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 12px;
}
.quote-brief-title {
  font-family: var(--display);
  font-size: clamp(36px, 6.5vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--beige);
  white-space: nowrap;
}
.quote-brief-title .outl {
  display: inline;
  -webkit-text-stroke: 2px var(--beige);
  color: transparent;
}
.quote-brief-sub {
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
  opacity: 0.82;
}

.quote-brief-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(201, 162, 74, 0.2);
  border: 1px solid rgba(201, 162, 74, 0.25);
}

.brief-field {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 6px 14px;
  padding: 22px 24px 20px;
  background: rgba(13, 58, 50, 0.55);
  color: var(--beige);
  cursor: text;
  transition: background 0.2s;
}
.brief-field:focus-within {
  background: rgba(13, 58, 50, 0.82);
}
.brief-field--wide {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
}
.brief-field-no {
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.brief-field-label {
  grid-column: 2;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.95;
}
.brief-input {
  grid-column: 2;
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(201, 162, 74, 0.45);
  border-radius: 0;
  background: transparent;
  color: var(--beige);
  padding: 8px 0 10px;
  font-size: clamp(15px, 2vw, 18px);
  font-family: var(--body);
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, color 0.2s;
}
.brief-input::placeholder {
  color: rgba(232, 222, 210, 0.35);
  font-weight: 400;
}
.brief-input:focus {
  border-bottom-color: var(--gold);
  color: #fff;
}
.brief-input--area {
  resize: vertical;
  min-height: 88px;
  line-height: 1.55;
}
.brief-field--picker {
  cursor: default;
}
.brief-picker {
  grid-column: 2;
  position: relative;
  align-self: end;
}
.brief-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(201, 162, 74, 0.45);
  border-radius: 0;
  background: transparent;
  color: var(--beige);
  padding: 8px 0 10px;
  font-size: clamp(15px, 2vw, 18px);
  font-family: var(--body);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, color 0.2s;
}
.brief-picker-trigger:hover,
.brief-picker.is-open .brief-picker-trigger {
  border-bottom-color: var(--gold);
  color: #fff;
}
.brief-picker-value.is-placeholder {
  color: rgba(232, 222, 210, 0.35);
  font-weight: 400;
}
.brief-picker-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 50%;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.brief-picker-chevron::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translate(-50%, -60%) rotate(45deg);
}
.brief-picker.is-open .brief-picker-chevron {
  transform: rotate(180deg);
  background: rgba(201, 162, 74, 0.15);
  border-color: var(--gold);
}
.brief-picker-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 280px;
  overflow-y: auto;
  background: var(--green-deep);
  border: 1px solid rgba(201, 162, 74, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.brief-picker-menu[hidden] {
  display: none;
}
.brief-picker-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--beige);
  cursor: pointer;
  border-bottom: 1px solid rgba(201, 162, 74, 0.12);
  transition: background 0.15s, color 0.15s;
}
.brief-picker-option:last-child {
  border-bottom: none;
}
.brief-picker-option-no {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  min-width: 18px;
  transition: opacity 0.15s;
}
.brief-picker-option:hover,
.brief-picker-option:focus {
  background: rgba(201, 162, 74, 0.14);
  color: #fff;
  outline: none;
}
.brief-picker-option:hover .brief-picker-option-no,
.brief-picker-option:focus .brief-picker-option-no,
.brief-picker-option.is-selected .brief-picker-option-no {
  opacity: 1;
}
.brief-picker-option.is-selected {
  background: rgba(201, 162, 74, 0.2);
  color: var(--gold);
}
.brief-picker-option.is-selected .brief-picker-option-no {
  opacity: 1;
}

.quote-brief-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.quote-brief-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: 18px 32px;
  font-family: var(--display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.quote-brief-submit:hover {
  background: #d4ad58;
  transform: translateY(-2px);
}
.quote-brief-submit-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: var(--green-deep);
  display: inline;
  font-size: 20px;
  line-height: 1;
}
.quote-brief-note {
  font-size: 13px;
  color: rgba(232, 222, 210, 0.7);
  margin: 0;
}
.quote-brief-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quote-brief-success {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 74, 0.12);
  color: var(--beige);
  font-size: 15px;
  line-height: 1.55;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--green-deep);
  color: var(--beige);
  padding: 80px 48px 28px;
  position: relative;
  overflow: hidden;
}
.footer-brand {
  font-family: var(--display);
  font-size: clamp(120px, 19vw, 280px);
  line-height: 0.85;
  color: var(--paper);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.06em;
}
.footer-brand-logo {
  height: 0.85em;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-text {
  display: inline;
}
.footer-brand .dot { color: var(--gold); }
.footer-brand .stripe {
  background-image: repeating-linear-gradient(
    to bottom,
    var(--paper) 0 12px,
    var(--green-deep) 12px 18px
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 40px;
  border-top: 1px solid rgba(232,222,210,0.15);
}
.footer-row p {
  font-size: 13px; line-height: 1.65;
  color: rgba(232,222,210,0.7);
  margin-bottom: 18px;
  max-width: 320px;
}
.footer-row .cta-card {
  background: var(--gold); color: var(--green-deep);
  padding: 14px 22px; border-radius: 100px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; gap: 10px; align-items: center;
}
.fcol h5 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.fcol a, .fcol div {
  display: block;
  font-size: 13px;
  color: var(--beige);
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.fcol a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(232,222,210,0.15);
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,222,210,0.55);
}

/* ============== STICKY FAB ============== */
.fab {
  position: fixed; right: 22px; bottom: 22px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100;
}
.fab a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  font-size: 22px;
}
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25D366; }
.fab .call { background: var(--green); }
.fab .quote { background: var(--gold); color: var(--green-deep); font-family: var(--display); font-size: 11px; letter-spacing: 0.06em; }

@media (min-width: 901px) and (max-width: 1180px) {
  #catalogue .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Process timeline: keep desktop-style horizontal row on tablets / iPad */
@media (min-width: 641px) and (max-width: 900px) {
  .process-strip {
    padding: 80px 28px 100px;
  }
  .process-strip .head {
    margin-bottom: 56px;
  }
  .ptimeline {
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(12px, 2vw, 22px);
  }
  .pstep {
    padding-top: 48px;
  }
  .pstep:not(:last-child)::after {
    top: 15px;
    left: 30px;
    width: calc(100% - 30px + clamp(12px, 2vw, 22px) + 14px);
    height: 0;
    border-top: 2px dashed var(--gold);
    border-left: none;
  }
  .pstep .node {
    width: 30px;
    height: 30px;
    font-size: 11px;
    box-shadow: 0 0 0 6px var(--green-deep);
  }
  .pstep h4 {
    font-size: clamp(18px, 2.6vw, 30px);
    margin-bottom: 10px;
  }
  .pstep p {
    font-size: 12px;
    line-height: 1.5;
    max-width: none;
  }
  .pstep .duration {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .process-foot {
    flex-direction: row;
    align-items: center;
    margin-top: 64px;
  }
  .process-foot .pf-copy {
    font-size: 18px;
    max-width: 380px;
  }
  .process-foot .pf-cta {
    padding: 14px 22px;
    font-size: 11px;
    flex-shrink: 0;
  }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  :root { --nav-float-h: 68px; }
  .nav { padding: 12px 16px; }
  .nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 10px;
  }
  .nav-chip--menu {
    padding: 12px 14px;
    gap: 0;
  }
  .nav-menu-label { display: none; }
  .nav-brand {
    display: flex;
    justify-content: center;
    min-width: 0;
  }
  .nav-brand .nav-logo-img { height: 38px; }
  .nav-chip { padding: 12px 20px; font-size: 13px; }
  .nav-cta { margin-left: 0; }
  .nav-cta-label--desktop { display: none; }
  .nav-cta-label--mobile { display: inline; }
  .hero { padding: calc(var(--chrome-top) + 12px) 16px 0; }
  .hero-bg {
    object-fit: contain;
    object-position: center center;
  }
  .hero-title { font-size: clamp(56px, 22vw, 120px); }
  .hero-hashtags { display: none; }
  .hero-stage {
    height: 70vh;
    min-height: 520px;
    margin-top: 0;
  }
  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 50px;
    max-width: none;
    padding: 0;
    overflow: hidden;
  }
  /* Refined headline band — mobile only */
  .hero-card .eye {
    margin: 0;
    padding: 14px 18px;
    background: var(--green-deep);
    color: var(--beige);
    font-family: var(--display);
    font-size: clamp(20px, 5.5vw, 26px);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid rgba(201, 162, 74, 0.4);
  }
  .hero-card .eye::before {
    display: none;
  }
  .hero-card p {
    font-size: 13px;
    margin-bottom: 14px;
    padding: 16px 20px 0;
  }
  .hero-card .hero-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    width: calc(100% - 40px);
    margin: 2px 20px 18px;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
    color: var(--green);
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .hero-card .hero-cta:hover {
    background: none;
    color: var(--green-deep);
  }
  .hero-card .hero-cta .arrow {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: none;
    color: inherit;
    font-size: 1.05em;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
  }
  .hero-stats { display: none; }
  .section { padding: 64px 20px; }
  .section-head { gap: 16px; }
  .section-title { font-size: clamp(44px, 13vw, 80px); }
  .section-meta { font-size: 56px; }
  #catalogue .section-meta { display: none; }
  #catalogue .section-head {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #catalogue .section-title {
    text-align: center;
    width: 100%;
  }
  #catalogue .catalogue-scroll-hint {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.5;
    margin: -8px 0 16px;
    text-align: center;
  }
  #catalogue .grid-3 {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 20px 8px;
    margin: 0 -20px;
  }
  #catalogue .grid-3::-webkit-scrollbar { display: none; }
  #catalogue .pcard {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  #catalogue .pcard:hover { transform: none; }
  #catalogue .pcard .meta .name { font-size: 28px; }
  #catalogue .pcard .meta .foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
  }
  #catalogue .pcard .meta .more {
    justify-content: flex-end;
    width: auto;
  }
  .catalogue-foot {
    margin-top: 18px;
    padding-top: 16px;
    gap: 10px;
  }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 380px; }
  .split-text { padding: 48px 24px; }
  .profile-embroidery-gallery { grid-template-columns: 1fr; padding: 0 16px 8px; gap: 16px; }
  .profile-embroidery-applies { padding: 20px 20px 0; }
  .profile-embroidery-points { margin: 16px 20px 0; }
  .profile-embroidery-cta { margin: 20px 20px 28px; }
  .profile-embroidery-head { padding: 24px 20px 22px; }
  .industries { padding: 64px 20px; }
  .industries .row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-hero { padding: calc(var(--chrome-top) + 24px) 20px 20px; }
  .gallery-wrap { padding: 0 20px 64px; }
  .gallery-wrap .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-hero-row { gap: 8px; }
  .gallery-title { font-size: clamp(40px, 11vw, 72px); }
  .gallery-meta { font-size: 16px; }
  .gallery-sub { font-size: 14px; }
  .g-card .g-label { font-size: 10px; padding: 5px 10px; letter-spacing: 0.14em; }
  .process-strip { padding: 64px 20px 44px; }
  .process-strip .head {
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 48px;
  }
  .process-strip .section-title {
    font-size: clamp(36px, 10vw, 52px);
    flex: 1;
    min-width: 0;
  }
  .process-strip .section-meta {
    font-size: clamp(19px, 5.6vw, 30px);
    flex-shrink: 0;
    align-self: flex-end;
    line-height: 1;
    white-space: nowrap;
  }
  .faq { padding: 64px 20px; }
  .faq .head { grid-template-columns: 1fr; }
  .faq .section-title {
    line-height: 1.14;
  }
  .cta-band { padding: 64px 20px; }
  .cta-band .ctas .btn-wa,
  .cta-band .ctas .btn-ghost {
    display: none;
  }
  .cta-band .ctas .btn-wa-call {
    display: inline-flex;
  }
  .contact-form-wrap { padding: 0 0 64px; }
  .quote-brief { padding: 0 20px; }
  .quote-brief-title { font-size: clamp(28px, 8.5vw, 44px); }
  .quote-brief-fields { grid-template-columns: 1fr; }
  .brief-field--wide { grid-column: auto; }
  .footer { padding: 48px 20px 24px; }
  .footer-brand {
    font-size: clamp(72px, 26vw, 140px);
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }
  .footer-row p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-row .cta-card {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .topstrip { font-size: 11px; }
}

/* Process timeline: vertical stack on phones only */
@media (max-width: 640px) {
  .process-strip { padding-bottom: 28px; }
  .process-foot {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 24px;
    gap: 20px;
  }
  .process-foot .pf-copy { font-size: 18px; }
  .ptimeline { grid-template-columns: 1fr; gap: 36px; }
  .pstep:not(:last-child)::after {
    top: 36px;
    left: 17px;
    width: 0;
    height: calc(100% + 36px);
    border-top: none;
    border-left: 2px dashed var(--gold);
  }
  .pstep { padding-top: 0; padding-left: 56px; }
  .pstep .node { top: -4px; }

  /* Footer: cleaner compact mobile layout */
  .footer {
    padding: 38px 16px 18px;
  }
  .footer-brand {
    font-size: clamp(56px, 20vw, 92px);
    margin-bottom: 22px;
    gap: 0.05em;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
    padding-top: 20px;
  }
  .fcol h5 {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .fcol a, .fcol div {
    font-size: 11px;
    margin-bottom: 6px;
    line-height: 1.35;
  }
  .footer-row p {
    display: none; /* remove long paragraph causing extra scroll */
  }
  .footer-row .cta-card {
    padding: 10px 14px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
  .footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  /* Prevent FAB from crowding footer content on phones */
  .fab {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .fab a {
    width: 48px;
    height: 48px;
  }
  .fab .quote {
    font-size: 10px;
  }
}

/* ============== BUSINESS PROFILE (pamphlet) ============== */
.profile-page {
  background: var(--beige-warm);
}
.profile-main {
  padding: calc(var(--chrome-top) + 32px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.profile-pamphlet {
  width: min(920px, 100%);
  overflow: hidden;
}
.profile-pamphlet--main {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.profile-pamphlet--main .profile-banner {
  box-shadow:
    0 8px 32px rgba(13, 58, 50, 0.1),
    0 2px 8px rgba(13, 58, 50, 0.06);
}
.profile-pamphlet--main .profile-body {
  box-shadow:
    0 24px 64px rgba(13, 58, 50, 0.12),
    0 2px 8px rgba(13, 58, 50, 0.06);
}
.profile-pamphlet--embroidery {
  background: #fff;
  box-shadow:
    0 24px 64px rgba(13, 58, 50, 0.12),
    0 2px 8px rgba(13, 58, 50, 0.06);
}
.profile-banner {
  position: relative;
  width: 100%;
  height: clamp(200px, 32vw, 300px);
  overflow: hidden;
  background: var(--green-deep);
}
.profile-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.profile-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(13, 58, 50, 0.92) 0%, rgba(13, 58, 50, 0.45) 50%, rgba(13, 58, 50, 0.15) 100%);
  color: var(--beige);
}
.profile-banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 96px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}
.profile-banner-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
}
.profile-banner-name {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.profile-banner-loc {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.profile-body {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  align-items: stretch;
}
.profile-panel--brand,
.profile-panel--light {
  display: flex;
  flex-direction: column;
}
.profile-panel--brand .profile-block--sectors {
  margin-top: auto;
}
.profile-panel--light .profile-actions {
  margin-top: auto;
}
.profile-embroidery {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.profile-embroidery-head {
  background: var(--green-deep);
  color: var(--beige);
  padding: 32px 32px 28px;
}
.profile-embroidery-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.profile-embroidery-title {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 12px;
}
.profile-embroidery-lead {
  font-size: 14px;
  line-height: 1.65;
  max-width: 52ch;
  opacity: 0.9;
}
.profile-embroidery-hero {
  position: relative;
  background: #fff;
  padding-bottom: 36px;
}
.profile-embroidery-hero > img {
  width: 100%;
  height: clamp(200px, 36vw, 320px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.profile-embroidery-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 24px 8px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.profile-embroidery-card {
  margin: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.profile-embroidery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.profile-embroidery-card figcaption {
  padding: 14px 16px 16px;
  flex: 1;
}
.profile-embroidery-card figcaption strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}
.profile-embroidery-card figcaption span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.72);
}
.profile-embroidery-applies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 32px 32px 0;
}
.profile-embroidery-applies span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  border-radius: 100px;
}
.profile-embroidery-points {
  list-style: none;
  margin: 20px 32px 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.82);
}
.profile-embroidery-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.profile-embroidery-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.profile-embroidery-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 32px 32px;
  padding: 14px 22px;
  background: var(--green);
  color: var(--beige);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.profile-embroidery-cta:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}
.profile-panel--brand {
  background: var(--green-deep);
  color: var(--beige);
  padding: 36px 28px 40px;
}
.profile-panel--light {
  padding: 36px 32px 40px;
  background: #fff;
}
.profile-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.profile-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232, 222, 210, 0.2);
}
.profile-block {
  margin-bottom: 24px;
}
.profile-block-head {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--beige);
  color: var(--green-deep);
  padding: 6px 12px;
  margin-bottom: 14px;
}
.profile-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
}
.profile-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.profile-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.profile-sectors {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.9;
}
.profile-about-head {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.profile-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.82);
  margin-bottom: 12px;
}
.profile-about {
  margin-bottom: 28px;
}
.profile-process {
  margin-bottom: 28px;
}
.profile-steps {
  list-style: none;
  font-size: 14px;
  line-height: 1.65;
  counter-reset: step;
}
.profile-steps li {
  counter-increment: step;
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: rgba(26, 26, 26, 0.82);
}
.profile-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.profile-steps strong {
  color: var(--green);
  font-weight: 600;
}
.profile-contact {
  margin-top: 50px;
}
.profile-contact-head {
  background: var(--green-deep);
  color: var(--beige);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  margin-bottom: 16px;
}
.profile-contact-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}
.profile-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(26, 26, 26, 0.85);
}
.profile-contact-list a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.profile-contact-list a:hover {
  color: var(--green-soft);
}
.profile-contact-icon {
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  color: var(--green);
  line-height: 1.4;
}
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.2s, background 0.2s;
}
.profile-btn--gold {
  background: var(--gold);
  color: var(--green-deep);
}
.profile-btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}
.profile-btn--ghost {
  border: 1px solid var(--line);
  color: var(--green);
  background: transparent;
}
.profile-btn--ghost:hover {
  background: var(--paper);
}

@media (max-width: 768px) {
  .profile-main { padding: calc(var(--chrome-top) + 20px) 16px 72px; gap: 40px; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-panel--brand { padding: 28px 22px 32px; }
  .profile-panel--light { padding: 28px 22px 36px; }
  .profile-banner { height: clamp(180px, 42vw, 220px); }
  .profile-banner-overlay { padding: 0; }
  .profile-banner-text { padding: 20px; }
  .profile-banner-logo { height: 72px; max-width: 180px; }
  .profile-embroidery-head { padding: 24px 20px 22px; }
  .profile-embroidery-gallery { grid-template-columns: 1fr; padding: 0 16px 8px; gap: 16px; }
  .profile-embroidery-applies { padding: 20px 20px 0; }
  .profile-embroidery-points { margin: 16px 20px 0; }
  .profile-embroidery-cta { margin: 20px 20px 28px; }
}

@media print {
  .profile-page { background: #fff !important; }
  .profile-main { padding: 0 !important; gap: 0 !important; }
  .profile-pamphlet {
    width: 100% !important;
    box-shadow: none !important;
  }
  .profile-pamphlet--main .profile-body {
    box-shadow: none !important;
  }
  .profile-actions, .fab, .topstrip, .nav { display: none !important; }
  .profile-banner { max-height: 200px; break-after: avoid; }
  .profile-body { break-inside: avoid; }
  .profile-pamphlet--embroidery { break-before: page; }
  .profile-embroidery-cta { display: none !important; }
}

/* ============== PRINT ============== */
@media print {
  @page { size: A4 portrait; margin: 0; }
  html, body {
    background: var(--paper) !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    animation: none !important;
    transition: none !important;
  }
  /* Kill sticky / fixed so nothing repeats on every page */
  .nav { position: static !important; backdrop-filter: none !important; }
  .fab { display: none !important; }
  /* Tame marquees - show one snapshot, not the animated loop */
  .topstrip { overflow: hidden; }
  .topstrip-track, .hero-marquee-track { animation: none !important; transform: none !important; }
  /* Section breaks for cleaner pagination */
  .hero, .section, .split, .industries, .process-strip, .faq, .cta-band, .footer {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }
  .split, .process-strip, .faq, .cta-band, .footer {
    break-before: auto;
  }
  .pcard, .ind-card, .pstep, .acc {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  /* Trim outer padding so content uses page width */
  .hero { padding: 32px 24px 0 !important; }
  .section, .industries, .process-strip, .faq, .cta-band { padding: 48px 24px !important; }
  .footer { padding: 48px 24px 24px !important; }
  /* Stop hover-scale on images */
  .pcard:hover .img img, .ind-card:hover img { transform: none !important; }
}

