
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #d4af37;
    --gold-light: #e8d07a;
    --dark: #1a1a1a;
    --mid: #555;
    --light-text: #888;
    --bg-white: #ffffff;
    --bg-warm: #f8f5f0;
    --bg-dark: #1c1c1c;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--dark);
    background: var(--bg-white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  img { display: block; max-width: 100%; height: auto; }

  /* ─── SECTION LABEL ─── */
  .section-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  /* ─── SECTION TITLE ─── */
  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  /* ─── GOLD RULE ─── */
  .gold-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
  }
  .gold-rule.left { margin: 0 0 40px; }

  /* ─── CENTERED HEADER ─── */
  .section-header {
    text-align: center;
    padding: 0 20px 50px;
  }
  .section-header .gold-rule { margin: 0 auto 0; }

  /* ─── CONTAINER ─── */
  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* ═══════════════════════════════════════════
     1. HERO
  ═══════════════════════════════════════════ */
  .hero {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 30px 90px;
    text-align: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero-title span {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-family: var(--sans);
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
  }

  .hero-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
    letter-spacing: 2px;
  }
  .hero-line::before, .hero-line::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
  }

  /* ═══════════════════════════════════════════
     2. STATS BAR
  ═══════════════════════════════════════════ */
  .stats-bar {
    background: var(--gold);
    padding: 40px 30px;
  }

  .stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-item {
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.12);
    padding: 10px 20px;
  }
  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
  }

  /* ═══════════════════════════════════════════
     3. OUR STORY
  ═══════════════════════════════════════════ */
  .story-section {
    background: var(--bg-white);
    padding: 100px 30px;
  }

  .story-row {
    max-width: 1180px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .story-row:last-child { margin-bottom: 0; }

  .story-row.reverse { direction: rtl; }
  .story-row.reverse > * { direction: ltr; }

  .story-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
  }

  .story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .story-image-wrap:hover img { transform: scale(1.04); }

  .story-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
  }

  .story-text p {
    font-size: 15.5px;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 18px;
  }
  .story-text p:last-child { margin-bottom: 0; }

  .story-text strong { color: var(--dark); font-weight: 500; }

  .story-quote {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 24px 0;
    line-height: 1.5;
  }

  /* ═══════════════════════════════════════════
     4. THREE PILLARS
  ═══════════════════════════════════════════ */
  .pillars-section {
    background: var(--bg-warm);
    padding: 90px 30px;
  }

  .pillars-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .pillar-card {
    background: var(--bg-white);
    padding: 42px 32px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }
  .pillar-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-6px);
  }

  .pillar-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
  }

  .pillar-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .pillar-text {
    font-size: 14.5px;
    color: var(--mid);
    line-height: 1.8;
  }
  .pillar-text strong { color: var(--dark); font-weight: 500; }

  /* ═══════════════════════════════════════════
     5. OEM & ODM
  ═══════════════════════════════════════════ */
  .oem-section {
    background: var(--bg-white);
    padding: 90px 30px;
  }

  .oem-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .oem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
    align-items: stretch;
  }

  .oem-img {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1 / 1;
  }
  .oem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .oem-img:hover img { transform: scale(1.05); }

  .oem-features-box {
    background: var(--bg-warm);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 2px;
  }

  .oem-features-box .section-label { margin-bottom: 20px; }

  .oem-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .oem-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--mid);
    line-height: 1.6;
  }

  .oem-feature-list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--gold);
    margin-top: 10px;
    flex-shrink: 0;
  }

  .oem-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .oem-sample {
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4 / 3;
  }
  .oem-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .oem-sample:hover img { transform: scale(1.05); }

  /* ═══════════════════════════════════════════
     6. PRODUCTION PROCESS
     — Images masked as circles, blended with #1c1c1c bg
     — process-label stays at bottom-left, no borders
  ═══════════════════════════════════════════ */
  .process-section {
    background: var(--bg-dark);
    padding: 90px 30px;
  }

  .process-section .section-title { color: #fff; }
  .process-section .section-label { color: var(--gold-light); }

  .process-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .process-item {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-item img {
    width: 84%;
    height: 84%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.55;
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
  }

  .process-item:hover img {
    opacity: 0.8;
    transform: scale(1.06);
  }

  .process-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 18px;
    /*background: linear-gradient(transparent, rgba(0,0,0,0.6));*/
    z-index: 1;
  }

  .process-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
    display: block;
  }

  .process-name {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
  }

  /* ═══════════════════════════════════════════
     7. CERTIFICATIONS
     — Photo wall style, Polaroid cards, no white border frame
     — Certificate name labeled below each image
     — Images kept modest size for clarity
  ═══════════════════════════════════════════ */
  .cert-section {
    background: var(--bg-warm);
    padding: 90px 30px;
  }

  .cert-wall {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 22px;
    justify-content: center;
    align-items: flex-start;
  }

  .cert-photo {
    position: relative;
    width: 178px;
    background: #fff;
    padding: 10px 10px 38px;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.14), 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    z-index: 1;
  }

  .cert-photo:nth-child(1)  { transform: rotate(-2.2deg); }
  .cert-photo:nth-child(2)  { transform: rotate(1.6deg);  }
  .cert-photo:nth-child(3)  { transform: rotate(-1.0deg); }
  .cert-photo:nth-child(4)  { transform: rotate(2.4deg);  }
  .cert-photo:nth-child(5)  { transform: rotate(-1.5deg); }
  .cert-photo:nth-child(6)  { transform: rotate(0.8deg);  }
  .cert-photo:nth-child(7)  { transform: rotate(-2.8deg); }
  .cert-photo:nth-child(8)  { transform: rotate(1.2deg);  }
  .cert-photo:nth-child(9)  { transform: rotate(-0.6deg); }

  .cert-photo:hover {
    transform: rotate(0deg) scale(1.07) translateY(-5px) !important;
    box-shadow: 4px 10px 28px rgba(0,0,0,0.22);
    z-index: 10;
  }

  .cert-photo img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    display: block;
    background: #f6f4f0;
  }

  .cert-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #666;
    text-align: center;
    padding: 0 8px;
    line-height: 1.3;
  }

  /* ═══════════════════════════════════════════
     8. SHOWROOMS
     — Left: vertical image spanning full height
     — Right: two horizontal images stacked
  ═══════════════════════════════════════════ */
  .showroom-section {
    background: var(--bg-white);
    padding: 90px 30px;
  }

  .showroom-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  .showroom-intro-text {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
  }

  .showroom-mosaic {
    display: grid;
    grid-template-columns: 5fr 7fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 600px;
  }

  .sr-img {
    overflow: hidden;
    border-radius: 2px;
  }

  .sr-img.tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .sr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .sr-img:hover img { transform: scale(1.04); }

  /* ═══════════════════════════════════════════
     FOOTER STRIP
  ═══════════════════════════════════════════ */
  .footer-strip {
    background: var(--bg-dark);
    padding: 50px 30px;
    text-align: center;
  }

  .footer-tagline {
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 30px);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .footer-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ═══════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
    .oem-layout { grid-template-columns: 1fr 1fr; }
    .oem-features-box { grid-column: span 2; }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .cert-wall { max-width: 860px; }
  }

  @media (max-width: 768px) {
    .story-row { grid-template-columns: 1fr; gap: 40px; }
    .story-row.reverse { direction: ltr; }
    .oem-layout { grid-template-columns: 1fr; }
    .oem-features-box { grid-column: span 1; }
    .oem-samples { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-wall { gap: 20px 16px; }
    .cert-photo { width: 155px; }
    .showroom-mosaic {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      height: 460px;
    }
    .sr-img.tall {
      grid-column: 1;
      grid-row: 1 / 3;
    }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .story-section, .pillars-section, .oem-section,
    .process-section, .cert-section, .showroom-section { padding: 60px 20px; }
    .hero { padding: 70px 20px 60px; }
  }

  @media (max-width: 580px) {
    .showroom-mosaic {
      grid-template-columns: 1fr;
      grid-template-rows: 360px 200px 200px;
      height: auto;
    }
    .sr-img.tall {
      grid-column: 1;
      grid-row: 1;
    }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .oem-samples { grid-template-columns: 1fr; }
    .cert-photo { width: 145px; }
  }
