﻿:root {
  --ink: #1d2426;
  --muted: #63706d;
  --paper: #faf8f3;
  --surface: #ffffff;
  --clay: #b66f55;
  --teal: #426e68;
  --line: #ded9ce;
  --shadow: 0 24px 60px rgba(29, 36, 38, 0.14);
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(222, 217, 206, 0.8);
    backdrop-filter: blur(16px);
    max-height: 75px;
}
.site-nav { max-width: 1180px; padding: 0 0; }
.navbar {
    --bs-navbar-padding-y: 0rem !important;
}
.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 10px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #063f6b;
    font-size: 2.05rem;
    font-weight: 800;
}
.brand-mark span { display: grid; width: 36px; height: 36px; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; }
.nav-link { color: var(--ink); font-weight: 650; margin-left: 12px; }
.nav-link:hover, .nav-link:focus { color: var(--teal); }
.nav-cta {
    padding: 10px 18px;
    color: #fff;
    background: #c3f4f0;
    border-radius: 999px;
}
.nav-cta:hover, .nav-cta:focus { color: #fff; background: var(--teal); }
main { overflow: hidden; }

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1220px;
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 42px) 24px 44px;
}
.eyebrow { margin: 0 0 12px; color: var(--teal); font-size: 0.78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero-content h1, .section-heading h2, .material-panel h2, .contact-strip h2 {
    margin: 0;
    color: #15598e;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.98;
}
.hero-content h1 { max-width: 650px; font-size: clamp(3rem, 7vw, 3rem); }
.hero-copy { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { border-radius: 999px; font-weight: 750; }
.btn-lg { padding: 13px 22px; font-size: 0.98rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 590px; margin: 42px 0 0; }
.hero-metrics div { padding: 18px; background: rgba(255, 255, 255, 0.62); border: 1px solid var(--line); border-radius: 8px; }
.hero-metrics dt { font-size: 1.45rem; font-weight: 800; }
.hero-metrics dd { margin: 2px 0 0; color: var(--muted); font-size: 0.84rem; }

.hero-visual {
  position: relative;
  min-height: min(680px, 72vh);
  overflow: hidden;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.72), transparent 26%), linear-gradient(135deg, #e8ddd0 0%, #f8f4eb 42%, #cad8d2 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 220ms ease; }
.hero-visual.has-image img { opacity: 1; }
.textile-stack { position: absolute; inset: 10% 8% 9%; }
.fold { position: absolute; display: block; border: 1px solid rgba(255, 255, 255, 0.68); border-radius: 8px; box-shadow: 0 20px 40px rgba(29, 36, 38, 0.16); }
.fold-one { right: 4%; bottom: 2%; width: 68%; height: 52%; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.14) 1px, transparent 1px, transparent 10px), linear-gradient(135deg, #efe8dd, #d2b69f); }
.fold-two { left: 3%; top: 14%; width: 62%; height: 34%; background: repeating-linear-gradient(0deg, rgba(29,36,38,0.05), rgba(29,36,38,0.05) 1px, transparent 1px, transparent 12px), linear-gradient(135deg, #426e68, #8aa49a); }
.fold-three { left: 17%; bottom: 18%; width: 52%; height: 24%; background: radial-gradient(circle at 18% 20%, rgba(255,255,255,0.22), transparent 3px), linear-gradient(135deg, #fbf8f0, #f1d6c8); }
.floating-label { position: absolute; right: 22px; bottom: 22px; display: grid; gap: 2px; width: min(220px, calc(100% - 44px)); padding: 16px 18px; background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 8px; box-shadow: 0 18px 34px rgba(29, 36, 38, 0.14); backdrop-filter: blur(12px); }
.floating-label strong { font-size: 0.82rem; text-transform: uppercase; }
.floating-label span { color: var(--muted); font-size: 0.9rem; }

.section-band {
    background: #063f6b; color: #fff;
}
.section-grid, .content-section, .split-section, .contact-strip, .site-footer { max-width: 1180px; margin: 0 auto; padding-right: 24px; padding-left: 24px; }
.section-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.section-grid.compact { padding-top: 19px; padding-bottom: 19px; }
.section-grid article { border-left: 1px solid rgba(255, 255, 255, 0.2); padding-left: 22px; }
.mini-kicker { color: #d9a28a; font-weight: 800; }
.section-grid h2 { margin: 14px 0 10px; font-size: 1.18rem; }
.section-grid p { margin: 0; color: rgba(255, 255, 255, 0.68); line-height: 1.65; }
.content-section { padding-top: clamp(70px, 9vw, 112px); padding-bottom: clamp(70px, 9vw, 112px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading h2, .material-panel h2, .contact-strip h2 { max-width: 760px; font-size: clamp(2.1rem, 4vw, 3rem); }
.collection-grid, .journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.collection-card, .journal-grid article { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; }
.collection-image { height: 280px; }
.collection-image img { width: 100%; height: 100%; object-fit: cover; }
.collection-image.bedding { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.24), rgba(255,255,255,0.24) 2px, transparent 2px, transparent 18px), linear-gradient(145deg, #f5efe4, #cf987d 56%, #6f8d85); }
.collection-image.bath { background: radial-gradient(circle at 24% 32%, rgba(255,255,255,0.5) 0 8px, transparent 9px), repeating-linear-gradient(0deg, rgba(255,255,255,0.18), rgba(255,255,255,0.18) 2px, transparent 2px, transparent 12px), linear-gradient(145deg, #fbf8f0, #99aaa1 48%, #365c58); }
.collection-image.curtains { background: repeating-linear-gradient(90deg, rgba(29,36,38,0.06), rgba(29,36,38,0.06) 1px, transparent 1px, transparent 26px), linear-gradient(145deg, #eee5d8, #f8f1e8 44%, #9a765f); }
.collection-body, .journal-grid article { padding: 24px; }
.collection-body span, .journal-grid span { color: var(--teal); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.collection-body h3, .journal-grid h3 { margin: 10px 0; font-size: 1.25rem; font-weight: 800; line-height: 1.25; }
.collection-body p, .journal-grid p, .material-panel p, .site-footer p { color: var(--muted); line-height: 1.65; }
.collection-body a { display: inline-flex; margin-top: 8px; color: var(--ink); font-weight: 800; border-bottom: 2px solid var(--clay); }
.split-section { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr); gap: clamp(28px, 5vw, 70px); align-items: center; padding-top: clamp(70px, 9vw, 112px); padding-bottom: clamp(70px, 9vw, 112px); }
.material-panel p { max-width: 620px; margin-top: 20px; font-size: 1.05rem; }
.material-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.material-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 650; }
.material-list span { width: 12px; height: 12px; background: var(--clay); border-radius: 50%; }
.swatch-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.swatch { min-height: 220px; aspect-ratio: 1.34 / 1; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #f8f4eb; }
.swatch img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; object-position: center; }
    .swatch span {
        position: absolute;
        right: 16px;
        bottom: 16px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.78);
        border-radius: 999px;
        font-size: 0.86rem;
        font-weight: 800;
        border: solid 1px #e5dca9;
    }
.swatch.cotton { background: #f8f4eb; }
.swatch.waffle { background: #7f9b91; }
.swatch.linen { background: #d8c0ad; }
.swatch.quilt { background: #7b6255; }
.muted { background: #efeae0; max-width: none; }
.muted .section-heading, .muted .journal-grid { max-width: 1180px; margin-right: auto; margin-left: auto; }
.journal-grid article { min-height: 240px; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 72px; margin-bottom: 72px; padding-top: 42px; padding-bottom: 42px; color: #fff; background: var(--teal); border-radius: 8px; }
.contact-strip .eyebrow, .contact-strip h2 { color: #fff; }
.site-footer { display: flex; justify-content: space-between; gap: 30px; padding-top: 42px; padding-bottom: 11px;   }
.footer-brand {
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: #063f6b;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; font-weight: 750; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  /*  margin-top: 2rem;*/
    padding-top: 1.2rem;
    border-top: 1px solid rgba(216, 222, 226, 0.65);
    font-size: 0.88rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}
 
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: start;
    font-weight: 760;
}


@media (max-width: 991px) {
  .hero-section, .split-section { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; }
  .hero-visual { min-height: 520px; }
  .nav-link { margin: 6px 0; }
  .nav-cta { display: inline-flex; }
  .section-grid, .collection-grid, .journal-grid { grid-template-columns: 1fr; }
  .section-heading, .site-footer, .contact-strip { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .site-nav, .hero-section, .content-section, .split-section, .section-grid, .site-footer { padding-right: 18px; padding-left: 18px; }
  .hero-content h1 { font-size: clamp(2.65rem, 16vw, 4rem); }
  .hero-metrics, .swatch-board { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .collection-image { height: 230px; }
  .contact-strip { margin-right: 18px; margin-left: 18px; }
}



