/* Calm boutique defaults (no external fonts required) */
:root{
  --bg: #fbfaf8;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #52606d;
  --ink: #0f172a;

  /* Boutique teal pulled to complement your watercolor covers */
  --accent: #2d6a8a;

  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 8px 22px rgba(15, 23, 42, 0.06);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1040px;

  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--panel);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,248,0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: contain;
  padding: 6px;
}

.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  color: var(--ink);
  background: rgba(45,106,138,0.08);
}

/* Hero */
.hero{
  padding: 56px 0 22px;
  text-align: center;
}

.hero-inner{
  display: grid;
  gap: 14px;
  justify-items: center;
}

h1{
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.12;
  color: var(--ink);
  max-width: 22ch;
}

.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 68ch;
}

.hero-actions{
  margin-top: 6px;
}

.micro{
  margin: 8px 0 0;
  color: rgba(31,41,55,0.72);
  font-size: 13px;
}

/* Sections */
.section{
  padding: 54px 0;
}

.section-soft{
  background: rgba(255,255,255,0.60);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 18px;
}

.section-head.center{
  text-align: center;
}

h2{
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--ink);
}

.subhead{
  margin: 0 auto;
  color: var(--muted);
  max-width: 72ch;
  text-align: center;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  min-height: 44px;
  transition: transform 0.06s ease, filter 0.15s ease, background 0.15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 22px rgba(45,106,138,0.18);
}
.btn-primary:hover{ filter: brightness(1.05); }

.btn-secondary{
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover{ background: rgba(255,255,255,0.85); }

.btn-full{ width: 100%; }

/* Disabled placeholder links (pre-Amazon URLs) */
a[aria-disabled="true"]{
  pointer-events: none;
  opacity: 0.75;
}

/* Products: calm boutique “gallery” */
.products-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}

.product{
  grid-column: span 3;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.cover-link{
  display: block;
  border-radius: var(--radius-sm);
}

.cover{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,23,42,0.10);
  background: #fff;
}

.product-title{
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.25;
  color: var(--ink);
}

.product-desc{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

/* Note */
.note{
  margin-top: 18px;
  background: rgba(45,106,138,0.06);
  border: 1px solid rgba(45,106,138,0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: rgba(31,41,55,0.88);
}
.note code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  background: rgba(15,23,42,0.06);
  padding: 2px 6px;
  border-radius: 8px;
}

/* What's inside list */
.inside-list{
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 800px;
}

.inside-list li{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--muted);
  box-shadow: 0 6px 16px rgba(15,23,42,0.04);
}

.inside-list strong{
  color: var(--ink);
}

/* FAQ */
.faq{
  margin-top: 22px;
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

details{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

summary{
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq-body{
  padding-top: 10px;
  color: var(--muted);
}

/* Contact */
.contact{
  display: grid;
  gap: 14px;
}

.contact-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(15,23,42,0.04);
}

.contact-handle{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.link{
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}
.link:hover{ text-decoration: underline; }

/* Footer */
.site-footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: rgba(251,250,248,0.85);
}

.footer-inner{
  display: grid;
  gap: 8px;
}

.footer-brand{
  margin: 0;
  font-weight: 900;
  color: var(--ink);
}

.footer-small{
  margin: 0;
  color: rgba(31,41,55,0.72);
  font-size: 13px;
}

/* Mobile sticky CTA */
.mobile-shop{
  display: none;
}

/* Responsive */
@media (max-width: 980px){
  .product{ grid-column: span 6; }
}

@media (max-width: 620px){
  .product{ grid-column: span 12; }
  .brand-name{ display: none; }

  /* keep nav tidy on small screens without JS */
  .nav{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
  }
  .nav::-webkit-scrollbar{ display: none; }
  .nav a{ white-space: nowrap; font-size: 14px; }
}

@media (max-width: 520px){
  .mobile-shop{
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 200;
    text-align: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(15,23,42,0.22);
  }

  body{
    padding-bottom: 78px; /* prevents content hiding behind the button */
  }
}
