/* === 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: #FAF7F2; /* Earthy beige */
            --surface-color: #FFFFFF;
            --text-dark: #3E2723; /* Dark walnut brown */
            --text-muted: #6D4C41;
            --accent-color: #8D6E63;
            --border-color: #D7CCC8;
            --radius: 4px;
            --spacing-section: 6rem;
            --font-serif: "Playfair Display", "Merriweather", Georgia, serif;
            --font-sans: system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

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

        h1, h2, h3, h4, h5 {
            font-family: var(--font-serif);
            font-weight: 400;
            margin-top: 0;
            color: var(--text-dark);
        }

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

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

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--text-dark);
            color: var(--surface-color);
            padding: 1rem 2rem;
            border-radius: var(--radius);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.875rem;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

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

        .kicker {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-color);
            margin-bottom: 1rem;
            border-left: 2px solid var(--accent-color);
            padding-left: 1rem;
            font-weight: 600;
        }

        .section-padding {
            padding: var(--spacing-section) 0;
        }

        /* Hero Split Composition */
        .hero {
            display: grid;
            grid-template-columns: 1fr;
            min-height: 85vh;
            background-color: var(--surface-color);
        }

        @media(min-width: 900px) {
            .hero {
                grid-template-columns: 55% 45%;
            }
        }

        .hero-media {
            position: relative;
            width: 100%;
            height: 50vh;
            overflow: hidden;
        }

        @media(min-width: 900px) {
            .hero-media {
                height: 100%;
            }
        }

        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 2rem;
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 400px;
        }

        /* Section Titles */
        .section-header {
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .section-title {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        /* New Arrivals Grid (Asymmetrical) */
        .arrivals-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media(min-width: 768px) {
            .arrivals-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .arrival-card.featured {
                grid-column: span 2;
            }
        }

        .arrival-card {
            background: var(--surface-color);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(62, 39, 35, 0.05);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .arrival-card:hover {
            transform: translateY(-5px);
        }

        .arrival-media {
            position: relative;
            padding-top: 75%;
        }

        .arrival-card.featured .arrival-media {
            padding-top: 50%;
        }

        .arrival-media img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .arrival-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .arrival-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .arrival-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .arrival-link {
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
        }

        /* Room Categories */
        .rooms-band {
            background-color: var(--surface-color);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media(min-width: 800px) {
            .rooms-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .room-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 3/4;
            display: block;
        }

        .room-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .room-card:hover img {
            transform: scale(1.05);
        }

        .room-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(62, 39, 35, 0.8) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .room-title {
            color: var(--surface-color);
            font-size: 1.5rem;
            margin: 0;
        }

        /* How to Shop */
        .process-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media(min-width: 768px) {
            .process-list {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .process-step {
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
        }

        .step-num {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
            display: block;
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        /* Reviews */
        .reviews-band {
            background-color: var(--text-dark);
            color: var(--surface-color);
            text-align: center;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        @media(min-width: 768px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .review-card {
            padding: 2rem;
        }

        .review-text {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: #EFEBE4;
        }

        .review-author {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-color);
        }

        /* FAQ */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border-color);
        }

        .faq-q {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .faq-a {
            color: var(--text-muted);
            margin: 0;
        }

        /* Contact Ribbon */
        .contact-ribbon {
            background-color: var(--surface-color);
            border-top: 1px solid var(--border-color);
            padding: 4rem 0;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media(min-width: 768px) {
            .contact-layout {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }

        .contact-detail {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-link {
            font-size: 1.125rem;
            display: inline-flex;
            align-items: center;
            color: var(--text-dark);
            font-weight: 500;
        }

/* --- shop.html --- */
:root {
            --color-bg: #F5F2EB;
            --color-surface: #FAF8F5;
            --color-text: #3E2723;
            --color-muted: #795548;
            --color-accent: #5D4037;
            --color-accent-hover: #4E342E;
            --color-border: #D7CCC8;
            
            --font-serif: "Georgia", "Times New Roman", serif;
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            
            --radius: 4px;
            --shadow-soft: 0 4px 12px rgba(62, 39, 35, 0.06);
            --shadow-hover: 0 8px 24px rgba(62, 39, 35, 0.12);
            
            --container-width: 1200px;
        }

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

        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            font-weight: normal;
            margin-top: 0;
            color: var(--color-text);
        }

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

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            object-fit: cover;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* Section Rhythm & Kickers */
        section {
            padding: var(--space-xl) 0;
        }

        .section-header {
            margin-bottom: var(--space-lg);
            max-width: 600px;
        }

        .kicker {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-muted);
            padding-left: var(--space-sm);
            border-left: 2px solid var(--color-accent);
            margin-bottom: var(--space-sm);
        }

        .section-title {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: var(--space-md);
        }

        /* Button */
        .btn {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.9375rem;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            background-color: var(--color-accent);
            color: #FFFFFF;
            border: 1px solid var(--color-accent);
            border-radius: var(--radius);
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

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

        .btn-outline {
            background-color: transparent;
            color: var(--color-text);
            border-color: var(--color-border);
        }

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

        /* Small Hero (Editorial Split) */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-lg);
            align-items: center;
            padding-top: var(--space-lg);
            padding-bottom: var(--space-lg);
        }

        .hero-content {
            padding-right: var(--space-lg);
        }

        .hero-title {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: var(--space-md);
        }

        .hero-text {
            font-size: 1.125rem;
            color: var(--color-muted);
            margin-bottom: var(--space-md);
            max-width: 90%;
        }

        .hero-media img {
            width: 100%;
            aspect-ratio: 4/5;
            box-shadow: var(--shadow-soft);
        }

        /* Furniture Range (Asymmetrical Cards) */
        .furniture-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: var(--space-md);
        }

        .furn-card {
            position: relative;
            background-color: var(--color-surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .furn-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .furn-card.large {
            grid-column: span 8;
        }

        .furn-card.small {
            grid-column: span 4;
        }

        .furn-image {
            aspect-ratio: 16/9;
            width: 100%;
            border-radius: 0;
        }

        .furn-card.small .furn-image {
            aspect-ratio: 4/3;
        }

        .furn-info {
            padding: var(--space-md);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .furn-title {
            font-size: 1.5rem;
            margin-bottom: var(--space-xs);
        }

        .furn-link {
            font-family: var(--font-sans);
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: var(--space-sm);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Decor Accessories (List/Image Band) */
        .decor-band {
            background-color: var(--color-surface);
            padding: var(--space-xl) 0;
        }

        .decor-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            gap: var(--space-xl);
            align-items: center;
        }

        .decor-media img {
            aspect-ratio: 1/1;
        }

        .decor-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .decor-item {
            border-bottom: 1px solid var(--color-border);
            padding-bottom: var(--space-md);
        }

        .decor-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .decor-item-title {
            font-size: 1.75rem;
            margin-bottom: var(--space-xs);
        }

        .decor-item-desc {
            color: var(--color-muted);
            margin-bottom: var(--space-sm);
        }

        /* All Products (Clean Grid) */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--space-lg) var(--space-md);
        }

        .product-card {
            display: block;
            color: inherit;
        }

        .product-card:hover .product-title {
            color: var(--color-accent);
        }

        .product-img-wrap {
            background-color: var(--color-surface);
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: var(--space-sm);
            aspect-ratio: 1/1;
        }

        .product-img-wrap img {
            width: 100%;
            height: 100%;
            border-radius: 0;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.05);
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .product-title {
            font-family: var(--font-serif);
            font-size: 1.125rem;
            margin: 0;
            transition: color 0.2s ease;
        }

        .product-price {
            font-family: var(--font-sans);
            color: var(--color-muted);
            font-size: 0.9375rem;
        }

        /* Comments */
        .comments-section {
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: var(--space-xl) 0;
        }

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

        .comment-card {
            background-color: var(--color-bg);
            padding: var(--space-md);
            border-radius: var(--radius);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .comment-quote {
            font-family: var(--font-serif);
            font-size: 1.125rem;
            line-height: 1.5;
            color: var(--color-text);
            margin-bottom: var(--space-md);
            position: relative;
        }

        .comment-quote::before {
            content: "\201C";
            font-size: 3rem;
            color: var(--color-border);
            position: absolute;
            top: -1.5rem;
            left: -0.5rem;
            line-height: 1;
            font-family: var(--font-serif);
        }

        .comment-author {
            font-family: var(--font-sans);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-split {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }
            .hero-content {
                padding-right: 0;
            }
            .decor-layout {
                grid-template-columns: 1fr;
            }
            .furn-card.large, .furn-card.small {
                grid-column: span 12;
            }
            .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            :root {
                --space-lg: 3rem;
                --space-xl: 4rem;
            }
            .hero-title {
                font-size: 2.25rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .comments-grid {
                grid-template-columns: 1fr;
            }
        }

/* --- rooms.html --- */
:root {
      --bg-color: #F8F6F3;
      --surface-color: #FFFFFF;
      --text-main: #2A1F1A;
      --text-muted: #5C4A42;
      --accent-color: #3B2A22;
      --accent-light: #E5DFD8;
      --border-color: #D6CEC5;
      --radius-sm: 4px;
      --radius-md: 6px;
      --space-section: 6rem;
      --space-element: 2rem;
    }

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

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, .serif-text {
      font-family: "Playfair Display", "Georgia", ui-serif, serif;
      font-weight: 500;
      color: var(--text-main);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-sm);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }
    .kicker::before {
      content: "";
      display: block;
      width: 2rem;
      height: 2px;
      background-color: var(--accent-color);
    }

    .action-cluster {
      display: inline-block;
      padding: 1.5rem;
      background-color: var(--surface-color);
      border: 1px solid var(--border-color);
      border-left: 4px solid var(--accent-color);
      border-radius: var(--radius-sm);
      margin-top: 2rem;
    }
    .action-cluster p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--accent-color);
      color: var(--bg-color);
      padding: 0.875rem 1.5rem;
      border-radius: var(--radius-sm);
      font-weight: 500;
      transition: opacity 0.2s ease;
    }
    .btn-primary:hover {
      opacity: 0.9;
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--accent-color);
      color: var(--accent-color);
      padding: 0.875rem 1.5rem;
      border-radius: var(--radius-sm);
      font-weight: 500;
      transition: background-color 0.2s ease, color 0.2s ease;
    }
    .btn-outline:hover {
      background-color: var(--accent-color);
      color: var(--bg-color);
    }

    /* Sections */
    .section-spacing {
      padding-top: var(--space-section);
      padding-bottom: var(--space-section);
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Small Hero */
    .hero-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    .hero-text-col {
      max-width: 500px;
    }
    .hero-text-col h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .hero-text-col p {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }
    .hero-media-col img {
      width: 100%;
      height: 60vh;
      object-fit: cover;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    /* Living Room - Asymmetrical Feature */
    .asym-feature {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .asym-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .asym-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
    .asym-content p {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }
    .asym-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: end;
    }
    .asym-images img:first-child {
      grid-column: 1 / -1;
      height: 500px;
      object-fit: cover;
    }

    /* Bedroom - Quiet Narrative */
    .quiet-narrative {
      background-color: var(--surface-color);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .narrative-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .narrative-inner .kicker {
      justify-content: center;
    }
    .narrative-inner .kicker::before, .narrative-inner .kicker::after {
      content: "";
      display: block;
      width: 2rem;
      height: 2px;
      background-color: var(--accent-color);
    }
    .narrative-inner h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .narrative-inner p {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 3rem;
    }
    .narrative-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .narrative-gallery img {
      aspect-ratio: 4/5;
      object-fit: cover;
    }

    /* Dining Room - Broad Band */
    .broad-band {
      background-color: var(--accent-color);
      color: var(--bg-color);
    }
    .broad-band h2, .broad-band .serif-text, .broad-band .kicker {
      color: var(--bg-color);
    }
    .broad-band .kicker::before {
      background-color: var(--bg-color);
    }
    .broad-band .text-muted {
      color: var(--accent-light);
    }
    .broad-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    .broad-media img {
      height: 600px;
      object-fit: cover;
      width: 100%;
    }
    .broad-band .action-cluster {
      background-color: transparent;
      border-color: var(--accent-light);
      border-left-color: var(--bg-color);
    }
    .broad-band .action-cluster p {
      color: var(--accent-light);
    }
    .broad-band .btn-primary {
      background-color: var(--bg-color);
      color: var(--accent-color);
    }

    /* Reader Submissions - Varied Density */
    .density-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .density-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .density-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    .density-card.large img {
      height: 450px;
    }
    .density-card h3 {
      font-size: 1.25rem;
    }
    .density-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .hero-split {
        grid-template-columns: 2fr 3fr;
      }
      .asym-feature {
        grid-template-columns: 1fr 1fr;
      }
      .asym-images {
        grid-template-columns: 1fr 1fr;
      }
      .asym-content {
        padding-right: 4rem;
      }
      .broad-split {
        grid-template-columns: 1fr 1fr;
      }
      .density-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .density-card.large {
        grid-column: 1 / -1;
      }
    }

    @media (min-width: 1024px) {
      .density-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .density-card.large {
        grid-column: span 2;
      }
    }

    @media (max-width: 767px) {
      .narrative-gallery {
        grid-template-columns: 1fr;
      }
      .hero-media-col img {
        height: 40vh;
      }
      .broad-media img {
        height: 400px;
      }
    }

/* --- inspiration.html --- */
:root {
      /* Earthy Beige and Walnut Brown Palette */
      --bg-base: #F7F5F0;
      --bg-alt: #EBE5DB;
      --surface: #FFFFFF;
      --walnut-dark: #2E1F18;
      --walnut-medium: #4A3728;
      --walnut-light: #7A624E;
      --accent: #A68A6D;
      
      /* Radius */
      --radius-sm: 4px;
      
      /* Spacing Rhythm */
      --space-xs: 0.5rem;
      --space-sm: 1.5rem;
      --space-md: 3rem;
      --space-lg: 6rem;
      
      /* Typography */
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: system-ui, -apple-system, sans-serif;
    }

    /* Base Resets */
    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-base);
      color: var(--walnut-dark);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      margin: 0 0 var(--space-sm) 0;
      font-weight: 600;
      line-height: 1.2;
    }

    p {
      margin: 0 0 var(--space-sm) 0;
      color: var(--walnut-medium);
    }

    a {
      color: var(--walnut-dark);
      text-decoration: underline;
      text-decoration-color: var(--accent);
      text-underline-offset: 4px;
      transition: color 0.3s ease;
    }

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

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-sm);
    }

    /* Kicker & Section Headings */
    .kicker {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--walnut-light);
      margin-bottom: var(--space-xs);
    }

    .section-header {
      border-left: 3px solid var(--walnut-medium);
      padding-left: 1.5rem;
      margin-bottom: var(--space-md);
    }

    .section-header h2 {
      margin-bottom: 0;
      font-size: 2.25rem;
    }

    /* Layout Utilities */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section-pad {
      padding: var(--space-lg) 0;
    }

    /* Buttons */
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 2rem;
      border: 1px solid var(--walnut-dark);
      background: transparent;
      color: var(--walnut-dark);
      font-family: var(--font-sans);
      font-weight: 500;
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-outline:hover {
      background: var(--walnut-dark);
      color: var(--surface);
    }

    /* Section 1: Small Hero (Editorial Split) */
    .hero-split {
      display: flex;
      flex-direction: column;
      background-color: var(--bg-alt);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .hero-split__text {
      padding: var(--space-lg) 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .hero-split__title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
    }
    
    .hero-split__desc {
      font-size: 1.125rem;
      max-width: 480px;
      margin-bottom: 2rem;
    }
    
    .hero-split__media {
      min-height: 40vh;
      position: relative;
    }
    
    .hero-split__media img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
    }

    @media (min-width: 900px) {
      .hero-split {
        flex-direction: row;
        min-height: 60vh;
      }
      .hero-split__text {
        flex: 0 0 45%;
        padding: var(--space-lg) 4rem;
      }
      .hero-split__media {
        flex: 1;
        min-height: auto;
      }
    }

    /* Section 2: Design Ideas (Asymmetrical Feature Band) */
    .design-ideas-band {
      background-color: var(--bg-base);
    }

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

    .asym-media img {
      width: 100%;
      height: auto;
      aspect-ratio: 4/5;
      object-fit: cover;
    }

    .asym-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .idea-block {
      margin-bottom: 2.5rem;
    }

    .idea-block h3 {
      font-size: 1.5rem;
    }

    @media (min-width: 900px) {
      .asym-grid {
        grid-template-columns: 5fr 4fr;
        align-items: center;
      }
      .asym-media img {
        aspect-ratio: 16/10;
      }
    }

    /* Section 3: Colour Guides (Broad Proof Band) */
    .colour-guides-band {
      background-color: var(--surface);
    }

    .colour-flex {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .colour-card {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }

    .colour-card__swatch {
      height: 120px;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }

    .colour-card__swatch span {
      background: rgba(255,255,255,0.8);
      padding: 0.25rem 0.75rem;
      font-size: 0.85rem;
      font-family: var(--font-sans);
      font-weight: 500;
      border-radius: var(--radius-sm);
    }

    .colour-card__info {
      padding: 1.5rem;
      background: var(--surface);
    }

    .swatch-walnut { background-color: #4A3728; }
    .swatch-linen { background-color: #EBE5DB; }
    .swatch-sage { background-color: #8C998B; }
    .swatch-terracotta { background-color: #C17754; }

    @media (min-width: 768px) {
      .colour-flex {
        flex-direction: row;
      }
      .colour-card {
        flex: 1;
      }
      /* Varying emphasis */
      .colour-card:nth-child(1) {
        flex: 1.5;
      }
    }

    /* Section 4: Questions & Answers (Quiet Narrative) */
    .qa-band {
      background-color: var(--bg-alt);
    }

    .qa-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .qa-item {
      border-top: 1px solid var(--walnut-light);
      padding: 2rem 0;
    }

    .qa-item h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .qa-item p {
      margin-bottom: 0;
    }

    .ask-designer {
      margin-top: 4rem;
      padding: 2rem;
      border: 1px solid var(--walnut-medium);
      border-radius: var(--radius-sm);
      text-align: center;
      background-color: var(--bg-base);
    }

    .ask-designer h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .contact-links {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

/* --- terms-conditions.html --- */
:root {
      --color-bg: #F5F2EB;
      --color-surface: #EBE6D8;
      --color-text: #2D1A11;
      --color-text-muted: #4A3A31;
      --color-accent: #6C422C;
      --color-border: #D8CFC0;
      --font-heading: "Playfair Display", Georgia, serif;
      --font-body: "Inter", system-ui, -apple-system, sans-serif;
      --radius-tiny: 4px;
    }

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

    main {
      max-width: 840px;
      margin: 0 auto;
      padding: 5rem 1.5rem;
    }

    .legal-header {
      margin-bottom: 4rem;
      border-bottom: 1px solid var(--color-border);
      padding-bottom: 2rem;
    }

    .legal-kicker {
      display: inline-block;
      font-family: var(--font-body);
      text-transform: uppercase;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: 1rem;
    }

    .legal-header h1 {
      font-family: var(--font-heading);
      font-size: 2.75rem;
      font-weight: 600;
      margin: 0;
      color: var(--color-text);
      line-height: 1.1;
    }

    .legal-section {
      margin-bottom: 3rem;
    }

    .legal-section h2 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 600;
      margin: 0 0 1.25rem 0;
      color: var(--color-text);
      border-left: 3px solid var(--color-accent);
      padding-left: 1rem;
      line-height: 1.3;
    }

    .legal-section p {
      font-size: 1.05rem;
      color: var(--color-text-muted);
      margin: 0 0 1.25rem 0;
      max-width: 70ch;
    }

    .legal-section ul {
      font-size: 1.05rem;
      color: var(--color-text-muted);
      margin: 0 0 1.25rem 0;
      padding-left: 1.5rem;
      max-width: 70ch;
    }

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

    .contact-box {
      background-color: var(--color-surface);
      border-radius: var(--radius-tiny);
      padding: 2rem;
      margin-top: 4rem;
    }

    .contact-box h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      margin: 0 0 1rem 0;
      color: var(--color-text);
    }

    .contact-box p {
      margin: 0 0 0.5rem 0;
      font-size: 1rem;
    }

    a {
      color: var(--color-accent);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
    }

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

    @media (max-width: 768px) {
      main {
        padding: 3rem 1.25rem;
      }
      .legal-header h1 {
        font-size: 2.25rem;
      }
      .contact-box {
        padding: 1.5rem;
      }
    }

/* --- privacy-policy.html --- */
:root {
            --bg: #F9F8F6;
            --surface: #F1EFEA;
            --text: #3A2A22;
            --text-muted: #5E4B41;
            --accent: #2A1F1A;
            --border: #D8D2C4;
            --radius: 4px;
            --font-head: 'Playfair Display', 'Georgia', serif;
            --font-body: system-ui, -apple-system, sans-serif;
            --space-section: 5rem;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        h1, h2, h3 {
            font-family: var(--font-head);
            color: var(--accent);
            font-weight: 500;
            line-height: 1.2;
        }

        a {
            color: var(--accent);
            text-decoration: underline;
            text-decoration-color: var(--border);
            text-underline-offset: 4px;
            transition: text-decoration-color 0.2s ease;
        }

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

        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            padding: var(--space-section) 1.5rem;
        }

        .legal-hero {
            margin-bottom: 4rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 2.5rem;
        }

        .legal-hero-kicker {
            display: inline-block;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .legal-hero h1 {
            font-size: 3rem;
            margin: 0 0 1rem 0;
            letter-spacing: -0.02em;
        }

        .legal-hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin: 0;
            max-width: 600px;
        }

        .policy-block {
            margin-bottom: 3.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .policy-block::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            bottom: 0.5rem;
            width: 3px;
            background-color: var(--accent);
        }

        .policy-block h2 {
            font-size: 1.75rem;
            margin-top: 0;
            margin-bottom: 1.25rem;
        }

        .policy-block p {
            margin-top: 0;
            margin-bottom: 1.25rem;
        }

        .policy-block p:last-child {
            margin-bottom: 0;
        }

        .policy-block ul {
            margin-top: 0;
            margin-bottom: 1.25rem;
            padding-left: 1.25rem;
        }

        .policy-block li {
            margin-bottom: 0.5rem;
        }

        .contact-surface {
            background-color: var(--surface);
            padding: 2rem;
            border-radius: var(--radius);
            margin-top: 2rem;
        }

        .contact-surface p {
            margin: 0.75rem 0;
            font-size: 1rem;
        }

        .contact-surface strong {
            color: var(--accent);
            display: inline-block;
            width: 80px;
        }

        @media (max-width: 600px) {
            .legal-container {
                padding: 3rem 1.25rem;
            }
            .legal-hero h1 {
                font-size: 2.25rem;
            }
            .policy-block h2 {
                font-size: 1.5rem;
            }
            .policy-block {
                padding-left: 1rem;
            }
        }

/* 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: #2e1f18;
  --g2-palette-light: #faf7f2;
  --g2-palette-accent: #8d6e63;
  --g2-palette-text: #3e2723;
  --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 */
