/** Shopify CDN: Minification failed

Line 40:0 All "@import" rules must come first

**/


/* ── Glow via Sarah – Custom Typography ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');

/* Product card title */
.card__heading,
.card__heading a,
.card-information__text,
.card-information .card__heading,
.product-card__title,
.grid-view-item__title,
h3.card__heading,
.collection-card__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  color: #2D4A3E !important;
  margin-bottom: 4px !important;
}

/* Product card price */
.price__regular .price-item,
.price__sale .price-item,
.price-item,
.product-price,
.card-information .price {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  color: #2D4A3E !important;
  margin-bottom: 4px !important;
}
/* ─────────────────────────────────────────────────────────── */

/* ── About Sarah Page ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; color: #333; background: #fff; }

.compliance-banner {
  background: #2D4A3E;
  color: #A8D5A2;
  font-size: 10px;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}
.compliance-banner a { color: #c8e6c2; }
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e5e3;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #2D4A3E;
  letter-spacing: 1px;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links a:hover { color: #2D4A3E; }

/* Hero */
.about-hero {
  background: linear-gradient(135deg, #2D4A3E, #3B5F4A);
  padding: 60px 24px;
  text-align: center;
  color: white;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 8px;
}
.about-hero p { color: rgba(255,255,255,0.7); font-size: 14px; letter-spacing: 2px; }

/* Main Content */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.about-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.photo-caption {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}
.about-story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2D4A3E;
  margin-bottom: 20px;
}
.about-story p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.about-story .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #2D4A3E;
  font-style: italic;
  border-left: 3px solid #6B8F71;
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}

/* Mission Section */
.mission-section {
  background: #2D4A3E;
  padding: 60px 24px;
  text-align: center;
  color: white;
}
.mission-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
}
.mission-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 15px;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.mission-card {
  background: rgba(255,255,255,0.08);
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.mission-icon { font-size: 28px; margin-bottom: 12px; }
.mission-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.mission-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Photos Gallery */
.gallery-section {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2D4A3E;
  text-align: center;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* CTA */
.cta-section {
  background: #f2f7f3;
  padding: 60px 24px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #2D4A3E;
  margin-bottom: 12px;
}
.cta-section p {
  color: #555;
  margin-bottom: 24px;
  font-size: 15px;
}
.btn-green {
  display: inline-block;
  background: #2D4A3E;
  color: white;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-green:hover { background: #3B5F4A; }

/* Contact */
.contact-bar {
  background: #2D4A3E;
  padding: 32px 24px;
  text-align: center;
  color: white;
}
.contact-bar a {
  color: #A8D5A2;
  text-decoration: none;
  margin: 0 16px;
  font-size: 13px;
}
.contact-bar a:hover { color: white; }

/* Footer */
footer {
  background: #1a2f26;
  color: rgba(255,255,255,0.5);
  padding: 24px;
  text-align: center;
  font-size: 11px;
}
footer a { color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
/* ── end About Sarah ──────────────────────────────────────── */

/* ── Full-width section fix ───────────────────────────────── */
.mission-section,
.cta-section,
.contact-bar {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
/* ─────────────────────────────────────────────────────────── */

/* ── Remove header gap and border line ────────────────────── */
.header,
header.header,
.shopify-section-header {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.header-wrapper,
.header__wrapper {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
main#MainContent,
.main-content,
#MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.shopify-section:first-of-type {
  margin-top: 0 !important;
}
/* ─────────────────────────────────────────────────────────── */
