/* === 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 {
            /* Earthy beige and dark walnut brown palette */
            --bg-page: #FAFAF8;
            --bg-surface: #F1EDE4;
            --text-main: #2A1F1D;
            --text-muted: #5C4B45;
            --accent-strong: #3D2B26;
            --accent-light: #D4C9BD;
            --border-color: #E2DBD1;
            
            /* Typography */
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
            
            /* Spacing - Fluid */
            --space-xs: clamp(0.5rem, 1vw, 1rem);
            --space-sm: clamp(1rem, 2vw, 1.5rem);
            --space-md: clamp(2rem, 4vw, 3rem);
            --space-lg: clamp(4rem, 8vw, 6rem);
            --space-xl: clamp(6rem, 12vw, 8rem);
            
            /* Borders */
            --radius: 4px;
        }

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

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

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

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

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        /* Editorial Headings */
        .kicker {
            display: block;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            margin-bottom: var(--space-xs);
        }

        /* Buttons & CTAs */
        .btn-row {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
            align-items: center;
            margin-top: var(--space-md);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.5rem;
            font-size: 1rem;
            border-radius: var(--radius);
            text-align: center;
            cursor: pointer;
        }

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

        .btn-primary:hover {
            background-color: #2A1F1D;
            color: #FFFFFF;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent-strong);
            border: 1px solid transparent;
            border-bottom: 1px solid var(--accent-strong);
            padding-left: 0;
            padding-right: 0;
            border-radius: 0;
        }

        .btn-secondary:hover {
            color: var(--text-main);
            border-bottom-color: var(--text-main);
        }

        /* Layout Utils */
        .section-pad {
            padding: var(--space-xl) 0;
        }

        .bg-surface {
            background-color: var(--bg-surface);
        }

        .bordered {
            border: 1px solid var(--border-color);
        }

        /* Hero Section - Offset Composition */
        .hero {
            position: relative;
            padding-top: var(--space-xl);
            padding-bottom: var(--space-lg);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            align-items: center;
        }

        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 5fr 7fr;
                gap: var(--space-lg);
            }
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: var(--space-sm);
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 480px;
        }

        .hero-media {
            position: relative;
        }

        @media (min-width: 768px) {
            .hero-media {
                /* Overlapping edge effect */
                margin-right: calc(-50vw + 50%);
                height: 100%;
                min-height: 600px;
            }
            .hero-media img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: var(--radius) 0 0 var(--radius);
            }
        }

        /* Feature Band */
        .feature-band {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-band h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            line-height: 1.2;
            margin-bottom: var(--space-sm);
        }

        /* Alternating Content Panels */
        .content-panel {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            align-items: center;
            margin-bottom: var(--space-lg);
        }

        @media (min-width: 768px) {
            .content-panel {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-lg);
            }
            .content-panel:nth-child(even) .panel-media {
                order: 2;
            }
            .content-panel:nth-child(even) .panel-text {
                order: 1;
            }
        }

        .panel-text h3 {
            font-size: clamp(1.75rem, 2.5vw, 2.25rem);
            margin-bottom: var(--space-sm);
        }

        /* Cards Grid - Product Showcase */
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            margin-top: var(--space-md);
        }

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

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

        .product-card {
            background-color: #FFFFFF;
            padding: var(--space-sm);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

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

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

        .product-card h4 {
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 1.125rem;
            margin: 0 0 0.25rem 0;
        }

        .product-card p {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin: 0;
            flex-grow: 1;
        }

        /* Contact Block */
        .contact-block {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            padding: var(--space-lg);
            border-radius: var(--radius);
        }

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

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-list li {
            margin-bottom: var(--space-sm);
            font-size: 1.125rem;
        }

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

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

/* --- shop.html --- */
:root {
            --color-bg: #FAF8F5;
            --color-surface: #F0EBE1;
            --color-surface-alt: #E6E0D4;
            --color-text: #3E2B23;
            --color-text-muted: #5C4A42;
            --color-accent: #8B5E34;
            --color-accent-hover: #6D4A29;
            --color-border: #D6CFC4;
            
            --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --font-heading: "Playfair Display", "Georgia", ui-serif, serif;
            
            --space-xs: clamp(0.5rem, 1vw, 0.75rem);
            --space-sm: clamp(1rem, 2vw, 1.5rem);
            --space-md: clamp(2rem, 4vw, 3rem);
            --space-lg: clamp(4rem, 8vw, 6rem);
            --space-xl: clamp(6rem, 12vw, 8rem);
            
            --radius: 4px;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 500;
            line-height: 1.2;
            margin: 0 0 1rem 0;
            color: var(--color-text);
        }

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

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

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

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

        /* Editorial Typography & Rhythm */
        .kicker {
            font-family: var(--font-body);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-accent);
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .headline-display {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
        }

        .headline-section {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
        }

        /* Buttons */
        .btn-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 1rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .btn-primary {
            background-color: var(--color-text);
            color: var(--color-bg);
        }

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

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

        .btn-secondary:hover {
            border-color: var(--color-text);
            background-color: rgba(0,0,0,0.03);
        }

        /* Layout Containers */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Hero Offset Composition */
        .hero-offset {
            position: relative;
            padding: var(--space-xl) 0;
            background-color: var(--color-bg);
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-media-wrapper {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 400px;
        }

        .hero-media-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius);
            border: 1px solid var(--color-border);
        }

        @media (min-width: 900px) {
            .hero-offset {
                padding: var(--space-xl) 0 calc(var(--space-xl) + 4rem) 0;
            }
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
            .hero-content {
                padding-right: var(--space-md);
            }
            .hero-media-wrapper {
                position: absolute;
                right: 5%;
                top: 10%;
                bottom: -6rem;
                width: 42%;
                height: auto;
                z-index: 2;
            }
        }

        /* Table / List Rhythm Section */
        .section-list {
            background-color: var(--color-surface);
            padding: var(--space-lg) 0;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

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

        .rhythm-list {
            display: flex;
            flex-direction: column;
        }

        .rhythm-item {
            display: flex;
            flex-direction: column;
            padding: var(--space-sm) 0;
            border-top: 1px solid var(--color-border);
            text-decoration: none;
            color: var(--color-text);
            transition: background-color 0.3s ease;
        }

        .rhythm-item:last-child {
            border-bottom: 1px solid var(--color-border);
        }

        .rhythm-item:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .rhythm-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .rhythm-desc {
            color: var(--color-text-muted);
            margin: 0;
            font-size: 0.95rem;
        }

        @media (min-width: 768px) {
            .rhythm-item {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                padding: var(--space-md) var(--space-sm);
            }
            .rhythm-title {
                flex: 1;
                margin-bottom: 0;
            }
            .rhythm-desc {
                flex: 2;
                max-width: 50%;
            }
            .rhythm-arrow {
                flex: 0 0 auto;
                margin-left: var(--space-md);
                color: var(--color-accent);
            }
        }

        /* Product Grid (Varying Widths) */
        .section-grid {
            padding: var(--space-xl) 0;
            background-color: var(--color-bg);
        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
        }

        .product-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            group;
        }

        .product-image-wrap {
            width: 100%;
            aspect-ratio: 4/5;
            overflow: hidden;
            border-radius: var(--radius);
            border: 1px solid var(--color-border);
            margin-bottom: 1rem;
            background-color: var(--color-surface);
        }

        .product-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .product-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .product-name {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--color-text);
            margin: 0 0 0.25rem 0;
        }

        .product-type {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        @media (min-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .product-card.featured {
                grid-column: span 2;
            }
            .product-card.featured .product-image-wrap {
                aspect-ratio: 16/9;
            }
        }

        /* Wide Feature Band */
        .section-feature-band {
            background-color: var(--color-text);
            color: var(--color-bg);
            padding: var(--space-xl) 0;
        }

        .section-feature-band .kicker {
            color: var(--color-surface-alt);
        }

        .section-feature-band h2, 
        .section-feature-band p {
            color: var(--color-bg);
        }

        .section-feature-band p {
            opacity: 0.9;
        }

        .feature-band-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            align-items: center;
        }

        .feature-band-media img {
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            aspect-ratio: 3/2;
            object-fit: cover;
        }

        @media (min-width: 900px) {
            .feature-band-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feature-band-content {
                padding-left: var(--space-md);
            }
        }

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

        .showroom-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
            background-color: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .showroom-content {
            padding: var(--space-md);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .showroom-media img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0 0 0;
        }

        .contact-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }

        .contact-list svg {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
            color: var(--color-accent);
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        .contact-list a {
            color: var(--color-text);
            font-weight: 500;
            text-decoration: underline;
            text-decoration-color: transparent;
            transition: text-decoration-color 0.2s ease;
        }

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

        @media (min-width: 900px) {
            .showroom-grid {
                grid-template-columns: 1fr 1fr;
            }
            .showroom-content {
                padding: var(--space-lg);
            }
        }

/* --- rooms.html --- */
:root {
      --color-bg: #FAF8F5;
      --color-surface: #F0EBE1;
      --color-text-main: #3E2723;
      --color-text-muted: #5D4037;
      --color-accent: #8D6E63;
      --color-border: rgba(62, 39, 35, 0.15);
      --font-serif: 'Georgia', 'Playfair Display', serif;
      --font-sans: system-ui, -apple-system, sans-serif;
      --radius-tiny: 4px;
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
    }
    
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--color-bg);
      color: var(--color-text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    
    a { color: var(--color-text-main); text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    
    /* Editorial Typography */
    .kicker {
      font-family: var(--font-sans);
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-text-muted);
      margin-bottom: var(--space-xs);
    }
    .heading-display {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      line-height: 1.1;
      font-weight: 400;
      margin-bottom: var(--space-sm);
    }
    .heading-section {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3vw, 2.5rem);
      line-height: 1.2;
      font-weight: 400;
      margin-bottom: var(--space-sm);
    }
    .heading-card {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    
    /* CTA Buttons */
    .btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: var(--space-md); }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      background-color: var(--color-text-main);
      color: var(--color-bg);
      font-weight: 500;
      border-radius: var(--radius-tiny);
      transition: opacity 0.2s;
    }
    .btn-primary:hover { opacity: 0.9; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      background-color: transparent;
      color: var(--color-text-main);
      font-weight: 500;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-tiny);
      transition: background-color 0.2s;
    }
    .btn-secondary:hover { background-color: var(--color-border); }

    /* Layout Utilities */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
    
    /* Hero Offset Composition */
    .hero-offset {
      padding-top: var(--space-xl);
      padding-bottom: var(--space-lg);
      position: relative;
    }
    .hero-offset-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
      align-items: end;
    }
    .hero-text-panel {
      padding-right: var(--space-lg);
      padding-bottom: var(--space-lg);
      position: relative;
      z-index: 2;
    }
    .hero-media-panel {
      position: relative;
      margin-left: -10%;
      margin-bottom: -4rem;
      z-index: 1;
    }
    .hero-media-panel img {
      border-radius: var(--radius-tiny);
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      width: 100%;
      height: 600px;
      object-fit: cover;
    }
    
    /* Wide Feature Band */
    .feature-band {
      background-color: var(--color-surface);
      padding: var(--space-xl) 0;
      margin-top: var(--space-xl);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }
    .feature-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: var(--space-lg);
      align-items: center;
    }
    .feature-media img {
      border-radius: var(--radius-tiny);
      width: 100%;
      height: auto;
      border: 1px solid var(--color-border);
    }

    /* List / Table Rhythm */
    .list-section {
      padding: var(--space-xl) 0;
    }
    .list-header {
      max-width: 600px;
      margin-bottom: var(--space-lg);
    }
    .room-item-row {
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: var(--space-md);
      align-items: center;
      padding: var(--space-sm) 0;
      border-bottom: 1px solid var(--color-border);
      transition: background-color 0.2s;
    }
    .room-item-row:first-of-type {
      border-top: 1px solid var(--color-border);
    }
    .room-item-row:hover {
      background-color: var(--color-surface);
    }
    .room-item-media img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: var(--radius-tiny);
    }
    .room-item-content p {
      color: var(--color-text-muted);
      max-width: 500px;
    }
    .room-item-action a {
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--color-text-main);
      border-bottom: 1px solid var(--color-text-main);
      padding-bottom: 2px;
    }
    
    /* Asymmetric Cards Grid */
    .asymmetric-section {
      padding: var(--space-xl) 0;
      background-color: var(--color-surface);
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }
    .asymmetric-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }
    .card-wide {
      grid-column: span 7;
    }
    .card-narrow {
      grid-column: span 5;
      margin-top: var(--space-lg);
    }
    .room-card {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }
    .room-card img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: var(--radius-tiny);
      border: 1px solid var(--color-border);
    }
    
    /* Reader Submissions / Community */
    .community-section {
      padding: var(--space-xl) 0;
      text-align: center;
    }
    .community-header {
      max-width: 600px;
      margin: 0 auto var(--space-lg);
    }
    .community-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }
    .community-gallery img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-tiny);
      border: 1px solid var(--color-border);
    }
    .community-caption {
      margin-top: var(--space-xs);
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    /* Editorial Contact / Footer-like Section */
    .editorial-contact {
      padding: var(--space-xl) 0;
      background-color: var(--color-bg);
      border-top: 1px solid var(--color-border);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
    }
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }
    .contact-link {
      font-size: 1.125rem;
      color: var(--color-text-main);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
      display: inline-block;
      width: fit-content;
    }
    .contact-link:hover {
      border-color: var(--color-text-main);
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .hero-offset-grid, .feature-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-media-panel {
        margin-left: 0;
        margin-bottom: 0;
      }
      .hero-media-panel img {
        height: 400px;
      }
      .hero-text-panel {
        padding-right: 0;
        padding-bottom: 0;
      }
      .asymmetric-grid {
        display: flex;
        flex-direction: column;
      }
      .card-narrow {
        margin-top: 0;
      }
      .room-item-row {
        grid-template-columns: 100px 1fr;
      }
      .room-item-action {
        grid-column: span 2;
        margin-top: var(--space-xs);
      }
      .community-gallery {
        grid-template-columns: 1fr;
      }
    }

/* --- inspiration.html --- */
:root {
      --bg: #faf8f5;
      --surface: #ffffff;
      --text: #2d231e;
      --text-muted: #6b5c54;
      --border: #e6dfd7;
      --accent: #8a6e59;
      --accent-hover: #6d5543;
      --radius: 4px;
      --space-sm: clamp(1rem, 2vw, 1.5rem);
      --space-md: clamp(2rem, 4vw, 3rem);
      --space-lg: clamp(4rem, 8vw, 6rem);
      --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    }

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

    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      font-weight: 400;
      color: var(--text);
      margin-top: 0;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    p {
      margin-top: 0;
      margin-bottom: 1.5rem;
    }

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

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

    .kicker {
      display: block;
      font-family: var(--font-body);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.875rem;
      color: var(--accent);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 1.75rem;
      border-radius: var(--radius);
      text-decoration: none !important;
      font-weight: 500;
      font-size: 1rem;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
      cursor: pointer;
      text-align: center;
    }

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

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

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

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

    /* Section: Hero Offset */
    .hero-offset {
      position: relative;
      padding: var(--space-lg) var(--space-sm);
      overflow: hidden;
    }

    .hero-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 5fr 7fr;
      align-items: center;
    }

    .hero-content {
      background-color: var(--surface);
      padding: var(--space-md);
      border: 1px solid var(--border);
      position: relative;
      z-index: 2;
      margin-right: -15%;
      border-radius: var(--radius);
      box-shadow: 0 4px 24px rgba(45, 35, 30, 0.04);
    }

    .hero-content h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1.5rem;
    }

    .hero-content p {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-media {
      position: relative;
      z-index: 1;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/5;
      border: 1px solid var(--border);
    }

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

    /* Section: List Rhythm */
    .list-section {
      padding: var(--space-lg) var(--space-sm);
      max-width: 1000px;
      margin: 0 auto;
    }

    .list-header {
      text-align: center;
      margin-bottom: var(--space-md);
    }

    .list-header h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
    }

    .list-item {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: var(--space-md);
      padding: var(--space-md) 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .list-item:first-of-type {
      border-top: 1px solid var(--border);
    }

    .list-title h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .list-desc {
      color: var(--text-muted);
      font-size: 1.0625rem;
    }

    .list-media {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .list-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Section: Calm Panel */
    .calm-panel {
      background-color: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: var(--space-lg) var(--space-sm);
    }

    .panel-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .panel-header {
      margin-bottom: var(--space-md);
    }

    .panel-header h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
    }

    .qa-item {
      margin-bottom: var(--space-md);
    }

    .qa-item:last-child {
      margin-bottom: 0;
    }

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

    .qa-item p {
      color: var(--text-muted);
      margin-bottom: 0;
    }

    /* Section: Framed Action */
    .action-section {
      padding: var(--space-lg) var(--space-sm);
    }

    .framed-action {
      max-width: 800px;
      margin: 0 auto;
      padding: var(--space-md);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      text-align: center;
      background-color: var(--bg);
    }

    .framed-action h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
    }

    .framed-action p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      border-top: 1px solid var(--border);
      padding-top: 2rem;
    }

    .contact-block h3 {
      font-size: 1rem;
      font-family: var(--font-body);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .contact-block a {
      font-size: 1.125rem;
      color: var(--text);
      text-decoration: none;
    }

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

    /* Responsive Stacking */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-content {
        margin-right: 0;
        margin-bottom: -10%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-media {
        aspect-ratio: 4/3;
      }
      
      .list-item {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .list-media {
        max-width: 300px;
      }

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

/* --- terms-conditions.html --- */
:root {
            /* Earthy beige and dark walnut brown palette */
            --color-bg: #FAF8F5;
            --color-surface: #FFFFFF;
            --color-text-main: #2C241E;
            --color-text-muted: #5C4E43;
            --color-border: #E5DFD5;
            --color-accent: #8C6444;
            --color-accent-hover: #6E4D32;
            
            /* Typography */
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
            
            /* Spacing & Radius */
            --space-xs: clamp(0.5rem, 1vw, 0.75rem);
            --space-sm: clamp(1rem, 2vw, 1.5rem);
            --space-md: clamp(1.5rem, 3vw, 2.5rem);
            --space-lg: clamp(3rem, 5vw, 5rem);
            --space-xl: clamp(4rem, 8vw, 8rem);
            --radius-sm: 4px;
        }

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

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-serif);
            font-weight: 500;
            line-height: 1.2;
            color: var(--color-text-main);
            margin-bottom: var(--space-sm);
        }

        p, ul, ol {
            margin-bottom: var(--space-md);
            color: var(--color-text-muted);
        }

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

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

        ul {
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }

        .legal-header {
            padding: var(--space-xl) 0 var(--space-lg);
            text-align: center;
            border-bottom: 1px solid var(--color-border);
            margin-bottom: var(--space-lg);
        }

        .legal-header h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: var(--space-xs);
        }

        .legal-header .kicker {
            font-family: var(--font-sans);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.875rem;
            color: var(--color-accent);
            display: block;
            margin-bottom: var(--space-sm);
        }

        .legal-content {
            background-color: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            padding: var(--space-lg);
            margin-bottom: var(--space-xl);
            box-shadow: 0 2px 10px rgba(44, 36, 30, 0.02);
        }

        .legal-section {
            margin-bottom: var(--space-lg);
        }

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

        .legal-section h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            padding-bottom: var(--space-xs);
            border-bottom: 1px solid var(--color-border);
            margin-bottom: var(--space-md);
        }

        .contact-block {
            background-color: var(--color-bg);
            border-radius: var(--radius-sm);
            padding: var(--space-md);
            margin-top: var(--space-sm);
            border: 1px solid var(--color-border);
        }

        .contact-block ul {
            margin-bottom: 0;
            list-style: none;
            padding-left: 0;
        }

        .contact-block li {
            margin-bottom: var(--space-xs);
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 640px) {
            .contact-block li {
                flex-direction: row;
                align-items: baseline;
            }
            .contact-block strong {
                min-width: 120px;
            }
        }

        .last-updated {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin-top: var(--space-md);
        }

/* --- privacy-policy.html --- */
:root {
    --bg: #F9F7F3;
    --surface: #FFFFFF;
    --text: #2C241E;
    --text-muted: #5C4F44;
    --accent: #876E5B;
    --accent-hover: #6E5745;
    --border: #E8E0D5;
    
    --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: system-ui, -apple-system, sans-serif;
    
    --radius-tiny: 4px;
    
    --space-sm: clamp(1rem, 1.5vw, 1.5rem);
    --space-md: clamp(2rem, 3vw, 3rem);
    --space-lg: clamp(4rem, 6vw, 6rem);
  }

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

  main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .legal-hero {
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }

  .kicker {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-weight: 600;
  }

  h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 0;
    color: var(--text);
    font-weight: 400;
  }

  .legal-content {
    padding: var(--space-lg) var(--space-md);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .policy-block {
    margin-bottom: var(--space-md);
    background: var(--surface);
    padding: var(--space-md);
    border-radius: var(--radius-tiny);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(44, 36, 30, 0.05);
  }

  h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-weight: 400;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
  }

  p, ul {
    margin: 0 0 1rem 0;
    color: var(--text-muted);
  }

  ul {
    padding-left: 1.5rem;
  }

  li {
    margin-bottom: 0.5rem;
  }

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

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

  .contact-list {
    list-style: none;
    padding: 0;
  }
  
  .contact-list li {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .contact-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-value {
    color: var(--text-muted);
  }

/* 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: #2a1f1d;
  --g2-palette-light: #fafaf8;
  --g2-palette-accent: #3d2b26;
  --g2-palette-text: #2a1f1d;
  --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 */
