:root {
      --bg-body: #ffffff;
      --bg-secondary: #f8f7f5;
      --bg-header: #454545;
      --text-primary: #111111;
      --text-secondary: #666666;
      --border-light: #e8e5e0;
      --container-padding: 8vw;
      --section-gap: 140px;
    }
*, *::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);
      width: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
    }
.hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("https://enmassebespoke.com/wp-content/uploads/2025/03/1st-REVELL-scaled.jpg");
      background-size: cover;
      background-position: center 30%;
      z-index: 1;
    }
.hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.1) 100%
      );
      z-index: 2;
    }
.hero-content {
      position: relative;
      z-index: 3;
      padding: 0 var(--container-padding) 32px;
      color: #fff;
      max-width: 900px;
    }
.hero-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 20px;
      display: block;
      font-weight: 500;
    }
.hero-content h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(3.2rem, 6vw, 5.5rem);
      margin: 0 0 28px 0;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.5px;
      line-height: 1.08;
    }
.hero-meta {
      display: flex;
      gap: 32px;
      align-items: center;
    }
.hero-meta span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.5);
      font-weight: 500;
    }
.hero-meta .divider {
      width: 1px;
      height: 14px;
      background: rgba(255,255,255,0.25);
    }
.container {
      padding: 0 var(--container-padding);
      max-width: 1800px;
      margin: 0 auto;
    }
section {
      padding: var(--section-gap) 0;
      position: relative;
    }
.section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      margin-bottom: 18px;
      display: block;
      font-weight: 600;
    }
h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      line-height: 1.15;
      color: var(--text-primary);
      margin-bottom: 28px;
      font-weight: 400;
    }
p {
      font-size: 15px;
      color: var(--text-secondary);
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 20px;
    }
.btn-outline {
      display: inline-block;
      padding: 16px 44px;
      border: 1px solid currentColor;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      background: transparent;
      transition: background 0.25s, color 0.25s, border-color 0.25s;
      font-family: "Manrope", sans-serif;
      cursor: pointer;
    }
.btn-outline:hover {
      background: var(--text-primary);
      color: #fff !important;
      border-color: var(--text-primary);
    }
.btn-outline--light {
      color: #fff !important;
      border-color: rgba(255,255,255,0.6);
    }
.btn-outline--light:hover {
      background: #fff !important;
      color: var(--text-primary) !important;
      border-color: #fff;
    }
#intro {
      background: var(--bg-secondary);
      padding: var(--section-gap) 0;
    }
.intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }
#intro h2 {
      font-style: italic;
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      line-height: 1.1;
      margin-bottom: 0;
    }
#intro p { max-width: 520px; }
#process { background: var(--bg-body); }
.process-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
.process-item {
      display: grid;
      grid-template-columns: 100px 1fr 1fr;
      gap: 60px;
      align-items: start;
      padding: 64px 0;
      border-bottom: 1px solid var(--border-light);
    }
.process-item:first-child {
      border-top: 1px solid var(--border-light);
    }
.process-number {
      font-family: "Playfair Display", serif;
      font-size: clamp(3.5rem, 5vw, 5rem);
      font-weight: 400;
      color: var(--border-light);
      line-height: 1;
      padding-top: 4px;
    }
.process-heading {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.2;
      margin: 0 0 4px 0;
    }
.process-heading em {
      font-style: italic;
    }
.process-phase {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      font-weight: 600;
      display: block;
      margin-top: 8px;
    }
.process-body {
      padding-top: 6px;
    }
.process-body p {
      max-width: 480px;
      margin-bottom: 0;
    }
#clients { background: var(--bg-secondary); }
#clients h2 { font-style: italic; }
.clients-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 72px;
    }
.client-card {}
.client-card-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      margin-bottom: 32px;
    }
.client-card .section-label {
      margin-bottom: 14px;
    }
.client-card h3 {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.3rem, 1.8vw, 1.6rem);
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.2;
      margin: 0 0 18px 0;
    }
.client-card p {
      max-width: none;
      margin-bottom: 0;
    }
.client-card a {
      color: var(--text-primary);
      border-bottom: 1px solid var(--border-light);
      transition: border-color 0.2s;
    }
.client-card a:hover {
      border-color: var(--text-primary);
    }
#commitment { background: var(--bg-body); }
.commitment-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
      margin-bottom: 100px;
    }
#commitment h2 { font-style: italic; margin-bottom: 0; }
#commitment .intro-copy p { max-width: 500px; margin-bottom: 0; }
.commitment-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--border-light);
      border-left: 1px solid var(--border-light);
    }
.commitment-item {
      padding: 48px 40px;
      border-right: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }
.commitment-item .section-label { margin-bottom: 16px; }
.commitment-item p {
      max-width: none;
      margin: 0;
      font-size: 14px;
      line-height: 1.8;
    }
.pull-quote-section {
      background: var(--bg-header);
      padding: 120px 0;
    }
.pull-quote-inner {
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }
.pull-quote-inner blockquote {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.6rem, 2.8vw, 2.4rem);
      font-style: italic;
      font-weight: 400;
      color: #ffffff;
      line-height: 1.35;
      margin: 0 0 40px 0;
      padding: 0;
    }
.pull-quote-inner cite {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: rgba(255,255,255,0.4);
      font-style: normal;
      font-weight: 600;
    }
#faq { background: var(--bg-secondary); }
.faq-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 100px;
      align-items: start;
    }
#faq h2 { font-style: italic; margin-bottom: 0; }
.faq-list { padding-top: 6px; }
.faq-item {
      border-bottom: 1px solid var(--border-light);
      padding: 32px 0;
    }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
      font-family: "Playfair Display", serif;
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.35;
      margin: 0 0 14px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }
.faq-question svg {
      flex-shrink: 0;
      margin-top: 2px;
      transition: transform 0.3s ease;
    }
.faq-item.open .faq-question svg {
      transform: rotate(45deg);
    }
.faq-answer {
      display: none;
    }
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
      max-width: none;
      margin: 0;
    }
.final-cta {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
    }
.final-cta-bg {
      position: absolute;
      inset: 0;
      background-image: url("https://enmassebespoke.com/wp-content/uploads/2025/04/DC4813-003-scaled.jpg");
      background-size: cover;
      background-position: center 40%;
      z-index: 1;
    }
.final-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.25) 60%,
        rgba(0,0,0,0.05) 100%
      );
      z-index: 2;
    }
.final-cta-content {
      position: relative;
      z-index: 3;
      padding: 0 var(--container-padding);
      max-width: 680px;
      color: #fff;
    }
.final-cta-content .section-label {
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
    }
.final-cta-content h2 {
      color: #fff;
      font-style: italic;
      font-size: clamp(2rem, 3.8vw, 3.2rem);
      margin-bottom: 24px;
    }
.final-cta-content p {
      color: rgba(255,255,255,0.65);
      max-width: 440px;
      margin-bottom: 48px;
    }
@media (max-width: 1100px) {
.commitment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
:root { --section-gap: 100px; }
.intro-grid,
      .commitment-intro,
      .faq-grid { grid-template-columns: 1fr; gap: 48px; }
.clients-grid { grid-template-columns: 1fr 1fr; }
.process-item {
        grid-template-columns: 60px 1fr;
        gap: 32px;
      }
.process-item .process-body {
        grid-column: 2;
      }
.process-heading { grid-column: 2; }
}
@media (max-width: 640px) {
:root {
        --container-padding: 6vw;
        --section-gap: 80px;
      }
.clients-grid { grid-template-columns: 1fr; }
.commitment-grid { grid-template-columns: 1fr; }
.process-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 48px 0;
      }
.process-number { display: none; }
}
