body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f4eee6;
  color: #1a1a1a;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;

  background: url("assets/images/brand/logo-mark.png") center/480px no-repeat;

  opacity: 0.035; /* subtle + refined */
  pointer-events: none;
  z-index: 0;

  transform: scale(1.05);
}
main {
  position: relative;
  z-index: 1;
}

/* NAV */
.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 24px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.site-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover {
  opacity: 0.6;
}

.site-nav a.active {
  color: #7a4124;
  border-bottom: 1px solid #7a4124;
  padding-bottom: 4px;

}
.product-image {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: rgba(0,0,0,0.32);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.38), rgba(255,255,255,0.12)),
    rgba(255,255,255,0.45);
}

/* SHOP */
.shop-hero {
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
}

.shop-hero p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.82;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.product-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.035);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(40, 24, 14, 0.07);
}

.product-image {
  height: 420px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: rgba(0,0,0,0.35);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  padding: 10px 4px 4px;
}

.product-number {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a4124;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
}

.product-card p {
  margin: 0;
  opacity: 0.78;
  line-height: 1.75;
}

.product-card-feature {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 44px;
}

.product-card-feature .button {
  margin-top: 28px;
}

/* ABOUT */
.about-hero {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
  text-align: center;
}

.about-hero p {
  font-size: 20px;
  line-height: 1.75;
  opacity: 0.8;
}

.about-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 90px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.about-section h2,
.invocation h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 26px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.85;
  opacity: 0.84;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.about-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 56px 46px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.035);
  border-radius: 2px;
}
.about-card h3 {
  margin-top: 0;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.invocation {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 100px;
  padding: 85px 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 45px rgba(40, 24, 14, 0.06);
}

.invocation p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.9;
}
/* MOBILE */
@media (max-width: 800px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero h1,
  .shop-hero h1,
  .about-hero h1 {
    font-size: 40px;
  }

  .product-grid,
  .split,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 300px;
  }

  .product-card-feature {
    min-height: auto;
    padding: 34px 28px;
  }

  body::after {
    opacity: 0.03;
  }
}
/* FORCE ABOUT PAGE HEADING ALIGNMENT */

/* HEADINGS ONLY — centered */
.about-hero h1,
.about-section > h2,
.invocation > h2 {
  text-align: center;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-section p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-card p {
  max-width: none;
}

.split p {
  max-width: none;
}

/* TYPOGRAPHY REFINEMENT */

.about-hero h1,
.about-section h2,
.invocation h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.about-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.about-section h2,
.invocation h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 36px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.95;
  margin-bottom: 22px;
}

.about-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.about-card {
  border-radius: 2px;
}

.invocation {
  margin-top: 40px;
}

.invocation p {
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.01em;
}

.about-hero {
  padding: 140px 20px 90px;
}

/* HOME PAGE REFINEMENT */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #7a4124;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 82px);
  line-height: 0.95;
  font-weight: 500;
  max-width: 900px;
  margin: 0 0 26px;
}

.hero p {
  font-size: 19px;
  max-width: 620px;
  line-height: 1.75;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid rgba(0,0,0,0.16);
  text-decoration: none;
  color: #1a1a1a;
  background: rgba(255,255,255,0.65);
}

.button.secondary {
  background: transparent;
}

.feature {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 80px 24px;
  text-align: center;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
}

.feature h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  margin-bottom: 18px;
}

.feature p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}
/* POLICY PAGE */
.policy-hero {
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
}

.policy-hero p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.82;
}

.policy-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.policy-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 44px 38px;
  margin-bottom: 28px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.035);
}

.policy-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 18px;
  text-align: center;
}

.policy-card p,
.policy-card li {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.84;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.policy-card a {
  color: #7a4124;
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}
/* FOOTER */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 70px 24px 34px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.35);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}

.footer-brand p {
  margin: 0;
  max-width: 420px;
  line-height: 1.7;
  opacity: 0.75;
}

.footer-links {
  display: grid;
  gap: 12px;
  text-align: right;
}

.footer-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-small {
  max-width: 1080px;
  margin: 46px auto 0;
  font-size: 0.82rem;
  opacity: 0.55;
}

@media (max-width: 800px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}
/* CONTACT */
.contact-hero {
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
}

.contact-hero p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.82;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.contact-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 56px 46px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.035);
}

.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 18px;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
/* JOURNAL */
.journal-hero {
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.journal-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
}

.journal-hero p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.82;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.journal-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 44px 38px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.035);
}

.journal-meta {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a4124;
  font-weight: 700;
  margin-bottom: 16px;
}

.journal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 18px;
}

.journal-card p {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}