:root {
  --ink: #1f1d1a;
  --linen: #f4efe7;
  --stone: #e6ddd0;
  --brass: #a67c37;
  --brass-dark: #7d5a20;
  --muted: #6b645a;
  --serif: 'Cormorant Garamond', Georgia, serif;
}
body { background: var(--linen); color: var(--ink); font-family: 'Manrope', 'Inter', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
section[id] { scroll-margin-top: 90px; }


.navbar { background: rgba(255,253,249,.97); box-shadow: none; border-bottom: 1px solid var(--stone); }
.nav-logo img { border: none; border-radius: 50%; background: var(--linen); box-shadow: none; width: 54px; height: 54px; }
.nav-brand-main { font-family: var(--serif); font-size: 1.7em; font-weight: 700; color: var(--ink); letter-spacing: .12em; line-height: 1; }
.nav-brand-sub { color: var(--brass); font-size: .72em; letter-spacing: .32em; margin-top: 4px; }
.nav-brand-tagline { color: var(--muted); font-size: .62em; letter-spacing: .2em; }
.nav-menu { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .95em; }
.nav-menu a { color: var(--ink); }
.nav-menu a.active, .nav-menu a:hover { color: var(--brass); border-bottom-color: var(--brass); }
.nav-cart-btn { background: var(--ink); color: #fff; box-shadow: none; font-family: 'Manrope', sans-serif; }
.nav-cart-btn:hover { background: var(--brass); color: #fff; }
.cart-count { background: var(--brass); color: #fff; box-shadow: none; }
.nav-burger span { background: var(--ink); }


.hero {
  background: var(--linen); box-shadow: none; padding: 130px 6vw 60px; min-height: 0; max-width: 1240px; margin: 0 auto; gap: 3rem;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center;
}
.hero-content { max-width: none; padding: 0; }
.hero-title { font-family: var(--serif); color: var(--ink); font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 600; line-height: 1; letter-spacing: 0; text-shadow: none; margin-bottom: 1.4rem; }
.hero-desc { color: var(--muted); font-weight: 500; font-size: 1.06em; text-shadow: none; max-width: 520px; }
.hero-btn { background: var(--ink); color: #fff; border-radius: 0; letter-spacing: .14em; font-size: .85em; padding: 1.1em 2.3em; box-shadow: none; font-family: 'Manrope', sans-serif; text-transform: uppercase; }
.hero-btn:hover { background: var(--brass); color: #fff; }
.hero-btn.alt { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.hero-btn.alt:hover { background: var(--ink); color: #fff; }
.hero-img { margin: 0; flex: none; display: flex; justify-content: center; }
.hero-img img {
  width: min(360px, 100%); height: auto; aspect-ratio: 4/5; padding: 2.4rem; background: var(--stone); border: none; object-fit: contain;
  border-radius: 12rem 12rem 0 0; box-shadow: 0 0 0 1px var(--brass), 24px 24px 0 -1px var(--stone);
}


.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0 6vw; margin-top: 1rem; }
.feature-card {
  background: transparent; border: none; border-top: 1px solid var(--ink); border-radius: 0; box-shadow: none; max-width: none;
  text-align: left; padding: 1.6rem 1.6rem 1rem 0; margin-right: 1.6rem;
}
.feature-emoji { font-size: 1.6em; filter: grayscale(1); margin-bottom: .6rem; }
.feature-title { font-family: var(--serif); color: var(--ink); font-size: 1.5em; font-weight: 700; }
.feature-desc { color: var(--muted); font-size: .93em; line-height: 1.6; }


.products-section { margin-top: 6rem; max-width: 1240px; padding: 0 6vw; }
.products-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--ink); text-shadow: none; text-align: left; margin-bottom: 2rem; display: flex; align-items: center; gap: 1.4rem; }
.products-title::after { content: ''; flex: 1; height: 1px; background: var(--ink); opacity: .35; }
.products-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.product-card { max-width: none; min-width: 0; background: #fff; border: none; border-radius: 0; box-shadow: none; padding: 0 0 1.3rem; align-items: stretch; text-align: left; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -24px rgba(31,29,26,.5); }
.product-img-holder { width: 100%; height: 210px; border: none; border-radius: 0; margin: 0 0 1rem; background: var(--stone); }
.product-img-holder img { object-fit: contain; padding: 1rem; }
.product-name, .product-desc, .product-price, .product-stock { padding: 0 1.1rem; text-align: left; }
.product-name { font-family: var(--serif); color: var(--ink); font-size: 1.4em; line-height: 1.1; font-weight: 700; }
.product-desc { color: var(--muted); font-size: .88em; line-height: 1.5; }
.product-price { color: var(--brass-dark); font-family: 'Manrope', sans-serif; font-weight: 800; }
.product-stock { color: var(--muted); font-size: .82em; }
.product-btn { background: var(--ink); color: #fff; border-radius: 0; width: calc(100% - 2.2rem); margin: .3rem 1.1rem 0; font-family: 'Manrope', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .78em; padding: .9em 1em; }
.product-btn:hover { background: var(--brass); color: #fff; }


.contact-section {
  max-width: none; margin: 6rem 0 0; border: none; border-radius: 0; background: var(--ink); box-shadow: none;
  padding: 4rem max(6vw, calc((100vw - 1128px) / 2));
  display: grid; grid-template-columns: .6fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-weight: 600; margin: 0; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.4rem; color: #d8d1c5; font-size: .98em; }
.contact-list li { border-top: 1px solid rgba(255,255,255,.25); padding-top: 1rem; }
.contact-list strong { display: block; color: #d4ae66; font-size: .74em; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .3rem; }
.contact-list a { color: #fff; }


footer { background: #12110f; border-top: none; margin-top: 0; padding: 3rem 1rem 2.4rem; }
.footer-contact-title { font-family: var(--serif); color: #fff; font-size: 1.7em; letter-spacing: .14em; }
.footer-contact { color: #bdb6aa; }
.footer-contact a, .footer-links a { color: #d4ae66; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #857e72; font-family: 'Manrope', sans-serif; }


.cart-modal { background: #fffdf9 !important; color: var(--ink) !important; border: 1px solid var(--stone) !important; border-radius: 4px !important; box-shadow: 0 30px 70px -20px rgba(31,29,26,.5) !important; font-family: 'Manrope', sans-serif !important; padding: 1.6rem 1.4rem 1.3rem !important; width: 380px !important; }
.cart-modal h3 { font-family: var(--serif); color: var(--ink) !important; font-size: 1.6em !important; }
.cart-modal-bg { background: rgba(31,29,26,.55) !important; }
.cart-modal .cart-items-list { list-style: none; padding: 0; margin: 0 0 .8rem; }
.cart-modal .cart-items-list li { display: flex; justify-content: space-between; align-items: center; gap: .6rem; padding: .6rem 0; border-bottom: 1px solid var(--stone); font-size: .92em; }
.cart-modal .product-btn { width: auto; margin: .3rem .3rem 0 0 !important; padding: .7em 1.2em; background: var(--ink) !important; color: #fff !important; border: none !important; }
.cart-modal .product-btn:hover { background: var(--brass) !important; }
.cart-modal .close-btn, .cart-modal .cart-items-list button { background: transparent !important; color: var(--ink) !important; border: 1px solid var(--ink) !important; }
.cart-modal .cart-total-row { color: var(--brass-dark) !important; }


.container, .policy-container, .summary-container, .order-container { background: #fff; color: var(--ink); border-radius: 0; box-shadow: none; border: 1px solid var(--stone); }

@media (max-width: 1000px) {
  .products-list { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding: 90px 6vw 40px; }
  .hero-img { order: -1; }
  .hero-img img { width: 220px; }
}
@media (max-width: 700px) {
  .nav-menu { background: #fffdf9 !important; border-bottom: 1px solid var(--stone) !important; box-shadow: 0 20px 30px -20px rgba(0,0,0,.3) !important; }
  .nav-menu a { border-bottom: 1px solid var(--stone) !important; color: var(--ink) !important; }
  .products-list { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-card { min-width: 0 !important; max-width: none !important; padding: 0 0 1rem !important; }
  .product-img-holder { height: 140px; }
  .features { grid-template-columns: minmax(0, 1fr); }
  .contact-list { grid-template-columns: minmax(0, 1fr); }
  .cart-modal { width: 96vw !important; }
}
@media (max-width: 420px) {
  .products-list { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }


footer { color: #bdb6aa; text-align: center; }
.legal-bar { background: #fffdf9; border-bottom: 1px solid var(--stone); padding: .8rem 24px; }
.legal-bar a { display: inline-flex; align-items: center; gap: .8rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: .12em; color: var(--ink); text-decoration: none; }
.legal-bar img { width: 42px; height: 42px; border-radius: 50%; background: var(--linen); }
.container, .summary-container { background: #fff; color: var(--ink); border: 1px solid var(--stone); border-radius: 0; box-shadow: none; }
.container h1, .summary-container h1 { font-family: var(--serif); color: var(--ink); text-shadow: none; font-weight: 600; font-size: 2.6em; }
.container h2 { font-family: var(--serif); color: var(--brass-dark); font-size: 1.6em; border-top: 1px solid var(--stone); padding-top: 1.2rem; }
.container a, .summary-container a { color: var(--brass-dark); }
.summary-container li, .summary-container label { color: var(--ink); }
.summary-container .total, .summary-container .required { color: var(--brass-dark); }
.summary-container input, .summary-container select, .summary-container textarea { background: #fff; color: var(--ink); border: 1px solid #cfc6b8; border-radius: 0; }
.summary-container input:focus, .summary-container select:focus, .summary-container textarea:focus { outline: 2px solid var(--brass); }
.submit-btn, .back-btn { background: var(--ink); color: #fff; border-radius: 0; border: none; box-shadow: none; }
.submit-btn:hover, .back-btn:hover, .back-btn:focus { background: var(--brass); color: #fff; }
.payment-option { background: #fff; color: var(--ink); border: 1px solid #cfc6b8; border-radius: 0; }
.payment-option.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.success-message, .order-info-box { background: var(--linen); color: var(--ink); border: 1px solid var(--stone); border-radius: 0; }
.order-info-box strong, .order-section-title, .success-message strong { color: var(--brass-dark); }
.order-section-content { color: var(--muted); }
@media (max-width: 700px) {
  .nav-brand-sub, .nav-brand-tagline { display: none; }
  .nav-brand-main { font-size: 1.05em; letter-spacing: .08em; }
  .nav-inner { height: 58px; padding: 0 12px; gap: .5rem; }
  .nav-logo { gap: .5rem; }
  .nav-logo img { width: 38px; height: 38px; }
  .nav-cart-btn { padding: 8px 14px 8px 30px; }
  .navbar .nav-menu { top: 58px; }
  .hero { padding-top: 84px; }
}
