/* ============================================================
   EZZO.SG — Industrial Contractor Theme
   Aluminium-supplier visual system: dark green/charcoal surfaces,
   warm aluminium-bronze accents, structured cards, strong contrast.

   Load AFTER tokens.css, base.css, components.css.
   Overrides token values and extends component rules.
   ============================================================ */

/* ── Google Fonts: Cormorant Garamond + DM Sans ──────────────
   Import here so theme.css is self-contained when linked.
   ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ============================================================
   TOKEN OVERRIDES — Industrial Contractor Palette
   Dark green/charcoal × aluminium-bronze
   ============================================================ */
:root {
  /* ── Surfaces: cool neutral, structured ───────────── */
  --color-bg:              #f5f6f5;   /* soft aluminium neutral */
  --color-surface:         #ebede9;   /* light frame surface */
  --color-surface-2:       #ffffff;
  --color-surface-offset:  #e2e5e1;
  --color-surface-offset-2:#d6d9d4;
  --color-surface-dynamic: #c8ccc6;

  /* ── Text: deep charcoal ──────────────────────────── */
  --color-text:        #131a17;
  --color-text-muted:  #5b6660;
  --color-text-faint:  #98a09a;
  --color-text-inverse:#f5f6f5;

  /* ── Primary: industrial dark green ───────────────── */
  --color-primary:          #1b2a23;   /* deep forest/industrial */
  --color-primary-hover:    #243832;
  --color-primary-active:   #2e463f;
  --color-primary-highlight:#dbe4df;

  /* ── Accent: aluminium-bronze (warm metal) ────────── */
  --color-accent:           #c08d4a;
  --color-accent-hover:     #d6a261;
  --color-accent-active:    #a8783a;
  --color-accent-highlight: #f3e7d3;

  /* ── Borders: cool neutral hairlines ─────────────── */
  --color-border:   #cdd2cd;
  --color-divider:  #dde1dc;

  /* ── Fonts ─────────────────────────────────────────── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-ui:      'DM Sans', 'Helvetica Neue', sans-serif;

  /* ── Shadows: cool-tinted ────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(19, 26, 23, 0.06);
  --shadow-md: 0 4px 16px rgba(19, 26, 23, 0.10);
  --shadow-lg: 0 12px 40px rgba(19, 26, 23, 0.14);
  --shadow-xl: 0 24px 64px rgba(19, 26, 23, 0.18);

  /* ── Industrial dark for dark sections ───────────── */
  --color-industrial-dark: #0f1714;
  --color-industrial-line: rgba(192, 141, 74, 0.30);
  --color-terracotta: #b85c38;
  --color-terracotta-light: #f5e8e2;
}


/* ============================================================
   NAVIGATION — Dark Palazzo
   ============================================================ */
.site-header {
  background: #0f1714;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(192, 141, 74, 0.30); /* gold hairline */
}
.site-header--scrolled {
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

.nav__logo-text {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav__logo-text span {
  color: var(--color-accent) !important;
}
.nav__logo-sub {
  color: rgba(192, 141, 74, 0.60);
}

/* Nav links: warm white on dark */
.nav__links a {
  color: rgba(250, 248, 244, 0.70);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #faf8f4;
}
.nav__links a::after {
  background: var(--color-accent);
}

/* Dropdown on dark nav */
.nav__dropdown-menu {
  background: #141d19;
  border: 1px solid rgba(192, 141, 74, 0.22);
  border-radius: 0; /* Milanese: zero radius */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.nav__dropdown-menu a {
  color: rgba(250, 248, 244, 0.70);
  border-radius: 0;
}
.nav__dropdown-menu a:hover {
  background: rgba(192, 141, 74, 0.10);
  color: var(--color-accent);
}

/* Theme toggle on dark */
.theme-toggle {
  color: rgba(192, 141, 74, 0.70);
  border-color: rgba(192, 141, 74, 0.25);
}
.theme-toggle:hover {
  background: rgba(192, 141, 74, 0.12);
  color: var(--color-accent);
}

/* Hamburger on dark */
.nav__hamburger {
  color: rgba(250, 248, 244, 0.70);
  border-color: rgba(192, 141, 74, 0.25);
}

/* Mobile nav opens to dark */
@media (max-width: 900px) {
  .nav__links--open {
    background: #141d19;
    border-bottom: 1px solid rgba(192, 141, 74, 0.22);
  }
  .nav__links--open a {
    color: rgba(250, 248, 244, 0.75);
  }
}


/* ============================================================
   HERO — Palazzo Dark with Gold Drama
   ============================================================ */
.hero {
  background: #0f1714;
  min-height: 100vh;
}
.hero__bg {
  background: linear-gradient(
    150deg,
    rgba(15, 23, 20, 0.96) 0%,
    rgba(31, 47, 41, 0.78) 50%,
    rgba(15, 23, 20, 0.95) 100%
  );
}
.hero__eyebrow {
  color: var(--color-accent);
  letter-spacing: 0.20em;
}
.hero__eyebrow::before {
  background: var(--color-accent);
  width: 40px;
}
.hero__title {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__stat-value {
  color: var(--color-accent);
  font-style: italic;
}
.hero__stats {
  border-top: 1px solid rgba(192, 141, 74, 0.20);
}


/* ============================================================
   PAGE HERO — Interior dark headers
   ============================================================ */
.page-hero {
  background: #0f1714;
}
.page-hero__eyebrow {
  color: var(--color-accent);
}
.page-hero__title {
  font-style: italic;
  font-weight: 400;
}


/* ============================================================
   CTA BANNER — Palazzo dark, gold accents
   ============================================================ */
.cta-banner {
  background: #0f1714;
  border-radius: 0; /* Milanese: sharp geometry */
  border: 1px solid rgba(192, 141, 74, 0.22);
}
.cta-banner__title {
  font-style: italic;
  font-weight: 400;
  color: #fff;
}
.cta-banner .section-label {
  color: var(--color-accent);
}


/* ============================================================
   BUTTONS — Pill radius (Riviera), gold fill
   ============================================================ */
.btn {
  border-radius: 16px; /* Riviera pill */
  transition:
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    color var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn:hover {
  transform: translateY(-1px);
}

/* Primary = gold background, dark text */
.btn--primary {
  background: var(--color-accent);
  color: #0f1714;
  border-color: var(--color-accent);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #0f1714;
}

/* Accent = outlined gold, fills on hover */
.btn--accent {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent);
  color: #0f1714;
}

/* Outline-light on dark backgrounds */
.btn--outline-light {
  border-radius: 16px;
  border-color: rgba(192, 141, 74, 0.45);
  color: rgba(250, 248, 244, 0.90);
}
.btn--outline-light:hover {
  background: rgba(192, 141, 74, 0.14);
  border-color: var(--color-accent);
  color: var(--color-accent);
}


/* ============================================================
   PRODUCT CARDS — Milanese: zero radius, hairline border
   ============================================================ */
.product-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border); /* hairline */
  border-radius: 0; /* Milanese: zero */
  box-shadow: none; /* Milanese: no shadows */
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: var(--color-accent);
}
.product-card__image-placeholder {
  background: linear-gradient(135deg, var(--color-surface-offset) 0%, var(--color-surface-offset-2) 100%);
}
.product-card__category {
  color: var(--color-accent);
}
.product-card__title {
  font-style: italic;
}
.product-card__link {
  color: var(--color-accent);
  letter-spacing: 0.06em;
}
.product-card__link:hover {
  color: var(--color-accent-hover);
}


/* ============================================================
   SPEC TABLE — Milanese: zero radius, hairlines only
   ============================================================ */
.spec-table {
  border: 1px solid var(--color-border);
  border-radius: 0; /* zero */
  box-shadow: none;
}
.spec-table th {
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  letter-spacing: 0.10em;
}
.spec-table td {
  color: var(--color-text);
}
.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--color-divider); /* hairline only */
}


/* ============================================================
   SECTION HEADINGS — Riviera: 40px gold line above
   ============================================================ */
.section-label {
  color: var(--color-accent);
  letter-spacing: 0.14em;
}

.section-title::before,
.section-title--with-rule::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-5);
}

/* Section headers that sit on dark backgrounds */
.section--dark .section-title,
.section--dark .section-subtitle,
.section--dark .section-label {
  color: #faf8f4;
}
.section--dark .section-title::before {
  background: var(--color-accent);
}
.section--dark .section-subtitle {
  color: rgba(250, 248, 244, 0.65);
}
.section--dark .section-label {
  color: var(--color-accent);
}


/* ============================================================
   TAGS — Warm gold tints
   ============================================================ */
.tag--accent {
  background: var(--color-accent-highlight);
  color: #7a5320;
  border: 1px solid rgba(192, 141, 74, 0.30);
}

/* Terracotta tag variant — Riviera (very low usage) */
.tag--terracotta {
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  border: 1px solid rgba(184, 92, 56, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  display: inline-flex;
  align-items: center;
}


/* ============================================================
   FOOTER — Palazzo dark
   ============================================================ */
.site-footer {
  background: #0f1714;
  border-top: 1px solid rgba(192, 141, 74, 0.18);
}
.footer-brand__logo {
  color: #faf8f4;
  font-family: var(--font-display);
  font-style: italic;
}
.footer-brand__logo span {
  color: var(--color-accent) !important;
}
.footer-brand__tagline {
  color: rgba(250, 248, 244, 0.50);
}
.footer-brand__contact p {
  color: rgba(250, 248, 244, 0.55);
}
.footer-brand__contact a {
  color: rgba(192, 141, 74, 0.80);
}
.footer-brand__contact a:hover {
  color: var(--color-accent);
}
.footer-col__title {
  color: rgba(250, 248, 244, 0.40);
  letter-spacing: 0.14em;
}
.footer-col__links a {
  color: rgba(250, 248, 244, 0.55);
}
.footer-col__links a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  border-top: 1px solid rgba(192, 141, 74, 0.12);
}
.footer-bottom p {
  color: rgba(250, 248, 244, 0.30);
}


/* ============================================================
   FEATURE ITEMS — Warm linen surface, gold icon tint
   ============================================================ */
.feature-item {
  border-radius: 0; /* Milanese */
  border-color: var(--color-border);
  box-shadow: none;
  background: var(--color-surface-2);
}
.feature-item__icon {
  background: var(--color-accent-highlight);
  color: #7a5320;
  border-radius: 0;
}


/* ============================================================
   CATEGORY CARDS — Gold overlay accent
   ============================================================ */
.category-card {
  border-radius: 0; /* Milanese */
}
.category-card__label {
  color: var(--color-accent);
}
.category-card:hover .category-card__link {
  color: var(--color-accent);
}
.category-card__overlay {
  background: linear-gradient(to top, rgba(15, 23, 20, 0.90) 0%, rgba(15, 23, 20, 0.18) 55%, transparent 100%);
}


/* ============================================================
   PROCESS STEPS — Hairline, zero radius
   ============================================================ */
.process-step {
  border-radius: 0;
  border-color: var(--color-border);
  background: var(--color-surface-2);
  box-shadow: none;
}
.process-step::before {
  color: var(--color-accent);
  font-style: italic;
}


/* ============================================================
   TESTIMONIALS — Warm paper feel
   ============================================================ */
.testimonial {
  border-radius: 0;
  border-color: var(--color-border);
  background: var(--color-surface-2);
}
.testimonial__text {
  font-style: italic;
}


/* ============================================================
   PULL QUOTE — Gold left rule
   ============================================================ */
.pull-quote {
  border-left: 2px solid var(--color-accent);
}


/* ============================================================
   BREADCRUMB — Warm muted
   ============================================================ */
.breadcrumb a {
  color: var(--color-text-muted);
}
.breadcrumb a:hover {
  color: var(--color-accent);
}


/* ============================================================
   GLASS OPTIONS — Gold-bordered pills
   ============================================================ */
.glass-option {
  border-radius: 0;
  border-color: rgba(192, 141, 74, 0.30);
  background: var(--color-accent-highlight);
  color: #5e4218;
  font-weight: 600;
}
.glass-option:hover {
  background: var(--color-accent);
  color: #0f1714;
  border-color: var(--color-accent);
}


/* ============================================================
   SPEC PANEL — Zero radius
   ============================================================ */
.spec-panel {
  border-radius: 0;
  border-color: var(--color-border);
  background: var(--color-surface-2);
}


/* ============================================================
   SECTION — Dark variant
   ============================================================ */
.section--dark {
  background: #0f1714;
}
.section--warm {
  background: var(--color-surface);
}
.section--linen {
  background: var(--color-bg);
}


/* ============================================================
   CATEGORY NAV STRIP — Product Index navigation
   ============================================================ */
.cat-nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.cat-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav__inner::-webkit-scrollbar { display: none; }
.cat-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.cat-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--space-8); right: var(--space-8);
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-interactive);
  transform-origin: left;
}
.cat-nav__link:hover {
  color: var(--color-text);
}
.cat-nav__link:hover::after,
.cat-nav__link[aria-current="true"]::after {
  transform: scaleX(1);
}
.cat-nav__link[aria-current="true"] {
  color: var(--color-accent);
}
.cat-nav__num {
  font-family: var(--font-display);
  font-size: 0.7em;
  font-style: italic;
  color: var(--color-accent);
  opacity: 0.75;
}


/* ============================================================
   PRODUCT SECTION HEADER — Dark with gold
   ============================================================ */
.product-section-hd {
  background: #0f1714;
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  border-bottom: 1px solid rgba(192, 141, 74, 0.15);
}
.product-section-hd__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.product-section-hd__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.product-section-hd__sub {
  font-size: var(--text-sm);
  color: rgba(250, 248, 244, 0.55);
  max-width: 52ch;
  line-height: 1.7;
}
.product-section-hd__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-5);
}


/* ============================================================
   STAT COUNTERS — Gold on dark
   ============================================================ */
.stat-counter {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat-counter__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1;
}
.stat-counter__label {
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
}


/* ============================================================
   GLASS TECHNOLOGY STRIP
   ============================================================ */
.glass-strip {
  border: 1px solid var(--color-accent);
  padding: clamp(var(--space-10), 5vw, var(--space-16));
  background: var(--color-surface-2);
}
.glass-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.glass-card {
  padding: var(--space-5) var(--space-4);
  border: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-bg);
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.glass-card:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-highlight);
}
.glass-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  line-height: 1;
}
.glass-card__name {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.glass-card__desc {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: unset;
}


/* ============================================================
   INTERIOR DOOR SERIES LIST
   ============================================================ */
.series-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-1);
  border: 1px solid var(--color-border);
}
.series-item {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-decoration: none;
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
}
.series-item:hover {
  background: var(--color-accent-highlight);
  border-color: var(--color-accent);
}
.series-item__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.2;
}
.series-item__type {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}
.series-item__arrow {
  color: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-interactive);
  flex-shrink: 0;
}
.series-item:hover .series-item__arrow {
  opacity: 1;
}


/* ============================================================
   DIVIDER — Warm gold accent rule
   ============================================================ */
.divider--gold {
  border: none;
  border-top: 1px solid rgba(192, 141, 74, 0.30);
}


/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 900px) {
  .cat-nav__link {
    padding: var(--space-4) var(--space-5);
    font-size: calc(var(--text-xs) * 0.95);
  }
  .product-section-hd {
    padding: var(--space-10) clamp(var(--space-6), 5vw, var(--space-12));
  }
}

@media (max-width: 600px) {
  .glass-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .series-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Product Image Embeds (Showcase / Gallery / Drawing)
============================================================ */

.emd-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--color-divider);
  margin-top: clamp(2rem, 5vw, 4rem);
}
.emd-showcase--reverse { direction: rtl; }
.emd-showcase--reverse > * { direction: ltr; }
.emd-showcase__image {
  width: 100%;
  height: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: block;
}
.emd-showcase__body {
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
}
.emd-showcase__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}
.emd-showcase__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.emd-showcase__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 48ch;
}
.emd-showcase__caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Image gallery strip — 2-up or 3-up */
.emd-gallery {
  display: grid;
  gap: 1rem;
  margin: clamp(2rem, 4vw, 3rem) 0;
}
.emd-gallery--2 { grid-template-columns: repeat(2, 1fr); }
.emd-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.emd-gallery__item {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.emd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.emd-gallery__item:hover img { transform: scale(1.03); }
.emd-gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(13,13,11,0.85), rgba(13,13,11,0));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Technical drawing highlight panel */
.emd-drawing {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}
.emd-drawing__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-divider);
}
.emd-drawing__icon {
  width: 36px; height: 36px;
  background: var(--color-accent);
  color: #0f1714;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.emd-drawing__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.emd-drawing__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
}
.emd-drawing__image {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  display: block;
}
.emd-drawing__caption {
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .emd-showcase { grid-template-columns: 1fr; }
  .emd-showcase--reverse { direction: ltr; }
  .emd-gallery--2, .emd-gallery--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   Unique Features Callout
============================================================ */
.unique-features {
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-divider);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}
.unique-features__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.unique-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.unique-feature {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.unique-feature__bullet {
  width: 10px; height: 10px;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.5rem;
  transform: rotate(45deg);
}
.unique-feature__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  line-height: 1.25;
}
.unique-feature__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: unset;
}
