/* =============================================================
   Create Cuts 2026. Main Stylesheet
   Light editorial theme, Mulish + Fraunces, premium warm palette
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* BLACK PREVIEW. Dark editorial palette
     Page bg is warm near-black, cards lift one notch, type is warm off-white.
     Orange accent unchanged. Same brand, different mood. */
  --cc-orange:       #EF4B37;
  --cc-orange-deep:  #D43B28;
  --cc-orange-soft:  #FF7F3B;
  --cc-ink:          #EDE8DD;  /* body text (warm off-white, not pure) */
  --cc-ink-deep:     #F8F4EB;  /* headings */
  --cc-grey:         #8E8A83;  /* muted warm grey */
  --cc-muted:        #6E6A63;
  --cc-border:       #262625;  /* dark borders (low-contrast) */
  --cc-border-dark:  #3A3A39;  /* elevated border */
  --cc-paper:        #0E0E0D;  /* page bg. Warm near-black */
  --cc-cream:        #141413;  /* alt section. Lifted one notch */
  --cc-sand:         #1C1C1A;  /* deeper section. Lifted two notches */
  --cc-white:        #FFFFFF;
  --cc-success:      #4BC17A;

  /* Legacy aliases */
  --color-void:       var(--cc-paper);
  --color-carbon:     var(--cc-cream);
  --color-gunmetal:   var(--cc-border);
  --color-smoke:      var(--cc-grey);
  --color-chalk:      var(--cc-ink);
  --color-white:      var(--cc-white);
  --color-accent:     var(--cc-orange);
  --color-accent-hover: var(--cc-orange-deep);
  --color-accent-tint:  var(--cc-orange-soft);

  /* Semantic */
  --color-background: var(--cc-paper);
  --color-surface:    var(--cc-cream);
  --color-surface-2:  var(--cc-sand);
  --color-border:     var(--cc-border);
  --color-text:       var(--cc-ink);
  --color-text-muted: var(--cc-grey);
  --color-primary:    var(--cc-orange);
  --color-primary-rgb: 239, 75, 55;

  /* Dark-section overrides */
  --dark-bg:         #0a0a0a;
  --dark-surface:    #1C2328;
  --dark-border:     var(--cc-border-dark);
  --dark-text:       #F0EFEB;
  --dark-text-muted: #A8A8AC;

  /* Type */
  --font-body: 'Mulish', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-heading: 'Mulish', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Spacing / motion */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 24px 48px rgba(0, 0, 0, 0.6);
  --max-w: 1240px;
  --gutter: 24px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
main { display: block; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--cc-orange); text-decoration: none; }
a:hover { color: var(--cc-orange-deep); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--cc-ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(44px, 6vw, 76px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }
h2 { font-size: clamp(32px, 4.2vw, 54px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lede, .lead { font-size: clamp(18px, 1.8vw, 21px); line-height: 1.55; color: var(--cc-ink); max-width: 64ch; }

.serif { font-family: var(--font-display); font-weight: 500; font-style: italic; letter-spacing: 0; }
.italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-orange);
  margin-bottom: 1rem;
}
.eyebrow--grey { color: var(--cc-grey); }
.eyebrow--ink { color: var(--cc-ink); }

.display-h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.display-h1 .accent { color: var(--cc-orange); }
.display-h1 em { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 6px; z-index: 9999;
  background: var(--cc-ink); color: var(--cc-white);
  padding: 8px 16px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 840px; }
.container--wide { max-width: 1440px; }

.section { padding: 100px 0; position: relative; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }
.section--alt { background: var(--cc-cream); }
.section--sand { background: var(--cc-sand); }
.section--paper { background: var(--cc-paper); }
.section--dark, .dark-section {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--cc-white); }
.section--dark p, .dark-section p { color: var(--dark-text); }
.section--dark .eyebrow:not(.eyebrow--grey):not(.eyebrow--ink), .dark-section .eyebrow { color: var(--cc-orange-soft); }

@media (max-width: 768px) {
  .section, .section--alt, .section--dark, .section--sand, .section--paper { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  min-height: 48px;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--cc-orange);
  color: var(--cc-white);
  border-color: var(--cc-orange);
  box-shadow: 0 4px 14px rgba(239, 75, 55, 0.25);
}
.btn--primary:hover, .btn--primary:focus {
  background-color: var(--cc-orange-deep);
  border-color: var(--cc-orange-deep);
  color: var(--cc-white);
  box-shadow: 0 8px 20px rgba(239, 75, 55, 0.3);
}

.btn--secondary {
  background-color: var(--cc-ink);
  color: var(--cc-white);
  border-color: var(--cc-ink);
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: var(--cc-ink-deep);
  border-color: var(--cc-ink-deep);
  color: var(--cc-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--cc-ink);
  border-color: var(--cc-ink);
}
.btn--ghost:hover {
  background-color: var(--cc-ink);
  color: var(--cc-white);
}
.dark-section .btn--ghost, .section--dark .btn--ghost {
  color: var(--cc-white);
  border-color: var(--cc-white);
}
.dark-section .btn--ghost:hover, .section--dark .btn--ghost:hover {
  background-color: var(--cc-white);
  color: var(--cc-ink);
}

.btn--lg { padding: 18px 36px; font-size: 16px; min-height: 56px; }
.btn--sm { padding: 10px 20px; font-size: 13px; min-height: 40px; }
.btn--full { width: 100%; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

*:focus-visible { outline: 3px solid var(--cc-orange-soft); outline-offset: 3px; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 14, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}
.header.is-scrolled {
  background: rgba(14, 14, 13, 0.94);
  border-bottom-color: var(--cc-border-dark);
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__logo img { height: 56px; width: auto; display: block; }
.header__logo .logo-image--dark { display: none; }
.header__logo a { display: block; }

.nav { flex: 1; }
.nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 0.25rem; align-items: center; justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cc-ink);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.nav__link:hover { color: var(--cc-orange); background: rgba(239,75,55,0.06); }
.nav__caret { font-size: 10px; opacity: 0.6; }

.nav__dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 10px 0;
  list-style: none; margin: 6px 0 0;
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 100;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: background 120ms var(--ease), color 120ms var(--ease), padding-left 160ms var(--ease);
}
.nav__dropdown a:hover {
  color: var(--cc-orange);
  background: var(--cc-paper);
  padding-left: 26px;
}
.nav__dropdown a .meta {
  display: block;
  font-size: 11px;
  color: var(--cc-grey);
  margin-top: 2px;
  font-weight: 400;
}

.header__ctas { display: flex; gap: 10px; align-items: center; }
.header__ctas .btn { padding: 10px 20px; font-size: 12px; min-height: 40px; }

.mobile-menu-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  padding: 8px;
}
.mobile-menu-toggle__line {
  display: block;
  width: 22px; height: 2px;
  background: var(--cc-ink-deep);
  border-radius: 2px;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}
.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open .mobile-menu-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav, .header__ctas { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header__container { justify-content: space-between; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cc-paper);
  z-index: 9999;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease), transform 240ms var(--ease);
  padding: 90px var(--gutter) 40px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
/* Hide sticky CTA bar when mobile menu is open */
body.menu-open .sticky-cta { display: none !important; }
body.menu-open { overflow: hidden !important; touch-action: none; }
.mobile-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--cc-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--cc-border);
  letter-spacing: -0.01em;
}
.mobile-nav__link:hover { color: var(--cc-orange); }
.mobile-menu__cta {
  display: flex; flex-direction: column; gap: 10px; margin-top: 24px;
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--cc-ink);
  color: var(--cc-white);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.announce a { color: var(--cc-orange-soft); font-weight: 700; }
.announce a:hover { color: var(--cc-white); text-decoration: underline; }

/* ---------- Hero (light editorial) ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--cc-paper);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
}
.hero__body { max-width: 620px; }
.hero__sub {
  color: var(--cc-ink);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  margin: 1.25rem 0 2rem;
  max-width: 54ch;
}
.hero__meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--cc-border);
  font-size: 14px;
  color: var(--cc-grey);
}
.hero__meta strong { color: var(--cc-ink); font-weight: 700; display: block; font-size: 15px; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--cc-cream);
  color: var(--cc-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

/* ---------- Feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features { grid-template-columns: 1fr; } }

.feature {
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
  position: relative;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--cc-orange-soft);
}
.feature__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--cc-cream);
  color: var(--cc-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  margin-bottom: 1.25rem;
}
.feature h3 { font-size: 20px; margin-bottom: 0.5rem; font-weight: 700; letter-spacing: -0.01em; }
.feature p { color: var(--cc-grey); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- Steps (4-step process) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  counter-reset: step;
}
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.step:hover { box-shadow: var(--shadow-card); border-color: var(--cc-orange-soft); }
.step__num {
  position: absolute; top: -16px; left: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cc-orange);
  color: var(--cc-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 12px rgba(239, 75, 55, 0.3);
}
.step h4 { font-size: 17px; margin: 0.75rem 0 0.5rem; font-weight: 700; }
.step p { color: var(--cc-grey); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Accounts / Path cards ---------- */
.paths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .paths { grid-template-columns: 1fr; } }
.path {
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
  position: relative;
  overflow: hidden;
}
.path:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.path--dark {
  background: #2A2823;
  color: var(--cc-ink);
  border-color: #3A3833;
}
.path--dark h3 { color: var(--cc-white); }
.path--dark p  { color: rgba(240, 239, 235, 0.85); }
.path--dark ul li { color: rgba(240, 239, 235, 0.9); }
.path__tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cc-orange);
  margin-bottom: 1rem;
}
.path--dark .path__tag { color: var(--cc-orange-soft); }
.path h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.path ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.path ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--cc-border);
}
.path--dark ul li { border-bottom-color: var(--cc-border-dark); }
.path ul li:last-child { border-bottom: 0; }
.path ul li::before {
  content: ''; position: absolute;
  left: 0; top: 13px;
  width: 18px; height: 18px;
  background: var(--cc-orange);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='black'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='black'/></svg>") center/contain no-repeat;
}

/* ---------- Work gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .gallery { grid-template-columns: 1fr; } }

.card-work {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  background: var(--cc-cream);
  cursor: pointer;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
  box-shadow: var(--shadow-card);
}
.card-work:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-work__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms var(--ease);
}
.card-work:hover .card-work__img { transform: scale(1.06); }
.card-work__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17,20,24,0.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-start; gap: 0.4rem; padding-top: 3rem;
  padding: 1.75rem;
  color: var(--cc-white);
}
.card-work__tag {
  display: inline-block; align-self: flex-start;
  background: var(--cc-cream);
  color: var(--cc-ink);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 0.75rem;
}
.card-work__title { font-size: 20px; font-weight: 700; margin-bottom: 0.25rem; color: var(--cc-white); letter-spacing: -0.01em; }
.card-work__desc  { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.45; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial__stars { color: var(--cc-orange); font-size: 15px; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cc-ink);
  margin: 0 0 1.25rem;
}
.testimonial__author { color: var(--cc-ink); font-size: 14px; font-weight: 700; }
.testimonial__role   { color: var(--cc-grey); font-size: 13px; font-weight: 500; margin-top: 2px; }

/* ---------- Partner band ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  align-items: center;
  justify-items: center;
  padding: 3rem 0;
  color: var(--cc-grey);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .partners { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; } }
@media (max-width: 560px) { .partners { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }
.partner {
  display: flex; align-items: center; justify-content: center;
  height: 42px;
  color: inherit;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}
.partner:hover { color: var(--cc-orange); transform: translateY(-1px); }
.partner img, .partner svg { height: 100%; width: auto; max-width: 100%; display: block; }
.partners-wrap--dark .partner { color: rgba(240, 239, 235, 0.75); }
.partners-wrap--dark .partner:hover { color: var(--cc-white); }

/* ---------- Stats band ---------- */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 3rem 2rem;
  background:
    linear-gradient(180deg, rgba(232,93,58,0.08), transparent 60%),
    linear-gradient(145deg, #181818, #0e0e0e);
  color: var(--cc-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cc-orange) 20%, var(--cc-orange) 80%, transparent);
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; padding: 2rem 1rem; } }
.stat {
  text-align: center;
  padding: 0.25rem 1rem;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.14), transparent);
}
@media (max-width: 768px) { .stat + .stat::before { display: none; } }
.stat:hover { transform: translateY(-4px); }
.stat__num {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--cc-orange);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff8a5c, #e85d3a 55%, #c8401e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__num small {
  font-size: 0.42em;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-left: 4px;
  letter-spacing: 0.05em;
  -webkit-text-fill-color: rgba(255,255,255,0.75);
}
.stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 760px;
  margin: 0 0 3.5rem;
}
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--cc-grey); font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; }

/* ---------- Two-column content row ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split__img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__body ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.split__body li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--cc-border); font-size: 15px; }
.split__body li:last-child { border-bottom: 0; }
.split__body li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 18px; height: 18px; background: var(--cc-orange);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='black'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='black'/></svg>") center/contain no-repeat;
}

/* ---------- Form elements ---------- */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--cc-ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-label .req { color: var(--cc-orange); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%;
  background: var(--cc-cream);
  color: var(--cc-ink);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cc-orange);
  box-shadow: 0 0 0 3px rgba(239, 75, 55, 0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Badges ---------- */
.badge-am {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cc-cream);
  color: var(--cc-ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--cc-border);
}
.badge-am::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--cc-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--cc-cream);
  border-top: 1px solid var(--cc-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
  z-index: 98;
  box-shadow: 0 -10px 24px rgba(36, 48, 54, 0.08);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  main, footer.footer { padding-bottom: 78px; }
}
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: 12px; min-height: 44px; }

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0a;
  color: var(--dark-text);
  padding: 80px 0 0;
  margin-top: 60px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cc-orange) 20%, var(--cc-orange) 80%, transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--cc-border-dark);
}
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand, .footer__cta { grid-column: 1 / -1; }
}
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand { max-width: 360px; }
.footer__logo img { display: block; height: auto; width: 180px; margin: 0 0 1.25rem; }
.footer__tagline { color: rgba(240,239,235,0.75); font-size: 14px; line-height: 1.65; margin: 0 0 1.5rem; }
.footer__contact-block p { margin: 0.35rem 0; font-size: 14px; color: var(--dark-text); line-height: 1.55; }
.footer__contact-label {
  color: var(--cc-orange-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin: 1.25rem 0 0.35rem;
  font-weight: 700;
}
.footer__contact-link { color: var(--dark-text); text-decoration: none; border-bottom: 1px solid transparent; transition: color 150ms var(--ease), border-color 150ms var(--ease); }
.footer__contact-link:hover { color: var(--cc-orange); border-bottom-color: var(--cc-orange); }
.footer__hours { color: rgba(240,239,235,0.7); font-size: 13px; line-height: 1.55; margin-top: 0.5rem; }

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-orange-soft);
  margin: 0 0 1.25rem;
}
.footer__nav-list { list-style: none; padding: 0; margin: 0; }
.footer__nav-list li { margin: 0 0 0.65rem; }
.footer__nav-link {
  color: rgba(240,239,235,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms var(--ease), padding-left 150ms var(--ease);
  display: inline-block;
}
.footer__nav-link:hover { color: var(--cc-orange); padding-left: 4px; }

.footer__cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cc-border-dark);
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.footer__cta-eyebrow { color: var(--cc-orange-soft); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem; }
.footer__cta-title { color: var(--cc-white); font-size: 20px; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.25; }
.footer__cta-text { color: rgba(240,239,235,0.75); font-size: 14px; margin-bottom: 1.25rem; line-height: 1.55; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  flex-wrap: wrap; gap: 1rem;
}
.footer__legal { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; color: rgba(240,239,235,0.6); font-size: 13px; }
.footer__legal p { margin: 0; }
.footer__legal a { color: rgba(240,239,235,0.6); text-decoration: none; transition: color 150ms var(--ease); font-size: 13px; }
.footer__legal a:hover { color: var(--cc-orange); }
.footer__social { display: flex; align-items: center; gap: 0.5rem; }
.footer__social-link {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--cc-border-dark);
  border-radius: 50%;
  color: rgba(240,239,235,0.7);
  text-decoration: none; font-size: 12px; font-weight: 700;
  transition: all 150ms var(--ease);
}
.footer__social-link:hover { color: var(--cc-white); background: var(--cc-orange); border-color: var(--cc-orange); }

@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* ---------- Cookie consent ---------- */
.cookie-consent {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 480px;
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 97;
  box-shadow: var(--shadow-lift);
}
.cookie-consent__content { display: flex; flex-direction: column; gap: 1rem; }
.cookie-consent__text { color: var(--cc-ink); font-size: 14px; line-height: 1.55; margin: 0; }
.cookie-consent__actions { display: flex; gap: 0.5rem; }

/* ---------- Responsive grid utilities ---------- */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--gap-sm { gap: 1rem; }
.grid--gap-lg { gap: 3rem; }
.grid--mt { margin-top: 3rem; }
.grid--align-center { align-items: center; }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--gap-lg { gap: 2rem; }
}

/* ---------- Logo switching (light/dark sections) ---------- */
.header__logo .logo-image--light { display: block; }
.header__logo .logo-image--dark  { display: none;  }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--from-left  { transform: translateX(-24px); }
.reveal--from-right { transform: translateX(24px); }
.reveal--from-left.is-visible, .reveal--from-right.is-visible { transform: translateX(0); }
.reveal--stagger-1 { transition-delay: 0.1s; }
.reveal--stagger-2 { transition-delay: 0.2s; }
.reveal--stagger-3 { transition-delay: 0.3s; }
.hero-reveal { animation: heroReveal 1s var(--ease) forwards; opacity: 0; transform: translateY(30px); }
.hero-reveal--delay-1 { animation-delay: 0.15s; }
.hero-reveal--delay-2 { animation-delay: 0.3s; }
.hero-reveal--delay-3 { animation-delay: 0.45s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 2.5rem 0 0; }
.faq details {
  background: var(--cc-cream);
  border: 1px solid var(--cc-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 0.75rem;
  transition: border-color 200ms var(--ease);
}
.faq details[open] { border-color: var(--cc-orange); }
.faq summary {
  color: var(--cc-ink); font-size: 17px; font-weight: 700;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--cc-orange); font-size: 24px; font-weight: 400;
  transition: transform 200ms var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--cc-grey); font-size: 15px; line-height: 1.65; margin: 0.75rem 0 0; }

/* ---------- Tag chips ---------- */
.tag {
  display: inline-block;
  background: var(--cc-cream);
  color: var(--cc-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}


/* ---------- Footer buttons on dark background ---------- */
.footer .btn--ghost,
.footer__cta .btn--ghost {
  color: var(--cc-white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}
.footer .btn--ghost:hover,
.footer__cta .btn--ghost:hover {
  color: var(--cc-ink-deep);
  background: var(--cc-white);
  border-color: var(--cc-white);
}


/* Partner logos. Brand-faithful: SVGs render white via currentColor; PNGs keep own colours */
.partner img { height: 56px; width: auto; max-width: 100%; opacity: 1; transition: transform 200ms ease; object-fit: contain; }
.partner:hover img { transform: translateY(-2px); }
.partner { color: #FFFFFF; min-height: 64px; }

/* =============================================================
   WPForms style override. Match Create Cuts design system
   ============================================================= */

/* Container & field spacing */
.wpforms-container,
div.wpforms-container-full {
  max-width: 100% !important;
  margin: 0 !important;
  font-family: var(--font-body) !important;
}
.wpforms-field {
  padding: 0 0 1.25rem 0 !important;
}
.wpforms-field-label,
.wpforms-field label {
  color: var(--cc-ink) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 0.5rem !important;
  text-transform: none !important;
}
.wpforms-required-label,
.wpforms-field .required { color: var(--cc-orange) !important; }

/* Inputs */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="number"],
.wpforms-container input[type="url"],
.wpforms-container select,
.wpforms-container textarea {
  width: 100% !important;
  background: var(--cc-sand) !important;
  color: var(--cc-ink) !important;
  border: 1px solid var(--cc-border) !important;
  border-radius: var(--radius) !important;
  padding: 14px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease) !important;
}
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
  outline: none !important;
  border-color: var(--cc-orange) !important;
  box-shadow: 0 0 0 3px rgba(239, 75, 55, 0.12) !important;
}
.wpforms-container textarea { min-height: 120px !important; resize: vertical !important; }

/* Placeholder */
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder { color: var(--cc-grey) !important; opacity: 0.7 !important; }

/* Descriptions */
.wpforms-field-description,
.wpforms-field-sublabel {
  color: var(--cc-grey) !important;
  font-size: 13px !important;
  margin-top: 0.35rem !important;
}

/* Select dropdown chevron */
.wpforms-container select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27%3E%3Cpath fill=%27%23243036%27 d=%27M7 10l5 5 5-5z%27/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 20px !important;
  padding-right: 40px !important;
}

/* Checkboxes + radios */
.wpforms-container input[type="checkbox"],
.wpforms-container input[type="radio"] {
  accent-color: var(--cc-orange) !important;
  width: auto !important;
  margin-right: 0.5rem !important;
}
.wpforms-field-checkbox label,
.wpforms-field-radio label { display: flex !important; align-items: flex-start !important; gap: 0.5rem !important; font-weight: 500 !important; font-size: 15px !important; }

/* SUBMIT BUTTON. Match .btn--primary */
.wpforms-container .wpforms-submit-container,
.wpforms-container button[type="submit"],
.wpforms-container .wpforms-submit,
.wpforms-container input[type="submit"] {
  margin-top: 0.5rem !important;
}
.wpforms-container button[type="submit"].wpforms-submit,
.wpforms-container button.wpforms-submit,
.wpforms-container .wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 200px !important;
  padding: 14px 28px !important;
  background: var(--cc-orange) !important;
  background-color: var(--cc-orange) !important;
  color: var(--cc-white) !important;
  border: 2px solid var(--cc-orange) !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  min-height: 48px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(239, 75, 55, 0.25) !important;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease) !important;
  text-shadow: none !important;
}
.wpforms-container button.wpforms-submit:hover,
.wpforms-container button.wpforms-submit:focus,
.wpforms-container .wpforms-submit:hover,
.wpforms-container .wpforms-submit:focus {
  background: var(--cc-orange-deep) !important;
  background-color: var(--cc-orange-deep) !important;
  border-color: var(--cc-orange-deep) !important;
  color: var(--cc-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 75, 55, 0.3) !important;
}

/* Error messages */
.wpforms-error-container,
label.wpforms-error {
  color: var(--cc-orange-deep) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-top: 0.35rem !important;
}
.wpforms-container .wpforms-error { border-color: var(--cc-orange-deep) !important; }

/* Confirmation message */
.wpforms-confirmation-container,
.wpforms-confirmation-container-full {
  background: var(--cc-sand) !important;
  border: 1px solid var(--cc-orange-soft) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2rem !important;
  color: var(--cc-ink) !important;
  font-size: 16px !important;
}
.wpforms-confirmation-container p { color: var(--cc-ink) !important; margin: 0 !important; }

/* Field rows. Horizontal pairs */
.wpforms-field-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
@media (max-width: 560px) { .wpforms-field-row { grid-template-columns: 1fr !important; } }

/* WPForms in dark containers */
.dark-section .wpforms-field-label,
.section--dark .wpforms-field-label { color: var(--cc-white) !important; }


/* Mobile logo size */
@media (max-width: 1024px) { .header__logo img { height: 48px; } }
@media (max-width: 560px)  { .header__logo img { height: 40px; } }

/* ---------- What Sets Us Apart ---------- */
.apart-section {
    background: #0a0a0a; color: var(--cc-white);
    position: relative; overflow: hidden;
    padding: clamp(60px, 9vw, 120px) 0;
    perspective: 1600px;
}
@media (min-width: 1025px) {
    .apart-section { min-height: 100vh; display: flex; align-items: center; }
}
.apart-progress {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #ff9a6b, #e85d3a, #c8401e);
    transform: scaleX(0); transform-origin: 0 50%;
    z-index: 4;
    box-shadow: 0 0 12px rgba(232,93,58,0.6);
}
.apart-bg-glow {
    position: absolute; inset: -20%;
    background:
        radial-gradient(ellipse 60% 40% at 75% 30%, rgba(232, 93, 58, 0.32), transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232, 93, 58, 0.18), transparent 60%);
    filter: blur(20px);
    animation: apartGlow 9s ease-in-out infinite alternate;
    pointer-events: none;
}
.apart-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
    pointer-events: none;
}
@keyframes apartGlow {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.85; }
    50%  { transform: translate(2%, -1%) scale(1.05); opacity: 1; }
    100% { transform: translate(-2%, 1%) scale(0.98); opacity: 0.9; }
}
.apart-section .container { position: relative; z-index: 1; }

.apart-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}
@media (max-width: 1024px) { .apart-layout { grid-template-columns: 1fr; } }

/* Display (heading) column */
.apart-display {
    position: sticky; top: 110px;
    padding-top: 1rem;
}
@media (max-width: 1024px) { .apart-display { position: static; order: -1; padding-top: 0; margin-bottom: 1rem; } }
.apart-eyebrow { color: var(--cc-orange); letter-spacing: 0.2em; }
.apart-heading {
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.02;
    margin: 1rem 0 1.5rem;
    color: var(--cc-white);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.apart-heading__word {
    color: var(--cc-orange);
}
.apart-heading__scribble {
    position: absolute;
    left: -8%; right: -8%; bottom: -0.15em;
    width: 116%; height: 0.45em;
    overflow: visible;
}
.apart-heading__scribble path {
    stroke-dasharray: 100; stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.7, 0, 0.3, 1) 0.6s;
}
.apart-display.is-visible .apart-heading__scribble path { stroke-dashoffset: 0; }
.apart-lede { color: #cfcfcf; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; margin: 0 0 2rem; max-width: 440px; }


/* Cards grid */
.apart-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
@media (max-width: 560px) { .apart-cards { grid-template-columns: 1fr; } }

.apart-card {
    position: relative;
    padding: 2.25rem 1.75rem 1.75rem;
    border-radius: 20px;
    min-height: 200px;
    display: flex; flex-direction: column; justify-content: flex-start; gap: 0.4rem; padding-top: 3rem;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: box-shadow 0.45s var(--ease), border-color 0.3s ease;
    will-change: transform;
}
.apart-card__num {
    position: absolute; top: 1.25rem; left: 1.5rem;
    font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
    opacity: 0.55;
}
.apart-card h3 { font-size: 20px; line-height: 1.25; margin: 0 0 0.6rem; font-weight: 700; }
.apart-card p  { font-size: 14.5px; line-height: 1.55; margin: 0; opacity: 0.9; }

.apart-card--dark {
    background: linear-gradient(145deg, #181818, #111);
    color: var(--cc-white);
    border: 1px solid rgba(255,255,255,0.07);
}
.apart-card--dark::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232,93,58,0.18), transparent 55%);
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
}
.apart-card--dark:hover { border-color: rgba(232, 93, 58, 0.5); }
.apart-card--dark:hover::before { opacity: 1; }

.apart-card--orange {
    background: linear-gradient(140deg, #ff6b3d 0%, #e85d3a 45%, #c8401e 100%);
    color: var(--cc-white);
    box-shadow: 0 20px 40px -20px rgba(232, 93, 58, 0.45);
}
.apart-card--orange h3, .apart-card--orange p { color: var(--cc-white); }
.apart-card__shimmer {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
}
.apart-card.is-visible .apart-card__shimmer { animation: apartShimmer 2.4s ease-in-out 1.2s 1; }
@keyframes apartShimmer {
    to { transform: translateX(120%); }
}

.apart-card:hover {
    box-shadow: 0 30px 50px -25px rgba(0,0,0,0.7), 0 0 0 1px rgba(232,93,58,0.35);
}
.apart-card--featured {
    animation: apartPulse 3.2s ease-in-out 1.8s infinite;
}
@keyframes apartPulse {
    0%, 100% { box-shadow: 0 20px 40px -20px rgba(232, 93, 58, 0.45), 0 0 0 0 rgba(232, 93, 58, 0.45); }
    50%      { box-shadow: 0 20px 40px -20px rgba(232, 93, 58, 0.65), 0 0 0 14px rgba(232, 93, 58, 0); }
}


@media (prefers-reduced-motion: reduce) {
    .reveal--tile, .apart-heading__scribble path, .apart-arrow path, .apart-card__shimmer, .apart-card--featured, .apart-bg-glow {
        animation: none !important; transition: opacity 0.3s ease !important; transform: none !important;
        stroke-dashoffset: 0 !important;
    }
}

