
/* Montana Flower - Luxury Apothecary Theme */

:root {
  --bg: #f7f4ef;
  --bg-alt: #f0ebe2;
  --bg-deep: #171410;
  --text-main: #2a2520;
  --text-muted: #6b6258;
  --accent: #c7a15a;
  --accent-soft: rgba(199, 161, 90, 0.14);
  --border-soft: rgba(0,0,0,0.06);
  --radius-xl: 20px;
  --shadow-soft: 0 18px 45px rgba(15, 10, 5, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */

.site-wrapper {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

.card-shell {
  background: linear-gradient(135deg, #fdfaf4 0%, #f3ecdf 50%, #f9f2e5 100%);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 26px 26px 34px;
  margin-top: 18px;
}

/* Header & Nav */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(199,161,90,0.6);
  background: radial-gradient(circle at 30% 20%, #fdfcf8 0, #f7efe0 38%, #e1d1b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--bg-deep);
  letter-spacing: 0.06em;
}

.brand-text-main {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-main);
}

.brand-text-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.brand-labels {
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  gap: 10px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.03);
}

.nav a {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}

.nav a:hover {
  background: rgba(255,255,255,0.95);
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav a.active {
  background: var(--accent-soft);
  color: var(--bg-deep);
  border-color: rgba(199,161,90,0.8);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.hero-main-title {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-main-title span {
  display: block;
}

.hero-script {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-copy {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge-pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.btn-primary {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid var(--accent);
  background: radial-gradient(circle at 20% 0, #fffaf1 0, #e2c894 50%, #b6873a 100%);
  color: #20160b;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 32px rgba(45, 28, 8, 0.3);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(45, 28, 8, 0.34);
  filter: brightness(1.03);
}

.btn-secondary {
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.7);
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-meta span {
  color: var(--accent);
}

/* Hero visual */

.hero-visual {
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.05);
  background: radial-gradient(circle at 0 0, #fffdf8 0, #f2e7d3 42%, #d3b890 100%);
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

.hero-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23,20,16,0.88);
  color: rgba(255,255,255,0.88);
}

.hero-jar {
  position: relative;
  margin: 36px auto 12px;
  width: 70%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  background: linear-gradient(160deg, #fdfaf7 0, #f1e0c7 40%, #d0a96a 100%);
  box-shadow: 0 22px 45px rgba(0,0,0,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-jar-label {
  width: 76%;
  height: 70%;
  border-radius: 20px;
  background: rgba(248, 241, 232, 0.88);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.hero-jar-label span:nth-child(1) {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-jar-label span:nth-child(2) {
  margin-top: 6px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-jar-label span:nth-child(3) {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-base {
  margin: 0 auto;
  width: 75%;
  max-width: 280px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0, rgba(0,0,0,0.28) 0, rgba(0,0,0,0.06) 46%, transparent 100%);
}

/* Sections / blocks */

.section {
  margin-top: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.86);
  padding: 18px 18px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.section-title {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-body {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.feature-list li {
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
}

.feature-bullet {
  font-size: 14px;
  color: var(--accent);
  line-height: 1.5;
}

/* Cards */

.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.info-card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(145deg, #fdfaf6 0, #f3ece1 45%, #f7efe4 100%);
  padding: 12px 14px 14px;
}

.info-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.info-card-title {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-card-body {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Form */

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 18px;
  margin-top: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.form-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  background: rgba(255,255,255,0.95);
}

.form-field textarea {
  border-radius: 14px;
  min-height: 80px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(199,161,90,0.45);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  justify-content: flex-start;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.checkbox-row input[type="checkbox"] {
  margin-top: 2px;
}

/* Tables */

.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
}

.simple-table th,
.simple-table td {
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 6px 4px;
  text-align: left;
}

.simple-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 12px 20px 18px;
  font-size: 11px;
  text-align: center;
  color: var(--text-muted);
}

/* Utility */

.text-small {
  font-size: 12px;
}

.text-tiny {
  font-size: 11px;
}

.text-muted {
  color: var(--text-muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

/* Responsive */

@media (max-width: 840px) {
  .card-shell {
    padding: 20px 18px 24px;
  }
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-visual {
    order: -1;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav {
    width: 100%;
    overflow-x: auto;
    padding: 4px 6px;
  }
  .hero-main-title {
    font-size: 26px;
  }
}
