/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --lime:        #4c2a19;
  --lime-lt:     #6b3d26;
  --lime-soft:   #ebdecb;
  --char:        #1E1E1E;
  --char-dk:     #111111;
  --soft:        #F5F5F5;
  --white:       #FFFFFF;
  --beige:       #F7F3EC;
  --text:        #1A1A1A;
  --muted:       #6B7280;
  --r:           20px;
  --r-pill:      100px;
  --pad:         2.5vw;
  --mw:          1400px;
  --nav-glass:   rgba(255,255,255,0.94);
  --nav-border:  transparent;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2 * var(--pad));
  max-width: var(--mw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Left pill: logo + links + hamburger */
.nav-inner {
  background: var(--nav-glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--r-pill);
  padding: 6px 10px 6px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--nav-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: rgba(0,0,0,0.85); background: rgba(0,0,0,0.05); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-drop-btn:hover,
.nav-drop:hover .nav-drop-btn { color: rgba(0,0,0,0.85); background: rgba(0,0,0,0.05); }
.nav-drop-btn .chevron {
  width: 12px; height: 12px;
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-drop:hover .nav-drop-btn .chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  min-width: 230px;
  z-index: 10;
}
.nav-drop:hover .nav-dropdown { display: block; }

.nav-dropdown-menu {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 8px;
  padding: 8px;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.nav-dropdown-menu a {
  display: block;
  color: rgba(0,0,0,0.62);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.85); }
.nav-dropdown-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 4px 8px; }

/* Right pill: Get a Quote */
.btn-quote {
  background: #4c2a19;
  border: 1px solid transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
  display: block;
}
.btn-quote:hover { background: #6b3d26; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: rgba(0,0,0,0.65);
  border-radius: var(--r-pill);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── MOBILE OVERLAY ──────────────────────────────────────── */
.mobile-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--lime-soft);
  z-index: 1001;
  padding: 16px 5vw 32px;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateY(0); pointer-events: auto; }
.mob-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0 18px;
  margin-bottom: 18px;
}
.mob-logo {
  text-decoration: none;
  margin-right: 4px;
  display: flex;
  align-items: center;
}
.mob-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.mob-topnav { display: flex; flex-wrap: wrap; gap: 2px; }
.mob-topnav a {
  color: rgba(30,30,30,0.55);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.mob-topnav a:hover { color: var(--char); background: rgba(0,0,0,0.06); }
.mob-close {
  margin-left: auto;
  background: rgba(0,0,0,0.08);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.mob-close:hover { background: rgba(0,0,0,0.14); }
.mob-close svg { width: 14px; height: 14px; stroke: rgba(30,30,30,0.7); }
.mob-panel {
  background: rgba(255,255,255,0.55);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}
.mob-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--char);
  transition: background .2s;
}
.mob-item:last-of-type { border-bottom: none; }
.mob-item:hover { background: rgba(0,0,0,0.04); }
.mob-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-item-img img { width: 100%; height: 100%; object-fit: contain; }
.mob-item-cat {
  display: block;
  font-size: 11px;
  color: rgba(30,30,30,0.45);
  margin-bottom: 3px;
  font-weight: 500;
}
.mob-item-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--char);
}
.mob-all {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: color .2s;
}
.mob-all:hover { color: var(--lime-lt); }
.mob-nav-links { display: flex; flex-direction: column; margin-top: 10px; }
.mob-nav-text { font-size: 15px; font-weight: 500; color: rgba(30,30,30,0.55); padding: 10px 4px; transition: color .2s; }
.mob-nav-text:hover { color: var(--char); }
.mob-quote {
  display: block;
  margin-top: 16px;
  background: var(--lime);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  border-radius: var(--r-pill);
  text-align: center;
  transition: background .2s;
}
.mob-quote:hover { background: var(--lime-lt); }

/* ── SHARED SECTION LAYOUT ───────────────────────────────── */
.sec-inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.sec-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #4c2a19;
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.sec-badge-lime {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #4c2a19;
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.sec-h2 {
  font-size: clamp(24px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--char);
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
}
.sec-hdr { margin-bottom: 52px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--lime-lt); transform: translateY(-1px); }

.btn-dark {
  display: inline-block;
  background: #4c2a19;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  transition: background .2s;
}
.btn-dark:hover { background: #6b3d26; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--char);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(30,30,30,0.18);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--char); background: rgba(30,30,30,0.04); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 0 var(--pad);
}
.foot-top {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.foot-nl-heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.foot-nl p {
  font-size: 13px;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.55;
}
.nl-form { display: flex; gap: 8px; }
.nl-form input {
  flex: 1;
  min-width: 0;
  background: var(--soft);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  padding: 11px 18px;
  color: var(--char);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.nl-form input::placeholder { color: rgba(0,0,0,0.3); }
.nl-form input:focus { outline: none; border-color: var(--lime); }
.nl-form button {
  background: var(--lime);
  color: var(--char);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: 'Inter', sans-serif;
}
.nl-form button:hover { background: var(--lime-lt); }

.foot-acts-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 16px;
}
.foot-act-list { list-style: none; }
.foot-act-list li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.foot-act-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  color: var(--char);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.foot-act-list li a:hover { color: var(--lime); }
.foot-act-left { display: flex; align-items: center; gap: 13px; }
.foot-act-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
  flex-shrink: 0;
}
.foot-act-arrow {
  font-size: 11px;
  color: rgba(0,0,0,0.28);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.foot-mid {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.foot-mid-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 6px;
}
.foot-col-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 18px;
}
.foot-col-links a {
  display: block;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  padding: 4px 0;
  transition: color .2s;
}
.foot-col-links a:hover { color: var(--lime); }

.foot-bottom {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-bottom p {
  font-size: 12px;
  color: rgba(0,0,0,0.32);
}
.foot-socials { display: flex; gap: 22px; }
.foot-socials a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  transition: color .2s;
}
.foot-socials a:hover { color: var(--lime); }

/* ── BOOK FORM (shared across pages) ─────────────────────── */
.book-grid { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.book-sidebar h3 { font-size: 20px; font-weight: 600; color: var(--char); margin-bottom: 10px; letter-spacing: -0.5px; }
.book-sidebar p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.sidebar-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.sb-item { display: flex; align-items: flex-start; gap: 12px; }
.sb-dot { width: 22px; height: 22px; background: var(--lime-soft); border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.sb-dot::after { content:''; display:block; width:8px; height:8px; background:var(--lime); border-radius:50%; }
.sb-item span { font-size: 13.5px; color: var(--char); line-height: 1.5; }
.book-form { display: flex; flex-direction: column; gap: 18px; }
.form-section-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); padding-bottom: 10px; border-bottom: 1px solid rgba(30,30,30,0.1); margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 12.5px; font-weight: 600; color: var(--char); }
.fg input, .fg select, .fg textarea { padding: 13px 15px; border: 1.5px solid rgba(30,30,30,0.11); border-radius: 8px; font-size: 14.5px; font-family: 'Inter', sans-serif; color: var(--char); background: #fff; transition: border-color .2s; -webkit-appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--lime); }
.fg textarea { resize: vertical; min-height: 120px; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--lime); cursor: pointer; }
.checkbox-item span { font-size: 13.5px; color: var(--char); }
.btn-submit { background: var(--lime); color: #fff; font-weight: 600; font-size: 16px; padding: 16px 28px; border-radius: var(--r-pill); border: none; cursor: pointer; width: 100%; transition: background .2s, transform .2s; margin-top: 4px; }
.btn-submit:hover { background: var(--lime-lt); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 440px) { .form-row { grid-template-columns: 1fr; } }

/* ── BOX ITEMS GRID (shared across pages) ────────────────── */
.box-items-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.box-item-card { border-radius: 8px; overflow: hidden; background: #F4F4F4; }
.box-item-card-img { height: 200px; display: flex; align-items: center; justify-content: center; padding: 14px; }
.box-item-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.box-item-card-body { padding: 16px 18px 20px; }
.box-item-card-name { font-size: 14px; font-weight: 600; color: var(--char); margin-bottom: 4px; }
.box-item-card-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .btn-quote { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { background: none; border: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0; }
}

@media (max-width: 768px) {
  :root { --pad: 5vw; }
  .foot-top { grid-template-columns: 1fr; gap: 48px; }
  .foot-mid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .box-items-grid { grid-template-columns: repeat(2,1fr); }
  .sec-h2 { font-size: 29px; max-width: 100%; }
}

@media (max-width: 480px) {
  .foot-mid { grid-template-columns: 1fr; }
}

/* ── AUDIENCE TOGGLE (Private / Business) ────────────────── */
[data-aud] { display: none; }
html[data-audience="private"] [data-aud="private"] { display: block; }
html[data-audience="business"] [data-aud="business"] { display: block; }
html[data-audience="private"] [data-aud="private"].d-inline { display: inline; }
html[data-audience="business"] [data-aud="business"].d-inline { display: inline; }
html[data-audience="private"] [data-aud="private"].d-flex { display: flex; }
html[data-audience="business"] [data-aud="business"].d-flex { display: flex; }
html[data-audience="private"] [data-aud="private"].d-grid { display: grid; }
html[data-audience="business"] [data-aud="business"].d-grid { display: grid; }
html[data-audience="private"] [data-aud="private"].d-li { display: list-item; }
html[data-audience="business"] [data-aud="business"].d-li { display: list-item; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.aud-toggle {
  display: flex;
  align-items: center;
  background: var(--nav-glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--nav-border);
  border-radius: var(--r-pill);
  padding: 6px;
  gap: 2px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.aud-toggle button {
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.aud-toggle button.active { background: #4c2a19; color: #fff; }
.aud-toggle button:not(.active):hover { color: rgba(0,0,0,0.75); }

.mob-aud-toggle { display: flex; background: rgba(0,0,0,0.06); border-radius: var(--r-pill); padding: 4px; gap: 3px; margin: 4px 0 18px; }
.mob-aud-toggle button { flex: 1; border: none; background: transparent; color: rgba(30,30,30,0.55); font-size: 13.5px; font-weight: 500; padding: 10px; border-radius: var(--r-pill); cursor: pointer; transition: background .2s, color .2s; font-family: 'Inter', sans-serif; }
.mob-aud-toggle button.active { background: var(--char); color: #fff; }

@media (max-width: 960px) { .aud-toggle { display: none !important; } }

/* ── DELIVERY TIER TABS (Send-It-Yourself / Full Service) ─── */
.tier-tabs { display: inline-flex; background: var(--soft); border-radius: var(--r-pill); padding: 4px; gap: 2px; margin-bottom: 44px; }
.tier-tab { border: none; background: transparent; color: rgba(30,30,30,0.55); font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: var(--r-pill); cursor: pointer; transition: background .2s, color .2s; font-family: 'Inter', sans-serif; }
.tier-tab.active { background: var(--char); color: #fff; }
.tier-tab:not(.active):hover { color: var(--char); }
.tier-panel[hidden] { display: none; }
.tier-lede { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

.tier-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.tier-compare-card { border: 1.5px solid rgba(30,30,30,0.1); border-radius: 8px; padding: 30px 28px; }
.tier-compare-card.is-full { background: var(--char); border-color: var(--char); }
.tier-compare-icon { width: 44px; height: 44px; background: var(--lime-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tier-compare-card.is-full .tier-compare-icon { background: rgba(255,255,255,0.12); }
.tier-compare-icon svg { width: 22px; height: 22px; }
.tier-compare-card h4 { font-size: 19px; font-weight: 600; color: var(--char); margin-bottom: 8px; letter-spacing: -0.4px; }
.tier-compare-card.is-full h4 { color: #fff; }
.tier-compare-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.tier-compare-card.is-full p { color: rgba(255,255,255,0.68); }
.tier-compare-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--lime); background: var(--lime-soft); padding: 4px 11px; border-radius: var(--r-pill); }
.tier-compare-card.is-full .tier-compare-tag { color: #fff; background: rgba(255,255,255,0.15); }

/* ── PLACEHOLDER VISUAL (for products without photography yet) ── */
.ph-visual {
  background: linear-gradient(135deg, var(--lime-soft) 0%, #f3e9da 60%, var(--lime-soft) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ph-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(76,42,25,0.10) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.6;
}
.ph-visual-icon { position: relative; width: 64px; height: 64px; background: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 34px rgba(76,42,25,0.25); }
.ph-visual-icon svg { width: 28px; height: 28px; }
.ph-visual-tag { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(76,42,25,0.45); white-space: nowrap; }

@media (max-width: 900px) { .tier-compare { grid-template-columns: 1fr; } }
