:root {
  --sage-deep: #4A5D3F;       /* deep sage green */
  --sage: #6B8159;            /* primary sage */
  --sage-mid: #8FA67D;        /* mid sage */
  --sage-soft: #DDE6D2;       /* very light sage / wash */
  --cream: #FAF6EE;           /* warm cream background */
  --cream-warm: #F4EBD9;      /* slightly more saturated cream */
  --paper: #EFE6D2;           /* paper/parchment accent */
  --terracotta: #C97D5C;      /* terracotta / clay accent */
  --terracotta-soft: #E8C9B8; /* soft terracotta */
  --gold: #B89968;            /* muted antique gold */
  --gold-soft: #DCC9A2;
  --ink: #2D2A22;             /* warm dark brown-black */
  --ink-soft: #5A5547;        /* warm grey-brown */
  --line: #E5DDC8;            /* soft beige line */
  --shadow-sm: 0 2px 8px rgba(74,93,63,.06);
  --shadow-md: 0 8px 24px rgba(74,93,63,.10);
  --shadow-lg: 0 24px 56px rgba(74,93,63,.16);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 100px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -.015em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Top bar + Nav */
.top-bar {
  background: var(--sage-deep);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: .04em;
}
.top-bar a { color: var(--gold-soft); border-bottom: 1px solid transparent; transition: border .2s; }
.top-bar a:hover { border-bottom-color: var(--gold-soft); }

.nav {
  background: rgba(250,246,238,.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { height: 52px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 14px; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width .3s;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  background: transparent;
  transition: background .2s;
  position: relative;
  cursor: pointer;
}
.nav-icon-btn:hover { background: var(--sage-soft); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle { display: none; background: transparent; padding: 8px; border:none; cursor:pointer; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-light {
  background: var(--terracotta);
  color: #fff;
}
.btn-light:hover { background: #B66B49; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 1px solid var(--sage-deep);
}
.btn-outline:hover { background: var(--sage-deep); color: var(--cream); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #C7A878; transform: translateY(-2px); }

/* Section common */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '✦';
  color: var(--gold);
  margin: 0 12px;
  font-size: 8px;
  vertical-align: middle;
}
.section h2 em { font-style: italic; color: var(--sage-deep); }
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--sage) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(220,201,162,.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,125,92,.12) 0%, transparent 40%);
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 {
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
}
.page-header h1 em { font-style: normal; color: var(--gold-soft); }
.page-header p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* App tray */
.app-tray {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45,42,34,.94);
  backdrop-filter: blur(14px) saturate(140%);
  border-radius: 100px;
  padding: 8px 12px;
  display: flex;
  gap: 4px;
  z-index: 90;
  box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
  border: 1px solid rgba(220,201,162,.2);
}
.app-tray-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  transition: all .2s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.app-tray-btn:hover { background: rgba(220,201,162,.18); color: #fff; transform: translateY(-2px); }
.app-tray-btn svg { width: 22px; height: 22px; }
.app-tray-btn.cart .badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.app-tray-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.app-tray-btn:hover .app-tray-tooltip { opacity: 1; }

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45,42,34,.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.active { display: flex; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: 4px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .4s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(45,42,34,.08);
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 20px;
  z-index: 1;
  border: none;
  cursor: pointer;
}
.modal-close:hover { background: rgba(45,42,34,.16); }
.modal-header {
  padding: 40px 36px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.modal-header h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--sage-deep);
  margin-bottom: 8px;
}
.modal-header p { font-size: 14px; color: var(--ink-soft); }
.modal-body { padding: 28px 36px; }
@media (max-width: 600px) {
  .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
}

.search-tag {
  padding: 6px 14px;
  background: var(--sage-soft);
  border-radius: 100px;
  font-size: 13px;
  color: var(--sage-deep);
  display: inline-block;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quick-link {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 12px;
  text-align: center;
  border-radius: 2px;
  transition: all .2s;
  display: block;
  color: var(--ink);
}
.quick-link:hover { border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quick-link-icon { font-size: 24px; margin-bottom: 8px; }
.quick-link-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(45,42,34,.6);
  z-index: 110;
  display: none;
}
.drawer-backdrop.active { display: block; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px; max-width: 85vw;
  height: 100%;
  background: var(--cream);
  z-index: 120;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.drawer.active { transform: translateX(0); }
.drawer-head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-head img { height: 44px; }
.drawer-links { flex: 1; padding: 20px; }
.drawer-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.drawer-foot {
  padding: 20px;
  background: var(--sage-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-wa, .drawer-call {
  padding: 12px;
  text-align: center;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.drawer-wa { background: #25D366; color: #fff; }
.drawer-call { background: var(--sage-deep); color: #fff; }

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo img { height: 60px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  transition: all .25s;
}
.footer-social a:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-family: var(--sans);
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold-soft); }
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Toast */
.ezy-toast {
  position: fixed;
  top: 20px; right: 20px;
  background: var(--sage-deep);
  color: #fff;
  padding: 14px 20px;
  border-radius: 2px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 999;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight .3s;
}
@keyframes slideInRight { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--line);
  border-top-color: var(--sage-deep);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form fields */
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--sage);
}
.form-textarea { min-height: 120px; resize: vertical; }
