/* === GLOBAL BASE STYLES (FORCED) === */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

main {
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
}

.container {
  margin-inline: auto;
}

body {
  overflow-x: hidden;
}

section {
  width: 100%;
}

.utility-shell {
  width: min(980px, calc(100% - 24px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.utility-page--with-header .utility-shell {
  padding-top: calc(
    28px +
    var(
      --utility-chrome-offset,
      calc(var(--spacing-6, 48px) + var(--spacing-4, 32px))
    )
  );
}

@media (max-width: 720px) {
  .utility-shell {
    width: min(100% - 16px, 980px);
    padding-top: 16px;
    padding-bottom: 36px;
  }

  .utility-page--with-header .utility-shell {
    padding-top: calc(
      16px +
      var(
        --utility-chrome-offset-mobile,
        calc(var(--spacing-4, 32px) + var(--spacing-3, 24px))
      )
    );
  }
}

/* --- SVG icons (local sprite) --- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

/* --- index.html --- */
:root {
      --bg-color: #ffffff;
      --surface-color: #f8f9fa;
      --surface-dark: #1f2937;
      --text-main: #111827;
      --text-muted: #4b5563;
      --text-inverse: #f9fafb;
      --border-color: #e5e7eb;
      --accent-emerald: #059669;
      --accent-emerald-hover: #047857;
      --radius-soft: 0.5rem;
      --space-base: 10px;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: var(--font-sans);
      color: var(--text-main);
      background-color: var(--bg-color);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .serif-accent {
      font-family: var(--font-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--text-muted);
    }
    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: calc(var(--space-base) * 2);
    }
    p {
      margin-bottom: calc(var(--space-base) * 2);
    }
    /* CTA Styles */
    .cta-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: calc(var(--space-base) * 3);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      font-weight: 700;
      border-radius: var(--radius-soft);
      transition: all 0.2s ease;
      cursor: pointer;
      text-align: center;
    }
    .btn-primary {
      background-color: var(--text-main);
      color: var(--bg-color);
      border: 2px solid var(--text-main);
    }
    .btn-primary:hover {
      background-color: transparent;
      color: var(--text-main);
    }
    .btn-secondary {
      background-color: transparent;
      color: var(--text-main);
      border: 2px solid var(--border-color);
    }
    .btn-secondary:hover {
      border-color: var(--text-main);
    }
    /* Sections Rhythm */
    section {
      padding: calc(var(--space-base) * 8) 0;
    }
    /* Hero Split Offset */
    .hero-section {
      position: relative;
      background-color: var(--surface-color);
      padding: calc(var(--space-base) * 10) 0 calc(var(--space-base) * 14) 0;
      margin-bottom: calc(var(--space-base) * 8);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }
    .hero-content {
      z-index: 2;
      max-width: 600px;
    }
    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: -0.02em;
    }
    .hero-lead {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 480px;
    }
    .hero-media-wrapper {
      position: relative;
      z-index: 1;
    }
    .hero-img {
      border-radius: var(--radius-soft);
      width: 100%;
      aspect-ratio: 4/5;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    @media(min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }
      .hero-media-wrapper {
        margin-bottom: -15%;
        margin-right: -5%;
      }
      .hero-content {
        padding-right: 2rem;
      }
    }
    /* Narrative Section */
    .narrative-section {
      background-color: var(--bg-color);
    }
    .narrative-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .inset-framed-heading {
      display: inline-block;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-soft);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2rem;
      color: var(--text-muted);
    }
    .narrative-title {
      font-size: 2.25rem;
    }
    /* Mixed Cards Rows (Categories) */
    .categories-section {
      background-color: var(--surface-color);
    }
    .categories-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .category-card {
      background: var(--bg-color);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-soft);
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .category-card:hover {
      transform: translateY(-4px);
    }
    .card-img-wrapper {
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .category-card img {
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease;
    }
    .category-card:hover img {
      transform: scale(1.05);
    }
    .card-content {
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .card-title {
      margin: 0;
      font-size: 1.25rem;
    }
    .card-link {
      font-weight: 700;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s;
    }
    .category-card:hover .card-link {
      border-color: var(--text-main);
    }
    @media(min-width: 768px) {
      .categories-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    /* Asymmetrical Feature Band */
    .feature-band {
      background-color: var(--bg-color);
    }
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    .feature-text {
      padding: 2rem 0;
    }
    .feature-title {
      font-size: 2.5rem;
    }
    .feature-image-wrapper img {
      border-radius: var(--radius-soft);
      aspect-ratio: 4/3;
    }
    @media(min-width: 900px) {
      .feature-grid {
        grid-template-columns: 5fr 7fr;
      }
      .feature-text {
        padding-right: 3rem;
      }
    }
    /* Purposeful Studio / Contact Box */
    .studio-section {
      background-color: var(--surface-dark);
      color: var(--text-inverse);
      padding: calc(var(--space-base) * 10) 0;
      margin-top: calc(var(--space-base) * 4);
    }
    .studio-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .studio-heading h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .studio-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .studio-item {
      display: flex;
      flex-direction: column;
    }
    .studio-label {
      font-family: var(--font-serif);
      font-style: italic;
      color: #9ca3af;
      margin-bottom: 0.25rem;
      font-size: 0.9rem;
    }
    .studio-link {
      font-size: 1.125rem;
      font-weight: 700;
      transition: color 0.2s;
    }
    .studio-link:hover {
      color: var(--accent-emerald);
    }
    @media(min-width: 768px) {
      .studio-inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

/* --- collections.html --- */
:root {
            --bg: #06131B;
            --surface: #0B1B24;
            --text: #E5E7EB;
            --muted: #93A3B8;
            --accent: #10B981;
            --border: #1E293B;
            --radius: 8px;
            --spacing-sm: 1.25rem;
            --spacing-md: 2.5rem;
            --spacing-lg: 5rem;
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-serif: "Georgia", "Times New Roman", serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-sans);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: var(--spacing-sm);
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
        h3 { font-size: 1.5rem; }
        p {
            margin-bottom: var(--spacing-sm);
            color: var(--muted);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }
        .py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
        .bg-surface { background-color: var(--surface); }
        .serif-accent {
            font-family: var(--font-serif);
            font-weight: 400;
            font-style: italic;
            color: var(--text);
        }
        .editorial-label {
            display: block;
            font-family: var(--font-serif);
            font-style: italic;
            color: var(--muted);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        /* Buttons */
        .btn-primary, .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            border-radius: var(--radius);
            font-weight: 700;
            transition: all 0.2s ease;
            margin-top: 1rem;
        }
        .btn-primary {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
        }
        .btn-primary:hover {
            background: var(--accent);
            color: var(--bg);
        }
        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }
        .btn-secondary:hover {
            border-color: var(--muted);
        }

        /* Hero Offset Composition */
        .hero-section {
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .hero-grid {
            display: grid;
            gap: var(--spacing-md);
            align-items: center;
        }
        .hero-text p {
            font-size: 1.125rem;
            max-width: 40ch;
        }
        .hero-media img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
        }
        @media (min-width: 768px) {
            .hero-section {
                padding-top: 6rem;
                padding-bottom: 4rem;
            }
            .hero-grid {
                grid-template-columns: 5fr 6fr;
            }
            .hero-media {
                transform: translateY(4rem);
                position: relative;
                z-index: 10;
            }
        }

        /* Asymmetrical Band */
        .asym-band {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .asym-grid {
            display: grid;
            gap: var(--spacing-md);
            align-items: center;
        }
        .inset-frame {
            border: 1px solid var(--border);
            padding: var(--spacing-md);
            border-radius: var(--radius);
            background: var(--bg);
        }
        .asym-media img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
        }
        @media (min-width: 768px) {
            .asym-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
            .asym-content {
                margin-left: -4rem;
                position: relative;
                z-index: 2;
            }
        }

        /* Mixed Gallery */
        .section-heading.left-led {
            margin-bottom: var(--spacing-md);
            max-width: 600px;
        }
        .gallery-grid {
            display: grid;
            gap: var(--spacing-sm);
        }
        .bordered-card {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--surface);
        }
        .card-caption {
            padding: 1.5rem;
        }
        .card-caption h3 {
            margin-bottom: 0.25rem;
            color: var(--text);
        }
        .card-caption p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        .gallery-main img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .gallery-side {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }
        .side-item img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .side-item.text-only {
            padding: var(--spacing-md);
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: 7fr 5fr;
                gap: var(--spacing-md);
            }
            .gallery-side {
                gap: var(--spacing-md);
            }
        }

        /* Narrative / Open Band */
        .narrative-band {
            background: var(--bg);
        }
        .narrative-grid {
            max-width: 800px;
        }
        .narrative-text p {
            font-size: 1.125rem;
            color: var(--text);
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

/* --- lookbook.html --- */
:root {
      --bg: #06131B;
      --surface: #0B1B24;
      --surface-hover: #12242F;
      --border: rgba(147, 163, 184, 0.15);
      --text: #E5E7EB;
      --muted: #93A3B8;
      --accent: #10B981;
      --accent-hover: #059669;
      --radius: 8px;
      --spacing: 1.25rem;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --font-serif: "Georgia", serif;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      line-height: 1.6;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      margin: 0 0 1rem 0;
      font-weight: 700;
      line-height: 1.1;
      color: var(--text);
    }

    p {
      margin: 0 0 1.5rem 0;
      color: var(--muted);
    }

    a {
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    /* Button Styles */
    .btn-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 2rem;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      cursor: pointer;
      text-align: center;
    }

    .btn-primary {
      background-color: var(--accent);
      color: #ffffff;
      border: 1px solid var(--accent);
    }

    .btn-primary:hover {
      background-color: var(--accent-hover);
      border-color: var(--accent-hover);
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      border-color: var(--muted);
      background-color: var(--surface);
    }

    /* Hero Section - Offset Composition */
    .hero-offset {
      position: relative;
      padding: 8rem 0 6rem 0;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: clamp(3rem, 5vw, 4.5rem);
      letter-spacing: -0.02em;
    }

    .hero-content .serif-accent {
      font-family: var(--font-serif);
      font-style: italic;
      color: var(--muted);
      font-size: 1.25rem;
      display: block;
      margin-bottom: 1rem;
      font-weight: 400;
    }

    .hero-media-wrapper {
      position: relative;
      width: 120%;
      transform: translateX(5%);
      border: 1px solid var(--border);
      border-radius: var(--radius) 0 0 var(--radius);
      overflow: hidden;
    }

    .hero-media-wrapper img {
      width: 100%;
      height: 70vh;
      min-height: 500px;
    }

    /* Left-Led Section */
    .section-left-led {
      padding: 8rem 0;
    }

    .section-header {
      max-width: 600px;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-size: clamp(2rem, 3vw, 3rem);
    }

    /* Mixed Cards Gallery */
    .mixed-gallery {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: var(--spacing);
    }

    .gallery-item {
      position: relative;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      background-color: var(--surface);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.03);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: linear-gradient(to top, rgba(6, 19, 27, 0.9) 0%, rgba(6, 19, 27, 0) 100%);
    }

    .gallery-caption h3 {
      font-size: 1.25rem;
      margin: 0;
    }

    .item-large {
      grid-column: span 8;
      grid-row: span 2;
      min-height: 600px;
    }

    .item-small {
      grid-column: span 4;
      min-height: 290px;
    }

    /* Broad Comparison Band */
    .comparison-band {
      background-color: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 8rem 0;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .comparison-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1rem;
      background-color: var(--bg);
    }

    .comparison-card img {
      border-radius: calc(var(--radius) - 4px);
      aspect-ratio: 4/5;
    }

    .comparison-text {
      padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    }

    .comparison-text h3 {
      font-family: var(--font-serif);
      font-weight: 400;
      font-style: italic;
      color: var(--text);
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
    }

    /* Inset Narrative Section */
    .narrative-section {
      padding: 8rem 0;
    }

    .inset-frame {
      max-width: 900px;
      margin: 0 auto;
      padding: 5rem 3rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background-color: var(--surface);
      text-align: center;
    }

    .inset-frame h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      margin-bottom: 1.5rem;
    }

    .inset-frame p {
      font-size: 1.125rem;
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }

    /* Studio / Styling Consultations Section */
    .consultation-section {
      padding: 6rem 0 8rem 0;
    }

    .consultation-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background-color: var(--surface);
      overflow: hidden;
    }

    .consultation-content {
      padding: 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .consultation-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0 0 0;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
    }

    .contact-list a {
      font-weight: 700;
      color: var(--text);
      text-decoration: underline;
      text-decoration-color: var(--border);
      text-underline-offset: 4px;
    }

    .contact-list a:hover {
      color: var(--accent);
      text-decoration-color: var(--accent);
    }

    .consultation-media img {
      height: 100%;
      min-height: 400px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .item-large {
        grid-column: span 12;
        grid-row: span 1;
        min-height: 500px;
      }
      .item-small {
        grid-column: span 6;
      }
    }

    @media (max-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .hero-media-wrapper {
        width: 100%;
        transform: none;
        border-radius: var(--radius);
      }
      .hero-offset {
        padding: 5rem 0;
      }
      .section-left-led, .comparison-band, .narrative-section, .consultation-section {
        padding: 4rem 0;
      }
      .comparison-grid, .consultation-grid {
        grid-template-columns: 1fr;
      }
      .item-small {
        grid-column: span 12;
      }
      .inset-frame {
        padding: 3rem 1.5rem;
      }
      .consultation-content {
        padding: 2rem;
      }
    }

/* --- about.html --- */
:root {
      --bg: #06131B;
      --surface: #0B1B24;
      --surface-alt: #102633;
      --text: #E5E7EB;
      --text-muted: #93A3B8;
      --accent: #10B981;
      --border: #1E3A4C;
      --font-sans: system-ui, -apple-system, sans-serif;
      --font-serif: ui-serif, Georgia, serif;
      --radius: 8px;
      --spacing: 10px;
    }
    body {
      margin: 0;
      font-family: var(--font-sans);
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4 {
      margin-top: 0;
      font-weight: 700;
      color: var(--text);
    }
    h1 { font-size: 3.5rem; line-height: 1.1; letter-spacing: -0.02em; }
    h2 { font-size: 2.5rem; line-height: 1.2; }
    h3 { font-size: 1.5rem; }
    p { margin: 0 0 calc(var(--spacing) * 2); }
    a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
    a:hover { color: #34D399; }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius);
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 calc(var(--spacing) * 2);
      box-sizing: border-box;
    }

    /* CTA / Buttons */
    .btn {
      display: inline-block;
      padding: calc(var(--spacing) * 1.5) calc(var(--spacing) * 3);
      font-weight: 700;
      border-radius: var(--radius);
      border: 2px solid var(--accent);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: all 0.2s ease;
    }
    .btn:hover {
      background-color: var(--accent);
      color: var(--bg);
    }

    /* Hero Offset */
    .hero {
      padding: calc(var(--spacing) * 8) 0 calc(var(--spacing) * 12);
      position: relative;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: calc(var(--spacing) * 4);
      align-items: center;
    }
    .hero-media {
      position: relative;
    }
    .hero-media img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
    }
    @media (min-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
      }
      .hero-media {
        transform: translateY(calc(var(--spacing) * 4));
        z-index: 10;
      }
    }

    /* Asymmetrical Feature */
    .feature-band {
      background-color: var(--surface);
      padding: calc(var(--spacing) * 10) 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: calc(var(--spacing) * 6);
    }
    .feature-content {
      padding: calc(var(--spacing) * 4);
      border-left: 4px solid var(--accent);
    }
    .accent-text {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: calc(var(--spacing) * 2);
    }
    @media (min-width: 768px) {
      .feature-grid {
        grid-template-columns: 2fr 3fr;
      }
    }

    /* Values / Mixed Cards */
    .values-section {
      padding: calc(var(--spacing) * 10) 0;
    }
    .values-header {
      max-width: 600px;
      margin-bottom: calc(var(--spacing) * 6);
    }
    .cards-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: calc(var(--spacing) * 3);
    }
    .card {
      background-color: var(--surface);
      border: 1px solid var(--border);
      padding: calc(var(--spacing) * 4);
      border-radius: var(--radius);
    }
    .card h3 {
      font-size: 1.25rem;
      margin-bottom: calc(var(--spacing) * 1.5);
    }
    @media (min-width: 768px) {
      .cards-row {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* FAQ / Proof Band */
    .faq-band {
      background-color: var(--surface-alt);
      padding: calc(var(--spacing) * 8) 0;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: calc(var(--spacing) * 4);
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding-bottom: calc(var(--spacing) * 3);
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-item h4 {
      font-size: 1.1rem;
      margin-bottom: calc(var(--spacing));
    }
    @media (min-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr 2fr;
        gap: calc(var(--spacing) * 8);
      }
    }

    /* Contact Block */
    .contact-section {
      padding: calc(var(--spacing) * 10) 0;
      text-align: center;
    }
    .contact-card {
      display: inline-block;
      text-align: left;
      background-color: var(--surface);
      border: 1px solid var(--border);
      padding: calc(var(--spacing) * 5);
      border-radius: var(--radius);
      max-width: 500px;
      width: 100%;
      box-sizing: border-box;
    }
    .contact-item {
      margin-bottom: calc(var(--spacing) * 2);
    }
    .contact-item:last-child {
      margin-bottom: 0;
    }
    .contact-label {
      display: block;
      font-family: var(--font-serif);
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

/* --- terms-conditions.html --- */
:root {
            --bg: #06131B;
            --surface: #0B1B24;
            --text: #E5E7EB;
            --muted: #93A3B8;
            --accent: #10B981;
            --border: #1E293B;
            --radius: 0.5rem;
            --spacing-base: 1.25rem;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        .legal-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem var(--spacing-base);
        }
        .legal-header {
            margin-bottom: 3rem;
        }
        h1, h2, h3 {
            font-family: system-ui, -apple-system, sans-serif;
            font-weight: 700;
            color: var(--text);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.5rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .last-updated {
            color: var(--muted);
            font-size: 0.875rem;
            font-family: ui-serif, Georgia, serif;
            font-style: italic;
            margin: 0;
        }
        .legal-section {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .legal-section h2:first-child {
            margin-top: 0;
            font-size: 1.5rem;
            color: var(--accent);
        }
        p, ul {
            margin-bottom: 1.25rem;
            color: var(--text);
            font-size: 1rem;
        }
        p:last-child, ul:last-child {
            margin-bottom: 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }
        a:hover {
            border-bottom-color: var(--accent);
        }
        .contact-list {
            list-style: none;
            padding: 0;
        }
        .contact-list li {
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
        }
        .contact-label {
            font-size: 0.875rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }
        @media (max-width: 600px) {
            .legal-wrapper {
                padding: 2rem 1rem;
            }
            .legal-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
        }

/* --- privacy-policy.html --- */
:root {
      --bg-color: #06131B;
      --surface-color: #0B1B24;
      --surface-border: #1E2E3A;
      --text-main: #E5E7EB;
      --text-muted: #93A3B8;
      --accent-color: #10B981;
      --accent-hover: #34D399;
      --radius-soft: 0.375rem;
      --spacing-base: 1.25rem;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      --font-serif: Georgia, Cambria, 'Times New Roman', Times, serif;
    }
    
    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .legal-main {
      max-width: 800px;
      margin: 0 auto;
      padding: calc(var(--spacing-base) * 4) var(--spacing-base);
    }

    .legal-header {
      margin-bottom: calc(var(--spacing-base) * 3);
      border-bottom: 1px solid var(--surface-border);
      padding-bottom: calc(var(--spacing-base) * 2);
    }

    .legal-header h1 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 2.5rem;
      margin: 0 0 0.5rem 0;
      letter-spacing: -0.02em;
    }

    .legal-header p {
      font-family: var(--font-serif);
      color: var(--text-muted);
      font-size: 1.125rem;
      margin: 0;
    }

    .legal-content {
      background-color: var(--surface-color);
      border: 1px solid var(--surface-border);
      border-radius: var(--radius-soft);
      padding: calc(var(--spacing-base) * 2);
    }

    .legal-section {
      margin-bottom: calc(var(--spacing-base) * 2.5);
    }

    .legal-section:last-child {
      margin-bottom: 0;
    }

    .legal-section h2 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 1.5rem;
      margin: 0 0 1rem 0;
      color: var(--text-main);
    }

    .legal-section p {
      margin: 0 0 1rem 0;
      color: var(--text-muted);
    }

    .legal-section ul {
      margin: 0 0 1rem 0;
      padding-left: 1.5rem;
      color: var(--text-muted);
    }

    .legal-section li {
      margin-bottom: 0.5rem;
    }

    a {
      color: var(--accent-color);
      text-decoration: none;
      transition: color 0.2s ease;
      font-weight: 600;
    }

    a:hover {
      color: var(--accent-hover);
      text-decoration: underline;
    }

    .contact-block {
      margin-top: calc(var(--spacing-base) * 1.5);
      padding: calc(var(--spacing-base) * 1.5);
      border: 1px solid var(--surface-border);
      border-radius: var(--radius-soft);
      background-color: var(--bg-color);
    }

    .contact-row {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }

    .contact-row:last-child {
      margin-bottom: 0;
    }

    .contact-label {
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      font-weight: 700;
    }

    @media (min-width: 640px) {
      .legal-main {
        padding: calc(var(--spacing-base) * 6) calc(var(--spacing-base) * 2);
      }
      .legal-content {
        padding: calc(var(--spacing-base) * 3);
      }
    }

/* Generated typography guard: keeps long localized words inside responsive layouts. */
html { overflow-wrap: break-word; }
body { overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, p, li, blockquote, figcaption, label, legend, summary, dd, dt, th, td { overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; max-width: 100%; }
p, li, blockquote, figcaption { text-wrap: pretty; }
/* Keep narrow localized action labels readable; do not allow letter-by-letter CTA pills. */
a, button, [role="button"] { min-width: 0; max-width: 100%; overflow-wrap: normal; word-break: normal; hyphens: auto; }
main :is(p, li, blockquote, figcaption, dd, dt, small) a { overflow-wrap: anywhere; word-break: normal; }
main :is(a, button, [role="button"]):is([class*="px-"], [class*="rounded-"], [class*="border"]) { white-space: normal; line-height: 1.15; text-align: center; }
main :is(a, button, [role="button"]):not([aria-label]):is([class*="rounded-full"], [class*="aspect-square"], [class*="w-12"], [class*="w-14"], [class*="w-16"], [class*="w-20"]) { width: auto; height: auto; aspect-ratio: auto; min-width: min(10rem, 100%); min-height: 2.75rem; padding-left: max(1rem, 1em); padding-right: max(1rem, 1em); }
main :is(a, button, [role="button"]):is([style*="writing-mode"], [class*="vertical"]) { writing-mode: horizontal-tb !important; text-orientation: mixed !important; }
@media (max-width: 640px) { main :is(a, button, [role="button"]):not([aria-label]):is([class*="rounded-full"], [class*="aspect-square"], [class*="w-12"], [class*="w-14"], [class*="w-16"], [class*="w-20"]) { width: 100%; min-width: 0; } }
h1[class*="whitespace-nowrap"], h2[class*="whitespace-nowrap"], h3[class*="whitespace-nowrap"], p[class*="whitespace-nowrap"], a[class*="whitespace-nowrap"], button[class*="whitespace-nowrap"] { white-space: normal; }
.site-brand span, .site-nav__link, .site-mobileNav__link, .site-footer__link, .site-footer__contactLink { overflow-wrap: anywhere; word-break: normal; hyphens: auto; }

/* g2 palette ssot start */
:root {
  --g2-palette-dark: #1f2937;
  --g2-palette-light: #ffffff;
  --g2-palette-accent: #059669;
  --g2-palette-text: #111827;
  --g2-color-primary: var(--g2-palette-accent);
  --g2-color-accent: var(--g2-palette-accent);
  --g2-color-text: var(--g2-palette-text);
  --g2-palette-text-on-dark: #ffffff;
}
/* g2 palette ssot end */
