:root {
      --bg-body: #ffffff;
      --bg-secondary: #f8f7f5;
      --bg-header: #454545;
      --text-primary: #111111;
      --text-secondary: #666666;
      --border-light: #e8e5e0;
      --container-padding: 8vw;
      --section-gap: 130px;
    }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
      margin: 0;
      background-color: var(--bg-body);
      color: var(--text-primary);
      font-family: "Manrope", sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }
a, a:visited, a:active {
      text-decoration: none !important;
      color: inherit;
      transition: 0.25s ease;
    }
.hero {
      height: calc(100vh - 88px);
      min-height: 560px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
.hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("https://enmassebespoke.com/wp-content/uploads/2025/04/DC4813-021-scaled.jpg");
      background-size: cover;
      background-position: center;
      animation: kenburns 24s ease-out infinite alternate;
      z-index: 1;
    }
@keyframes kenburns {
      0%   { transform: scale(1); }
      100% { transform: scale(1.06); }
    }
.hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
      z-index: 2;
    }
.hero-content {
      position: relative;
      z-index: 3;
      padding: 0 var(--container-padding) 56px;
      color: #fff;
      max-width: 780px;
    }
@keyframes hero-rise {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
.hero-eyebrow, .hero-content h1, .hero-content p, .btn-outline-hero {
      opacity: 0;
      animation: hero-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
.hero-eyebrow { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.3s; }
.hero-content p { animation-delay: 0.5s; }
.btn-outline-hero { animation-delay: 0.68s; }
@media (prefers-reduced-motion: reduce) {
      .hero-eyebrow, .hero-content h1, .hero-content p, .btn-outline-hero {
        opacity: 1; animation: none;
      }
    }
.hero-eyebrow {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: rgba(255,255,255,0.5);
      font-weight: 600;
      display: block;
      margin-bottom: 18px;
    }
.hero-content h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-style: italic;
      font-weight: 400;
      line-height: 1.08;
      margin: 0 0 28px 0;
      letter-spacing: -0.5px;
    }
.hero-content p {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      font-weight: 300;
      line-height: 1.8;
      margin: 0 0 40px 0;
      max-width: 380px;
    }
.btn-outline-hero {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.45);
      color: rgba(255,255,255,0.9) !important;
      padding: 14px 36px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      font-weight: 600;
      transition: border-color 0.3s, background-color 0.3s;
    }
.btn-outline-hero:hover {
      border-color: #fff;
      background-color: rgba(255,255,255,0.08);
    }
.manifesto {
      padding: 110px var(--container-padding);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      border-bottom: 1px solid var(--border-light);
    }
.manifesto-left {}
.manifesto-eyebrow {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      font-weight: 600;
      display: block;
      margin-bottom: 22px;
    }
.manifesto h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.1;
      color: var(--text-primary);
      margin: 0;
      letter-spacing: -0.5px;
    }
.manifesto-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
.manifesto-right p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-secondary);
      margin: 0;
    }
.btn-line {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-primary) !important;
      align-self: flex-start;
      transition: gap 0.25s;
    }
.btn-line::after { content: "\2192"; font-size: 14px; }
.btn-line:hover { gap: 16px; }
.stats-strip {
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      padding: 64px var(--container-padding);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      background: var(--bg-body);
    }
.stat-item { flex: 1; padding: 0 40px; text-align: center; }
.stat-divider {
      width: 1px;
      height: 48px;
      background: var(--border-light);
      flex-shrink: 0;
    }
.stat-number {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 3vw, 3rem);
      color: var(--text-primary);
      display: block;
      font-weight: 400;
      margin-bottom: 10px;
      line-height: 1;
    }
.stat-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      display: block;
      font-weight: 600;
    }
.gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 320px 320px;
      gap: 2px;
    }
.gallery-item {
      position: relative;
      overflow: hidden;
      background: #ede9e3;
    }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
.gallery-item:hover img { transform: scale(1.04); }
.work-section {
      padding: 90px var(--container-padding);
      border-bottom: 1px solid var(--border-light);
    }
.work-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 48px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-light);
    }
.work-header h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 400;
      font-style: italic;
      color: var(--text-primary);
      margin: 0;
    }
.work-header a {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-secondary) !important;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s, gap 0.25s;
    }
.work-header a::after { content: "\2192"; }
.work-header a:hover { color: var(--text-primary) !important; gap: 12px; }
.work-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
.work-card {
      position: relative;
      overflow: hidden;
      display: block;
      aspect-ratio: 3/4;
    }
.work-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
.work-card:hover img { transform: scale(1.04); }
.work-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
      transition: background 0.35s ease;
    }
.work-card:hover .work-card-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.12) 100%);
    }
.work-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 24px 12px;
      z-index: 2;
    }
.work-card-title {
      display: block;
      font-family: "Playfair Display", serif;
      font-size: 20px;
      font-weight: 400;
      font-style: italic;
      color: #ffffff;
      margin-bottom: 6px;
    }
.work-card-sub {
      display: block;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
.work-card:hover .work-card-sub {
      opacity: 1;
      transform: translateY(0);
    }
.featured-commission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 640px;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }
.featured-image {
      position: relative;
      overflow: hidden;
    }
.featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }
.featured-commission:hover .featured-image img {
      transform: scale(1.03);
    }
.featured-content {
      padding: 80px var(--container-padding);
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 1px solid var(--border-light);
      background-color: var(--bg-secondary);
    }
.featured-label {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 18px;
      display: block;
    }
.featured-content h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 400;
      font-style: italic;
      color: var(--text-primary);
      margin: 0 0 10px 0;
      line-height: 1.1;
    }
.featured-subtitle {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-secondary);
      font-weight: 500;
      margin-bottom: 28px;
      display: block;
    }
.featured-content p {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--text-secondary);
      margin: 0 0 32px 0;
      max-width: 440px;
    }
.featured-details {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px 0;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 32px;
    }
.detail-row {
      display: flex;
      gap: 20px;
      font-size: 13px;
    }
.detail-key {
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 10px;
      color: var(--text-secondary);
      min-width: 80px;
      padding-top: 2px;
    }
.detail-val {
      color: var(--text-primary);
      font-weight: 300;
    }
.view-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--text-primary) !important;
      transition: gap 0.25s;
    }
.view-link::after { content: "\2192"; font-size: 14px; }
.view-link:hover { gap: 16px; }
.partners-section {
      padding: 72px var(--container-padding);
      border-bottom: 1px solid var(--border-light);
      background-color: var(--bg-secondary);
    }
.partners-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      font-weight: 600;
      display: block;
      text-align: center;
      margin-bottom: 48px;
    }
.partner-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 44px 72px;
    }
.partner-logo {
      height: 20px;
      width: auto;
      filter: brightness(0);
      opacity: 0.3;
      transition: opacity 0.25s;
    }
/* These logos' artwork proportions render visually smaller — balance them */
.partner-logo[alt="Sub-Zero"],
.partner-logo[alt="Wolf"],
.partner-logo[alt="Quooker"],
.partner-logo[alt="Fisher & Paykel"],
.partner-logo[alt="V-ZUG"],
.partner-logo[alt="Buster + Punch"] {
      height: 28px;
    }
.partner-logo:hover { opacity: 0.65; }
.final-cta {
      background-color: var(--bg-header);
      text-align: center;
      padding: 130px var(--container-padding);
    }
.final-cta-eyebrow {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: rgba(255,255,255,0.35);
      font-weight: 600;
      display: block;
      margin-bottom: 22px;
    }
.final-cta h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 400;
      font-style: italic;
      color: #ffffff;
      margin: 0 auto 12px auto;
      line-height: 1.15;
      max-width: 640px;
    }
.final-cta-sub {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      margin: 0 auto 52px auto;
      max-width: 380px;
      line-height: 1.8;
    }
.btn-outline-light {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.4);
      color: rgba(255,255,255,0.85) !important;
      padding: 14px 36px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      font-weight: 600;
      transition: border-color 0.3s, color 0.3s, background-color 0.3s;
    }
.btn-outline-light:hover {
      border-color: #fff;
      color: #fff !important;
      background-color: rgba(255,255,255,0.06);
    }
@media (max-width: 1100px) {
.gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
.gallery-item { height: 280px; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 360px; }
.gallery-item:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 900px) {
.manifesto { grid-template-columns: 1fr; gap: 40px; }
.featured-commission { grid-template-columns: 1fr; }
.featured-image { height: 420px; }
.featured-content { border-left: none; border-top: 1px solid var(--border-light); }
.work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 640px) {
:root { --container-padding: 6vw; }
.stats-strip { flex-direction: column; }
.stat-item { border-right: none; border-bottom: 1px solid var(--border-light); padding: 40px; }
.stat-item:last-child { border-bottom: none; }
.work-grid { grid-template-columns: 1fr; gap: 20px; }
.gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
.gallery-item,
      .gallery-item:nth-child(1),
      .gallery-item:nth-child(4) { grid-column: span 1; height: 260px; }
}

/* ── Statement ── */
.statement {
      padding: 150px var(--container-padding);
      text-align: center;
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border-light);
    }
.statement-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--text-secondary);
      font-weight: 600;
      display: block;
      margin-bottom: 30px;
    }
.statement h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.4rem, 5.2vw, 4.4rem);
      font-weight: 400;
      line-height: 1.12;
      color: var(--text-primary);
      margin: 0 0 28px;
      letter-spacing: -0.5px;
    }
.statement-sub {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.9;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto 36px;
    }
.statement .btn-line { margin-top: 0; }

/* ── Scroll reveals (classes applied by JS; no JS = nothing hidden) ── */
.will-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }
.will-reveal.is-revealed {
      opacity: 1;
      transform: translateY(0);
    }
