/*
  KompoZer-friendly starter stylesheet
  Replace colors, fonts, and spacing as the brand develops.
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #31291f;
  background: #fbf7ef;
  line-height: 1.6;
}

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

a {
  color: #6f5536;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.site-header {
  background: #fffaf2;
  border-bottom: 1px solid #e4d6c2;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #31291f;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-nav a {
  color: #4b3a2b;
}

.hero {
  padding: 78px 0;
  background: linear-gradient(135deg, #fbf7ef 0%, #efe0cb 100%);
}

.hero-grid,
.split-grid,
.product-detail-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  font-size: 54px;
  line-height: 1.05;
  margin: 12px 0 20px;
  color: #2d241b;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 14px;
}

h3 {
  font-size: 22px;
  margin: 16px 0 8px;
}

p {
  margin-top: 0;
}

.lead {
  font-size: 20px;
  color: #594837;
}

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: bold;
  color: #9a6f3b;
  margin-bottom: 8px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  border: 1px solid #6f5536;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn.primary {
  background: #6f5536;
  color: #fffaf2;
}

.btn.secondary {
  background: transparent;
  color: #6f5536;
}

.btn.small {
  padding: 9px 16px;
  font-size: 12px;
}

.hero-card,
.quote-card,
.product-card,
.shop-sidebar,
.contact-form,
.info-box {
  background: #fffaf2;
  border: 1px solid #e4d6c2;
  box-shadow: 0 14px 36px rgba(69, 45, 24, 0.08);
}

.hero-card {
  padding: 16px;
  transform: rotate(1.5deg);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.section {
  padding: 70px 0;
}

.muted {
  background: #f1e5d3;
}

.intro-section {
  background: #fffaf2;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-top: 18px;
  margin-bottom: 18px;
}

.collection-grid,
.product-grid,
.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card,
.product-card {
  padding: 18px;
}

.collection-card img,
.product-card img {
  border: 1px solid #e4d6c2;
  background: #fbf7ef;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.price {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #7d4f24;
  margin-bottom: 8px;
}

.large-price {
  font-size: 24px;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 8px;
}

.quote-card {
  padding: 36px;
  font-size: 28px;
  line-height: 1.3;
  color: #4b3a2b;
}

.small-card {
  font-size: 22px;
}

.newsletter-section {
  background: #fffaf2;
}

.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #fbf7ef 0%, #efe0cb 100%);
  border-bottom: 1px solid #e4d6c2;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

.shop-sidebar {
  padding: 22px;
  position: sticky;
  top: 96px;
}

.shop-sidebar h2 {
  font-size: 24px;
}

.shop-sidebar a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eadfce;
}

.small-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #7f6c58;
}

.product-image-large {
  background: #fffaf2;
  border: 1px solid #e4d6c2;
  padding: 18px;
}

.product-image-large img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.info-box {
  padding: 24px;
  margin-top: 20px;
}

.info-box h2 {
  font-size: 24px;
}

.contact-form {
  padding: 26px;
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8c6ad;
  background: #fbf7ef;
  padding: 12px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form button {
  margin-top: 18px;
  cursor: pointer;
}

.site-footer {
  background: #2d241b;
  color: #efe0cb;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  color: #fffaf2;
}

.site-footer a {
  display: block;
  color: #efe0cb;
  margin-bottom: 7px;
}

@media (max-width: 850px) {
  .header-inner,
  .main-nav,
  .button-row,
  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .split-grid,
  .product-detail-grid,
  .content-grid,
  .contact-grid,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .three-column {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .shop-sidebar {
    position: static;
  }
}


/* Store pricing */
.regular-price {
  color: #756451;
  font-size: 0.82em;
  font-weight: normal;
  margin-right: 8px;
  text-decoration-line: line-through;
  text-decoration-color: #7d4f24;
  text-decoration-thickness: 2px;
}

.launch-price {
  color: #7d4f24;
  white-space: nowrap;
}

.price-tiers {
  color: #6f5d4c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  margin-top: -2px;
}
