  :root {
      --sage: #78846d;
      --sage-dark: #59624f;
      --sage-soft: #eef0e8;
      --cream: #fbf7ed;
      --paper: #f7efe2;
      --ink: #292621;
      --muted: #686356;
      --rose: #9a5f5c;
      --gold: #b38a55;
      --line: #d8c5aa;
      --shadow: 0 16px 40px rgba(44, 35, 25, .13);
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 18%, rgba(179, 138, 85, .12), transparent 28rem),
        radial-gradient(circle at 94% 76%, rgba(120, 132, 109, .16), transparent 32rem),
        var(--cream);
    }

    img { max-width: 100%; display: block; }

    a { color: inherit; text-decoration: none; }

    .topbar {
      background: linear-gradient(90deg, var(--sage-dark), #89927d, var(--sage-dark));
      color: #fff;
      text-align: center;
      font-size: .92rem;
      letter-spacing: .04em;
      padding: .55rem 1rem;
    }

    .topbar span::before,
    .topbar span::after {
      content: "❧";
      display: inline-block;
      margin: 0 1rem;
      opacity: .8;
    }

    .site-header {
      background: rgba(251,247,237,.94);
      border-bottom: 1px solid rgba(216,197,170,.65);
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .header-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 1.15rem 1.5rem;
    }

    .brand {
      display: inline-grid;
      line-height: 1;
      position: relative;
      padding-left: 3rem;
    }

    .brand::before {
      content: "❦";
      position: absolute;
      left: 0;
      top: .1rem;
      color: var(--gold);
      font-size: 2.4rem;
      opacity: .75;
      transform: rotate(-25deg);
    }

    .brand-name {
      font-family: "Brush Script MT", "Segoe Script", cursive;
      color: var(--rose);
      font-size: clamp(2.1rem, 4vw, 3.4rem);
      font-weight: 400;
      white-space: nowrap;
    }

    .brand-sub {
      color: var(--rose);
      font-size: 1rem;
      letter-spacing: .42em;
      text-transform: uppercase;
      text-align: center;
      margin-top: .2rem;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(1rem, 2.3vw, 2rem);
      font-size: .86rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .icons {
      display: flex;
      gap: .85rem;
      font-size: 1.35rem;
      color: #2b2b2b;
    }

    .menu-button { display: none; }


    .hero {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      background: linear-gradient(90deg, var(--cream) 0 13%, transparent 46%), url(/images/home/hero-room.jpg) center right no-repeat;
      border-bottom: 1px solid rgba(216,197,170,.45);
	  max-width:var(--max);
	      margin: 0 auto;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(251,247,237,.98) 0%, rgba(251,247,237,.9) 38%, rgba(251,247,237,.08) 64%),
        radial-gradient(circle at 7% 45%, rgba(179,138,85,.16), transparent 24rem);
      pointer-events: none;
    }

    .hero::after {
      content: "❦";
      position: absolute;
      left: 3vw;
      top: 13rem;
      font-size: 15rem;
      line-height: 1;
      color: rgba(179,138,85,.12);
      transform: rotate(-18deg);
      pointer-events: none;
    }

    .hero-content {
      max-width: var(--max);
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      width: min(45rem, 48%);
      text-align: center;
    }

    .eyebrow {
      color: var(--sage-dark);
      text-transform: uppercase;
      letter-spacing: .28em;
      font-size: .93rem;
      margin: 0 0 .9rem;
      font-weight: 600;
    }

    h1 {
      font-size: clamp(3rem, 5.3vw, 5.25rem);
      line-height: .98;
      margin: 0;
      font-weight: 400;
      letter-spacing: -.045em;
    }

    .rule {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--gold);
      margin: 1.6rem auto 1.3rem;
      width: min(280px, 70%);
    }

    .rule::before, .rule::after {
      content: "";
      height: 1px;
      flex: 1;
      background: var(--line);
    }

    .hero p {
      color: #3c372f;
      font-size: clamp(1.1rem, 1.5vw, 1.28rem);
      line-height: 1.45;
      margin: 0 auto 2rem;
      max-width: 420px;
    }

    .button-row {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      min-width: 180px;
      padding: .85rem 1.25rem;
      border: 1px solid #bfa98e;
      color: #372e26;
      background: rgba(255,255,255,.48);
      text-transform: uppercase;
      font-size: .82rem;
      letter-spacing: .06em;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

    .btn.primary {
      background: var(--sage);
      border-color: var(--sage);
      color: #fff;
    }

    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1.2rem 1.5rem;
    }

    .section-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-align: center;
      margin: .45rem 0 1rem;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .section-title::before,
    .section-title::after {
      content: "❧";
      color: var(--gold);
      opacity: .8;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.6rem;
    }

    .product-card {
      text-align: center;
    }

    .product-card img {
      width: 100%;
      aspect-ratio: 4 / 4.7;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 6px 18px rgba(50,40,30,.14);
      background: #e9ddcb;
    }

    .product-card h3 {
      margin: .7rem 0 .2rem;
      font-size: 1.02rem;
      line-height: 1.15;
      font-weight: 400;
    }

    .price {
      margin: .25rem 0 .75rem;
      color: #1f1c18;
      font-size: 1rem;
    }

    .small-btn {
      display: inline-flex;
      border: 1px solid #c0a283;
      padding: .5rem 1.25rem;
      font-size: .74rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(255,255,255,.62);
    }

    .about-band {
      margin-top: .6rem;
      background:
        radial-gradient(circle at 86% 50%, rgba(179,138,85,.13), transparent 14rem),
        linear-gradient(90deg, rgba(248,240,226,.9), rgba(251,247,237,.95));
      border-top: 1px solid rgba(216,197,170,.5);
      border-bottom: 1px solid rgba(216,197,170,.5);
    }

    .about {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr .75fr;
      gap: 3rem;
      align-items: center;
      padding: 1.2rem 1.5rem;
    }

    .about img {
      width: 100%;
      border-radius: 4px;
      box-shadow: var(--shadow);
    }

    .about h2 {
      margin: 0 0 .75rem;
      font-weight: 400;
      font-size: clamp(1.8rem, 3vw, 2.25rem);
    }

    .about p {
      color: var(--muted);
      line-height: 1.6;
      margin: 0 0 1.3rem;
    }

    .floral {
      color: rgba(179,138,85,.45);
      font-size: clamp(7rem, 16vw, 13rem);
      text-align: center;
      line-height: .8;
      transform: rotate(-10deg);
    }

    .reviews {
      max-width: var(--max);
      margin: 0 auto;
      padding: 1.1rem 1.5rem 1.6rem;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .quote {
      position: relative;
      padding: 0 1.5rem;
      border-left: 1px solid rgba(216,197,170,.65);
    }

    .quote::before {
      content: "“";
      color: #1e1a16;
      font-size: 3rem;
      line-height: 0;
      position: absolute;
      top: .6rem;
      left: .1rem;
    }

    .quote p {
      margin: 1rem 0 .8rem;
      color: #4f493f;
      line-height: 1.4;
      font-size: .98rem;
    }

    .stars { color: var(--gold); letter-spacing: .16em; }

    footer {
      background: linear-gradient(90deg, #d3d9c8, #7b8a70);
      color: #2f342c;
      padding: 2rem 1.5rem 1.6rem;
      position: relative;
      overflow: hidden;
    }

    footer::before,
    footer::after {
      content: "❦";
      position: absolute;
      color: rgba(179,138,85,.45);
      font-size: 8rem;
      top: 2rem;
    }

    footer::before { left: 2rem; transform: rotate(-25deg); }
    footer::after { right: 2rem; transform: rotate(25deg) scaleX(-1); }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
      gap: 2.5rem;
      position: relative;
      z-index: 1;
    }

    footer h3 {
      margin: 0 0 .8rem;
      font-size: .95rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 600;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: .45rem;
      color: #3f4439;
      font-size: .92rem;
    }

    .signup {
      display: flex;
      margin-top: .8rem;
      max-width: 300px;
      background: #fff;
      border: 1px solid rgba(80,70,55,.15);
    }

    .signup input {
      flex: 1;
      min-width: 0;
      border: 0;
      padding: .75rem;
      font-family: inherit;
    }

    .signup button {
      width: 46px;
      border: 0;
      background: var(--sage-dark);
      color: #fff;
      font-size: 1.1rem;
    }

    .social {
      display: flex;
      gap: .8rem;
      margin-top: 1rem;
      font-size: 1.2rem;
    }

    .footer-brand {
      text-align: center;
      color: #fff;
    }

    .footer-brand .brand-name {
      color: #fff;
      font-size: 2.9rem;
      text-shadow: 0 1px 10px rgba(0,0,0,.16);
    }

    .footer-brand .brand-sub {
      color: #fff;
      letter-spacing: .34em;
    }

    .copyright {
      font-size: .85rem;
      margin-top: 1rem;
      color: #383a33;
    }

    @media (max-width: 900px) {
      .header-inner {
        gap: 1rem;
      }

      .nav, .icons { display: none; }

      .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.55);
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
      }

      .hero {
        min-height: auto;
        background:
          linear-gradient(rgba(251,247,237,.76), rgba(251,247,237,.9)),
          url("assets/hero-mobile.jpg") top center / cover no-repeat;
      }

      .hero::before {
        background: linear-gradient(rgba(251,247,237,.75), rgba(251,247,237,.94));
      }

      .hero-content {
        padding: 4rem 1.2rem;
      }

      .hero-copy {
        width: min(100%, 560px);
        margin: 0 auto;
        padding: 1.5rem;
        background: rgba(251,247,237,.72);
        border: 1px solid rgba(216,197,170,.7);
        backdrop-filter: blur(2px);
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .floral { display: none; }

      .review-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 560px) {
      .topbar {
        font-size: .78rem;
        line-height: 1.35;
      }

      .topbar span::before,
      .topbar span::after {
        margin: 0 .4rem;
      }

      .header-inner {
        padding: .9rem 1rem;
      }

      .brand {
        padding-left: 0;
      }

      .brand::before { display: none; }

      .brand-name {
        font-size: 2rem;
      }

      .brand-sub {
        font-size: .72rem;
        letter-spacing: .32em;
      }

      h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
      }

      .eyebrow {
        letter-spacing: .22em;
        font-size: .78rem;
      }

      .button-row {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn { width: 100%; }

      .section-title {
        letter-spacing: .12em;
        gap: .45rem;
      }

      .section-title::before,
      .section-title::after {
        display: none;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .product-card {
        max-width: 310px;
        margin: 0 auto;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      footer::before,
      footer::after {
        opacity: .25;
      }
    }

/* Shop category dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  padding: .65rem;
  background: rgba(251, 247, 237, .98);
  border: 1px solid rgba(216, 197, 170, .85);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(.35rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: .55rem .65rem;
  color: var(--ink);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.nav-dropdown-group + .nav-dropdown-group {
  border-top: 1px solid rgba(216, 197, 170, .55);
}

.nav-dropdown-submenu {
  padding: 0 0 .35rem .65rem;
}

.nav-dropdown-submenu a {
  font-size: .82rem;
  color: var(--muted);
}


/* Homepage sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  /*max-width: 620px;*/
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading h2,
.about-artist-copy h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.featured-quilts {
  background: rgba(247, 239, 226, .62);
  border-top: 1px solid rgba(216, 197, 170, .45);
  border-bottom: 1px solid rgba(216, 197, 170, .45);
}

.featured-quilts-grid .products-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-artist-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-artist-media {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(120, 132, 109, .25), rgba(179, 138, 85, .2)), var(--paper);
  border: 1px solid rgba(216, 197, 170, .75);
  box-shadow: var(--shadow);
}

.about-artist-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.testimonials {
  background: var(--sage-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background: rgba(251, 247, 237, .82);
  border: 1px solid rgba(216, 197, 170, .7);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonial figcaption {
  color: var(--rose);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .featured-quilts-grid .products-grid,
  .testimonial-grid,
  .about-artist-inner {
    grid-template-columns: 1fr;
  }

  .about-artist-media {
    min-height: 280px;
  }
}
