/* =========================
   BRAND + THEME
========================= */
:root{
  --bg: #faf7ec;
  --panel: #2f5b2e;
  --text: #2b2b2b;
  --muted: #6a6a6a;
  --rule: rgba(0,0,0,.18);

  /* Brand colors (from logo) */
  --brand-green: #2f5b2e;
  --brand-gold: #b08b2c;

  --max: 1100px;
  --pad: 24px;
}

/* =========================
   RESET
========================= */
*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }

/* =========================
   LAYOUT HELPERS
========================= */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.rule-row{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:18px;
  margin:36px 0 20px;
}
.rule-row::before,
.rule-row::after{
  content:"";
  height:1px;
  background:var(--rule);
}
.rule-row span{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}

/* =========================
   HEADER
========================= */
.site-header{
  background: rgba(246, 241, 223, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:grid;
  grid-template-columns: 90px 1fr 90px;
  align-items:center;
  padding:18px 0;
}

.logo-mark{
  width:160px;
  height:auto;
  object-fit:contain;
}

.brand{
  text-align:center;
}

.title-logo-link{
  display: inline-block;
}

.title-logo{
  max-width: 300px;   /* controls size of the title */
  width: 100%;
  height: auto;
}


.brand a{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size:44px;
  letter-spacing:.04em;
  color: var(--brand-green);
}

.brand small{
  display:block;
  margin-top:6px;
  font-size:13px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color: var(--brand-gold);
}

.header-right{
  text-align:right;
}

/* =========================
   NAV
========================= */
.main-nav{
  display:flex;
  justify-content:center;
  gap:42px;
  padding:12px 0 18px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--brand-green);
}

.main-nav a{
  padding:6px 0;
  position:relative;
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:1px;
  background:var(--brand-green);
}

/* =========================
   HERO
========================= */
.hero img{
  width:100%;
  height:520px;
  object-fit:cover;
  border:1px solid rgba(0,0,0,.08);
}

/* =========================
   ABOUT PAGE IMAGE SIZE
========================= */

/* Use this class on about page images */
.about-photo{
  max-width: 560px;   /* smaller */
  width: 100%;
  height: auto;
  margin: 0 auto;     /* center it */
  display: block;
  border: 1px solid rgba(0,0,0,.08);
}
/* =========================
   ABOUT SPLIT LAYOUT
========================= */

.about-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.about-image img{
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2{
  margin-top: 0;
}


/* =========================
   BUTTONS
========================= */
.btn{
  border:1px solid rgba(0,0,0,.25);
  background:transparent;
  padding:10px 14px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  cursor:pointer;
}
.btn:hover{ opacity:.85; }

/* =========================
   GRIDS
========================= */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

/* =========================
   PRODUCT CARD
========================= */
.product-img{
  aspect-ratio:4/5;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-meta{
  text-align:center;
  padding-top:14px;
}
.product-meta .name{
  font-size:14px;
}
.product-meta .price{
  margin-top:6px;
  color:var(--muted);
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background: var(--brand-green);
  border-top: 1px solid rgba(0,0,0,.15);
  padding: 40px 0;
  margin-top: 60px;
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 24px;
}

/* Text + links (make readable on green) */
.site-footer,
.site-footer a{
  color: #f6f1df; /* parchment */
}

.footer-brand{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: #f6f1df;
}

.footer-col h4{
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246,241,223,.85);
  margin: 0 0 12px 0;
}

.footer-col a{
  display:block;
  padding:6px 0;
  font-size:14px;
  opacity: .9;
}

.site-footer a:hover{
  color: var(--brand-gold);
  opacity: 1;
}

.footer-note{
  text-align:center;
  font-size:12px;
  color: rgba(246,241,223,.7);
  margin-top: 24px;
}

/* Newsletter input + button */
.site-footer input[type="email"]{
  width: 100%;
  background: rgba(246,241,223,.95);
  border: none;
  padding: 10px 12px;
  font-size: 13px;
  color: #2b2b2b;
  outline: none;
}

.site-footer .btn{
  margin-top: 10px;
  width: 100%;
  border: 1px solid rgba(246,241,223,.6);
  color: #f6f1df;
  background: transparent;
}

.site-footer .btn:hover{
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #2b2b2b;
}


  /* =========================
   FOOTER CONTRAST FIX
========================= */

.site-footer{
  background: var(--brand-green);
}

/* All footer text + links */
.site-footer,
.site-footer a{
  color: #f6f1df; /* parchment */
}

/* Footer section headings */
.site-footer .footer-col h4{
  color: rgba(246,241,223,.85);
}

/* Footer links */
.site-footer a{
  opacity: .9;
}
.site-footer a:hover{
  color: var(--brand-gold);
  opacity: 1;
}

/* Footer copyright */
.site-footer .footer-note{
  color: rgba(246,241,223,.7);
}

/* Newsletter input */
.site-footer input[type="email"]{
  background: rgba(246,241,223,.95);
  border: none;
  padding: 10px 12px;
  font-size: 13px;
  color: #2b2b2b;
}

/* Newsletter button */
.site-footer .btn{
  border: 1px solid rgba(246,241,223,.6);
  color: #f6f1df;
}

.site-footer .btn:hover{
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #2b2b2b;
}

/* =========================
   SHOP LAYOUT (SIDEBAR + GRID)
========================= */
.footer-top-custom{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap:90px;
  align-items:start;
  padding:10px 0 30px;
}

.footer-brand-col{
  display:flex;
  align-items:flex-start;
}

.footer-explore-col,
.footer-contact-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-contact-col p{
  margin:0;
  line-height:1.5;
}

.footer-contact-col a{
  color:inherit;
  text-decoration:none;
}

.footer-note-custom{
  text-align:center;
  margin-top:10px;
}

@media (max-width: 900px){
  .footer-top-custom{
    grid-template-columns:1fr;
    gap:36px;
  }

  .footer-note-custom{
    text-align:left;
  }
}

.shop-layout{
  display: grid;
  grid-template-columns: 260px 1fr; /* left sidebar + main */
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

/* Keep sidebar tidy */
.shop-sidebar{
  position: sticky;
  top: 140px; /* keeps it visible under the header */
  align-self: start;
}

/* Main area */
.shop-main{
  min-width: 0; /* prevents grid overflow */
}

/* Mobile: stack */
@media (max-width: 900px){
  .shop-layout{
    grid-template-columns: 1fr;
  }
  .shop-sidebar{
    position: static;
    top: auto;
  }
}

