: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/04/LAWTON-2-copy-1-scaled.jpg");
      background-size: cover;
      background-position: center 40%;
      z-index: 1;
    }
.hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.2) 55%,
        rgba(0,0,0,0.05) 100%
      );
      z-index: 2;
    }
.hero-content {
      position: relative;
      z-index: 3;
      padding: 0 var(--container-padding) 32px;
      color: #fff;
      max-width: 860px;
    }
.hero-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: rgba(255,255,255,0.5);
      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; }
.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;
    }
.btn-line {
      display: inline-block;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: var(--text-primary) !important;
      border-bottom: 1px solid currentColor;
      padding-bottom: 5px;
      font-weight: 600;
      transition: opacity 0.2s;
    }
.btn-line:hover { opacity: 0.45; }
#intro { background: var(--bg-secondary); }
.intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }
#intro h2 {
      font-style: italic;
      font-size: clamp(2.4rem, 4.2vw, 4rem);
      line-height: 1.1;
      margin-bottom: 0;
    }
#intro p { max-width: 540px; }
.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, 2.8vw, 2.8rem);
      color: var(--text-primary);
      display: block;
      font-weight: 400;
      margin-bottom: 8px;
      line-height: 1;
    }
.stat-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--text-secondary);
      display: block;
      font-weight: 600;
    }
.story-section { background: var(--bg-body); padding: 0; }
.story-section.alt { background: var(--bg-secondary); }
.story-pair {
      display: grid;
      grid-template-columns: 55fr 45fr;
      min-height: 620px;
    }
.story-pair.reverse { grid-template-columns: 45fr 55fr; }
.story-pair.reverse .story-image { order: 2; }
.story-pair.reverse .story-text { order: 1; }
.story-image {
      position: relative;
      overflow: hidden;
      background: #ede9e3;
    }
.story-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
.story-section:hover .story-image img { transform: scale(1.04); }
.story-text {
      padding: 80px 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
.story-year {
      font-family: "Playfair Display", serif;
      font-size: clamp(4rem, 6vw, 7rem);
      font-weight: 400;
      color: var(--border-light);
      line-height: 1;
      margin-bottom: 32px;
      display: block;
    }
.story-text h2 {
      font-style: italic;
      font-size: clamp(1.7rem, 2.4vw, 2.4rem);
      margin-bottom: 20px;
    }
.story-text p { max-width: 460px; }
.story-text p a {
      color: var(--text-primary);
      border-bottom: 1px solid var(--border-light);
      transition: border-color 0.2s;
    }
.story-text p a:hover { border-color: var(--text-primary); }
.pull-quote-section {
      background: var(--bg-header);
      padding: 120px 0;
    }
.pull-quote-inner {
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }
.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;
    }
#values { background: var(--bg-secondary); }
#values h2 { font-style: italic; }
.values-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: end;
      margin-bottom: 80px;
    }
.values-intro p { max-width: 500px; margin-bottom: 0; }
.values-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);
    }
.value-item {
      padding: 48px 40px;
      border-right: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }
.value-item .section-label { margin-bottom: 16px; }
.value-item p {
      max-width: none;
      margin: 0;
      font-size: 14px;
      line-height: 1.85;
    }
.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/03/2nd-PARKER-scaled.jpg");
      background-size: cover;
      background-position: center;
      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) {
.values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
:root { --section-gap: 100px; }
.intro-grid,
      .values-intro { grid-template-columns: 1fr; gap: 48px; }
.story-pair,
      .story-pair.reverse {
        grid-template-columns: 1fr;
        min-height: auto;
      }
.story-pair.reverse .story-image,
      .story-pair.reverse .story-text { order: unset; }
.story-image { height: 380px; position: relative; }
.story-image img { position: absolute; }
.story-text { padding: 60px var(--container-padding); }
}
@media (max-width: 640px) {
:root { --container-padding: 6vw; --section-gap: 80px; }
.stat-item { padding: 0 16px; }
.story-text { padding: 48px 6vw; }
.story-year { font-size: 4rem; }
.values-grid { grid-template-columns: 1fr; }
}
