/* ========================================
   [Pharmacy Name] — Marketing Site
   Palette: warm sage + cream + deep forest
   ======================================== */

:root {
  --forest: #1f3b2d;
  --sage: #5a8a6b;
  --sage-soft: #e8f0ea;
  --cream: #faf7f2;
  --cream-dark: #f2ede3;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --gold: #c89b3c;
  --border: #e5ddd0;
  --shadow: 0 4px 20px rgba(31, 59, 45, 0.08);
  --shadow-lg: 0 20px 60px rgba(31, 59, 45, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; }

p { color: var(--ink-soft); }

a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--forest); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 1rem;
}

.accent { color: var(--sage); font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}
.brand:hover { color: var(--sage); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a:hover { color: var(--sage); }
.nav-phone { font-weight: 600 !important; }
@media (max-width: 820px) {
  .nav-links a:not(.btn):not(.nav-phone) { display: none; }
  .nav-phone { display: none !important; }
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at top left, var(--sage-soft), transparent 60%),
    radial-gradient(ellipse at bottom right, var(--cream-dark), transparent 60%),
    var(--cream);
}
.hero-inner { max-width: 860px; text-align: center; }
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-sub em { color: var(--forest); font-style: italic; font-weight: 500; }
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 90px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p em { color: var(--forest); font-style: italic; }
@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== WHY ===== */
.why {
  padding: 110px 0;
  background: var(--cream);
}
.why h2 { margin-bottom: 50px; }
.why-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-copy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--ink-soft);
}
.why-copy strong { color: var(--forest); font-weight: 600; }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== SERVICES ===== */
.services {
  padding: 110px 0;
  background: white;
}
.services h2 { margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  transition: all 0.3s;
}
.service:hover {
  border-color: var(--sage);
  background: var(--sage-soft);
}
.service h4 {
  color: var(--forest);
  margin-bottom: 10px;
}
.service p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== TRANSFER ===== */
.transfer {
  padding: 120px 0;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}
.transfer .eyebrow { color: var(--gold); }
.transfer h2 {
  color: var(--cream);
  margin-bottom: 16px;
}
.transfer-sub {
  color: rgba(250, 247, 242, 0.7);
  font-size: 1.1rem;
  margin-bottom: 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  text-align: left;
}
.step {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step h4 {
  color: var(--cream);
  margin-bottom: 8px;
}
.step p {
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.95rem;
}
.transfer-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.transfer .btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.transfer .btn-primary:hover {
  background: var(--cream);
}
.transfer .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.transfer .btn-ghost:hover {
  background: var(--cream);
  color: var(--forest);
}
.or {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 100px 0;
  background: var(--sage-soft);
  text-align: center;
}
.testimonial blockquote {
  max-width: 780px;
  margin: 0 auto;
}
.testimonial p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.45;
  color: var(--forest);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial footer {
  font-size: 0.95rem;
  color: var(--sage);
  font-weight: 600;
  font-style: normal;
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: var(--cream);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.visit h2 { margin-bottom: 40px; }
.visit-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.visit-block:last-child { border-bottom: none; }
.visit-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 8px;
}
.visit-block p {
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.7;
}
.visit-map {
  position: sticky;
  top: 100px;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage-soft);
  border: 1px solid var(--border);
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sage);
}
.map-placeholder span {
  font-size: 2rem;
}
.map-placeholder small {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .visit-inner { grid-template-columns: 1fr; gap: 40px; }
  .visit-map { height: 320px; position: static; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 50px 0;
  background: var(--forest);
  color: var(--cream);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .brand { color: var(--cream); }
.footer .brand:hover { color: var(--gold); }
.footer .brand-mark {
  background: var(--gold);
  color: var(--forest);
}
.footer-tag {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 6px;
}
.copyright {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}
