    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --burgundy: #4A2831;
      --burgundy-light: #6B3A45;
      --cream: #F7F3EE;
      --cream-dark: #EDE7DF;
      --warm-white: #FDFBF8;
      --brass: #B8956A;
      --brass-light: #D4B896;
      --charcoal: #2C2C2C;
      --text: #3A3A3A;
      --text-light: #555555;
      --border: #E2DDD6;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Outfit', -apple-system, sans-serif;

      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
      --space-2xl: 10rem;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      color: var(--text);
      background: var(--warm-white);
      line-height: 1.7;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── Utility ─── */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

    /* ─── Announcement Bar ─── */
    .announcement {
      background: var(--burgundy);
      color: var(--cream);
      text-align: center;
      padding: 10px var(--space-md);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .announcement a {
      color: var(--brass-light);
      text-decoration: none;
      border-bottom: 1px solid var(--brass-light);
    }

    /* ─── Header ─── */
    .header {
      background: var(--warm-white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-md) var(--space-md);
      max-width: 1280px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      gap: 0;
    }

    .logo-img {
      height: 56px;
      width: auto;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: var(--space-md);
    }

    .header-actions a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .header-actions a:hover { color: var(--burgundy); }

    .nav {
      background: var(--warm-white);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      justify-content: center;
      gap: clamp(1rem, 2.5vw, 2.5rem);
      padding: var(--space-sm) var(--space-md);
      max-width: 1280px;
      margin: 0 auto;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .nav-inner::-webkit-scrollbar { display: none; }

    .nav a {
      color: var(--text);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 2px;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--burgundy);
      transition: width 0.3s ease;
    }

    .nav a:hover { color: var(--burgundy); }
    .nav a:hover::after { width: 100%; }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      background: var(--burgundy);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(74, 40, 49, 0.88) 0%, rgba(74, 40, 49, 0.65) 50%, rgba(74, 40, 49, 0.35) 100%),
        url('hero_marshall-and-stewart.jpg');
      background-size: cover;
      background-position: center;
    }

    .hero-texture {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: var(--space-xl) var(--space-md);
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .hero-left {
      max-width: 560px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brass-light);
      margin-bottom: var(--space-md);
      font-weight: 400;
    }

    .hero-tag::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--brass);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 400;
      color: var(--cream);
      line-height: 1.15;
      margin-bottom: var(--space-md);
      letter-spacing: -0.02em;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--brass-light);
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(247, 243, 238, 0.85);
      line-height: 1.7;
      margin-bottom: var(--space-lg);
      max-width: 480px;
      font-weight: 400;
    }

    .hero-ctas {
      display: flex;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--brass);
      color: white;
    }

    .btn-primary:hover {
      background: var(--brass-light);
    }

    .btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(247, 243, 238, 0.3);
    }

    .btn-secondary:hover {
      border-color: var(--cream);
      background: rgba(247, 243, 238, 0.05);
    }

    .btn-dark {
      background: var(--burgundy);
      color: var(--cream);
    }

    .btn-dark:hover {
      background: var(--burgundy-light);
    }

    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-frame {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 3/4;
      background: linear-gradient(145deg, var(--burgundy-light), #3A1E26);
      border: 1px solid rgba(184, 149, 106, 0.2);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-image-placeholder {
      text-align: center;
      color: rgba(247, 243, 238, 0.3);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: var(--space-md);
    }

    .hero-image-placeholder .icon {
      font-size: 3rem;
      display: block;
      margin-bottom: var(--space-sm);
      opacity: 0.4;
    }

    .hero-image-frame::after {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(184, 149, 106, 0.15);
      pointer-events: none;
    }

    .hero-stat {
      position: absolute;
      bottom: -20px;
      left: -30px;
      background: var(--warm-white);
      padding: var(--space-md) var(--space-md);
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      z-index: 3;
    }

    .hero-stat-number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--burgundy);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-top: 4px;
    }

    /* ─── Brand Bar ─── */
    .brand-bar {
      background: var(--cream);
      padding: var(--space-lg) var(--space-md);
      border-bottom: 1px solid var(--border);
    }

    .brand-bar-label {
      text-align: center;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: var(--space-md);
      font-weight: 400;
    }

    .brand-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--space-xl);
      flex-wrap: wrap;
    }

    .brand-logo {
      opacity: 0.55;
      transition: opacity 0.3s;
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .brand-logo:hover { opacity: 1; }

    .brand-logo img {
      height: 36px;
      width: auto;
      object-fit: contain;
    }

    .brand-logo.brand-marshall img {
      height: 52px;
    }

    /* ─── Section Styles ─── */
    .section {
      padding: var(--space-2xl) var(--space-md);
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: var(--space-sm);
      font-weight: 400;
    }

    .section-tag::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--brass);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.2;
      margin-bottom: var(--space-sm);
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 560px;
      font-weight: 400;
      line-height: 1.7;
    }

    /* ─── Collections Grid ─── */
    .collections {
      background: var(--warm-white);
    }

    .collections-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: var(--space-lg);
    }

    .collections-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-sm);
    }

    .collection-card {
      position: relative;
      aspect-ratio: 4/5;
      background: var(--cream);
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      border: 1px solid var(--border);
      transition: border-color 0.3s;
    }

    .collection-card:hover { border-color: var(--brass); }

    .collection-card-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .collection-card-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .collection-placeholder {
      color: var(--text-light);
      opacity: 0.3;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .collection-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: var(--space-md);
      background: linear-gradient(0deg, rgba(253,251,248,0.97) 60%, rgba(253,251,248,0) 100%);
    }

    .collection-card-tag {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 6px;
      font-weight: 400;
    }

    .collection-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .collection-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      font-weight: 400;
    }

    .collection-card .price-from {
      font-size: 0.8rem;
      color: var(--burgundy);
      margin-top: 8px;
      font-weight: 400;
    }

    /* ─── Why Choose Us ─── */
    .why-us {
      background: var(--cream);
    }

    .why-us-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: center;
      margin-top: var(--space-lg);
    }

    .why-us-image {
      aspect-ratio: 4/5;
      background: linear-gradient(145deg, var(--cream-dark), var(--border));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .why-us-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .why-us-image-placeholder {
      color: var(--text-light);
      opacity: 0.3;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      padding: var(--space-md);
    }

    .why-us-points {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .why-point {
      display: flex;
      gap: var(--space-md);
    }

    .why-point-number {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--brass);
      line-height: 1;
      min-width: 50px;
    }

    .why-point h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .why-point p {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 400;
      line-height: 1.7;
    }

    /* ─── Pricing Transparency Banner ─── */
    .transparency {
      background: var(--burgundy);
      position: relative;
      overflow: hidden;
    }

    .transparency .hero-texture {
      opacity: 0.02;
    }

    .transparency-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .transparency-content {
      max-width: 520px;
    }

    .transparency .section-tag {
      color: var(--brass-light);
    }

    .transparency .section-tag::before {
      background: var(--brass-light);
    }

    .transparency .section-title {
      color: var(--cream);
    }

    .transparency p {
      color: rgba(247, 243, 238, 0.85);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.8;
      margin: var(--space-md) 0;
    }

    .price-examples {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .price-tier {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(184, 149, 106, 0.2);
      padding: 1.5rem var(--space-md);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s, border-color 0.3s;
    }

    .price-tier:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(184, 149, 106, 0.4);
    }

    .price-tier-brand {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--cream);
      letter-spacing: 0.01em;
    }

    .price-tier-range {
      font-size: 1.1rem;
      color: var(--brass-light);
      font-weight: 500;
      white-space: nowrap;
    }

    .price-tier-desc {
      font-size: 0.9rem;
      color: rgba(247, 243, 238, 0.75);
      margin-top: 5px;
      font-weight: 400;
    }

    /* ─── Testimonials ─── */
    .testimonials {
      background: var(--warm-white);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .testimonial {
      padding: var(--space-lg);
      border: 1px solid var(--border);
      background: var(--warm-white);
      position: relative;
    }

    .testimonial::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--brass);
      opacity: 0.3;
      position: absolute;
      top: 16px;
      left: 24px;
      line-height: 1;
    }

    .testimonial-stars {
      color: var(--brass);
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: var(--space-sm);
    }

    .testimonial p {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 400;
      line-height: 1.7;
      font-style: italic;
      margin-bottom: var(--space-md);
    }

    .testimonial-author {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--charcoal);
    }

    .testimonial-product {
      font-size: 0.75rem;
      color: var(--text-light);
      font-weight: 400;
      margin-top: 2px;
    }

    /* ─── Showroom ─── */
    .showroom {
      background: var(--cream);
    }

    .showroom-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--space-xl);
      align-items: center;
      margin-top: var(--space-lg);
    }

    .showroom-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-sm);
    }

    .showroom-img {
      aspect-ratio: 1;
      background: linear-gradient(145deg, var(--cream-dark), var(--border));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .showroom-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .showroom-img:first-child {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    .showroom-img-placeholder {
      color: var(--text-light);
      opacity: 0.3;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
    }

    .showroom-content h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: var(--space-sm);
    }

    .showroom-content p {
      font-size: 0.95rem;
      color: var(--text);
      font-weight: 400;
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .showroom-details {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      padding-top: var(--space-md);
      border-top: 1px solid var(--border);
    }

    .showroom-detail {
      display: flex;
      gap: var(--space-sm);
      font-size: 0.85rem;
      color: var(--text);
    }

    .showroom-detail-label {
      font-weight: 500;
      min-width: 80px;
      color: var(--charcoal);
    }

    .showroom-detail-value {
      font-weight: 400;
    }

    /* ─── Journal ─── */
    .journal {
      background: var(--warm-white);
    }

    .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .journal-card {
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
    }

    .journal-card:hover { transform: translateY(-4px); }

    .journal-card-image {
      aspect-ratio: 16/10;
      background: linear-gradient(145deg, var(--cream-dark), var(--cream));
      border: 1px solid var(--border);
      margin-bottom: var(--space-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .journal-card-placeholder {
      color: var(--text-light);
      opacity: 0.3;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .journal-card-category {
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brass);
      margin-bottom: 6px;
      font-weight: 400;
    }

    .journal-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--charcoal);
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .journal-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      font-weight: 400;
      line-height: 1.6;
    }

    .journal-card-meta {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 8px;
      font-weight: 400;
    }

    /* ─── CTA Banner ─── */
    .cta-banner {
      background: var(--charcoal);
      text-align: center;
      padding: var(--space-xl) var(--space-md);
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(184, 149, 106, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-banner .section-title {
      color: var(--cream);
      margin-bottom: var(--space-sm);
      position: relative;
    }

    .cta-banner p {
      color: rgba(247, 243, 238, 0.75);
      font-size: 1.05rem;
      font-weight: 400;
      margin-bottom: var(--space-md);
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .cta-banner .btn {
      position: relative;
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--burgundy);
      color: rgba(247, 243, 238, 0.8);
      padding: var(--space-xl) var(--space-md) var(--space-lg);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
      gap: var(--space-lg);
      max-width: 1360px;
      margin: 0 auto;
    }

    .footer-brand .logo-img {
      height: 40px;
      width: auto;
      margin-bottom: var(--space-sm);
    }

    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
      font-weight: 400;
      max-width: 300px;
      margin-top: var(--space-sm);
    }

    .footer h4 {
      font-family: var(--font-body);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: var(--space-md);
      font-weight: 500;
    }

    .footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer a {
      color: rgba(247, 243, 238, 0.7);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .footer a:hover { color: var(--cream); }

    .footer-bottom {
      max-width: 1280px;
      margin: var(--space-lg) auto 0;
      padding-top: var(--space-md);
      border-top: 1px solid rgba(247, 243, 238, 0.1);
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: rgba(247, 243, 238, 0.4);
      font-weight: 400;
    }

    .footer-bottom a {
      color: rgba(247, 243, 238, 0.4);
      font-size: 0.75rem;
    }

    /* ─── Animations ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }

    .fade-up-1 { animation-delay: 0.1s; }
    .fade-up-2 { animation-delay: 0.25s; }
    .fade-up-3 { animation-delay: 0.4s; }
    .fade-up-4 { animation-delay: 0.55s; }

    /* ─── Responsive ─── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .collections-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid .testimonial:last-child { display: none; }
      .transparency-inner { grid-template-columns: 1fr; }
      .why-us-grid { grid-template-columns: 1fr; }
      .why-us-image { max-height: 400px; }
      .showroom-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    }

    @media (max-width: 640px) {
      .nav-inner { gap: var(--space-md); flex-wrap: wrap; justify-content: flex-start; }
      .nav a { font-size: 0.75rem; }
      .collections-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .journal-grid { grid-template-columns: 1fr; }
      .brand-logos { gap: var(--space-md); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; }
      .showroom-images { grid-template-columns: 1fr; }
      .showroom-img:first-child { grid-column: span 1; aspect-ratio: 3/2; }
    }

    /* ─── Content Pages ─── */
    .page-hero {
      background: var(--burgundy);
      padding: var(--space-xl) 0 var(--space-lg);
      position: relative;
      overflow: hidden;
    }

    .page-hero .hero-texture {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(184, 149, 106, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .page-hero .section-tag {
      color: var(--brass-light);
    }

    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 400;
      color: var(--cream);
      line-height: 1.15;
      margin-top: var(--space-xs);
    }

    .page-hero p {
      color: rgba(247, 243, 238, 0.8);
      max-width: 640px;
      margin-top: var(--space-sm);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .page-content {
      padding: var(--space-xl) 0;
    }

    .page-content .container {
      max-width: 800px;
    }

    .page-content h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 500;
      color: var(--burgundy);
      margin-top: var(--space-lg);
      margin-bottom: var(--space-sm);
    }

    .page-content h2:first-child {
      margin-top: 0;
    }

    .page-content h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-top: var(--space-md);
      margin-bottom: 0.5rem;
    }

    .page-content p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
    }

    .page-content ul, .page-content ol {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: var(--space-sm);
      padding-left: 1.5rem;
    }

    .page-content li {
      margin-bottom: 0.4rem;
    }

    .page-content a {
      color: var(--burgundy);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .page-content a:hover {
      color: var(--brass);
    }

    .page-content .legal-note {
      background: var(--cream);
      border-left: 3px solid var(--brass);
      padding: var(--space-sm) var(--space-md);
      margin: var(--space-md) 0;
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .page-content strong {
      font-weight: 500;
      color: var(--charcoal);
    }

    .page-content .last-updated {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: var(--space-md);
      padding-bottom: var(--space-sm);
      border-bottom: 1px solid var(--border);
    }

    /* ─── Trust Hub Grid ─── */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-md);
    }

    .trust-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: var(--space-md);
      text-decoration: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .trust-card:hover {
      border-color: var(--brass);
      box-shadow: 0 4px 20px rgba(74, 40, 49, 0.06);
    }

    .trust-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--burgundy);
      margin: 0 0 0.5rem;
    }

    .trust-card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.6;
      margin: 0;
    }

    /* ─── Reviews Page ─── */
    .review-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: var(--space-md);
      margin-bottom: var(--space-md);
    }

    .review-stars {
      color: var(--brass);
      font-size: 1.1rem;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .review-text {
      font-style: italic;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }

    .review-author {
      font-weight: 500;
      color: var(--charcoal);
      font-size: 0.9rem;
    }

    .review-source {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    .review-summary {
      background: var(--cream);
      padding: var(--space-md);
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-bottom: var(--space-lg);
    }

    .review-summary-score {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--burgundy);
      line-height: 1;
    }

    .review-summary-stars {
      color: var(--brass);
      font-size: 1.3rem;
      letter-spacing: 3px;
    }

    .review-summary-count {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-top: 4px;
    }

    /* ─── Awards Page ─── */
    .award-item {
      display: flex;
      gap: var(--space-md);
      padding: var(--space-md) 0;
      border-bottom: 1px solid var(--border);
    }

    .award-year {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--brass);
      min-width: 80px;
    }

    .award-details h3 {
      margin-top: 0;
    }

    /* ─── Showroom / Location Pages ─── */
    .location-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-md);
    }

    .location-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: var(--space-md);
    }

    .location-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--burgundy);
      margin: 0 0 var(--space-sm);
    }

    .location-detail {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
      font-size: 0.95rem;
      color: var(--text);
    }

    .location-detail-label {
      font-weight: 500;
      color: var(--charcoal);
      min-width: 70px;
    }

    .location-card .btn {
      margin-top: var(--space-sm);
    }

    .location-map {
      width: 100%;
      height: 250px;
      border: 1px solid var(--border);
      margin-top: var(--space-sm);
      background: var(--cream);
    }

    /* ─── Delivery Page ─── */
    .delivery-step {
      display: flex;
      gap: var(--space-md);
      padding: var(--space-md) 0;
      border-bottom: 1px solid var(--border);
    }

    .delivery-step-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--brass-light);
      min-width: 50px;
    }

    @media (max-width: 768px) {
      .trust-grid { grid-template-columns: 1fr; }
      .location-cards { grid-template-columns: 1fr; }
    }
