:root {
  --red: #E2231A;
  --orange: #F7941D;
  --yellow: #FFC20E;
  --gradient: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  --ink: #1A1A1A;
  --gray: #555555;
  --light-bg: #F9F8F6;
  --border: #ECE9E4;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--red); text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-sub {
  color: var(--gray);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(226, 35, 26, 0.3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(226, 35, 26, 0.4); }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}

.logo { height: 40px; display: block; }

.header-area {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray);
  font-size: 0.9rem;
  display: none;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.coffee-link {
  display: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  white-space: nowrap;
}

.coffee-link:hover { color: var(--orange); }

@media (min-width: 820px) {
  .coffee-link { display: inline; }
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--border);
  line-height: 1.1;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-download {
  display: none;
  padding-top: 8px;
  padding-bottom: 8px;
}

.btn-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
}

@media (min-width: 720px) {
  .btn-download { display: inline-block; }
}

@media (min-width: 640px) {
  .header-area { display: block; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--light-bg);
}

.hero-inner { max-width: 720px; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 28px;
}

/* Trust bar */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

@media (min-width: 800px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-item span {
  font-size: 0.85rem;
  color: #ccc;
}

/* Symptoms */
.symptoms {
  padding: 70px 0;
  text-align: center;
}

.symptom-list {
  list-style: none;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto;
  text-align: left;
  display: grid;
  gap: 12px;
}

.symptom-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 14px;
  font-weight: 500;
}

.symptom-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

/* Services */
.services {
  padding: 70px 0;
  background: var(--light-bg);
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 24px;
  margin: 36px 0;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.service-card p { color: var(--gray); }

/* About */
.about { padding: 70px 0; }

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (min-width: 700px) {
  .about-inner { flex-direction: row; text-align: left; }
}

.about-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid var(--yellow);
}

@media (min-width: 700px) {
  .about-photo { width: 300px; height: 300px; }
}

/* Reviews */
.reviews {
  padding: 70px 0;
  background: var(--light-bg);
  text-align: center;
}

.review-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  grid-template-columns: 1fr;
  text-align: left;
}

@media (min-width: 700px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin: 0;
  border: 1px solid var(--border);
}

.review-card p { color: var(--ink); font-style: italic; }

.review-card cite {
  color: var(--gray);
  font-weight: 600;
  font-style: normal;
}

/* FAQ */
.faq { padding: 70px 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 { margin-bottom: 8px; }
.faq-item p { color: var(--gray); margin: 0; }

/* Contact */
.contact {
  padding: 70px 0 90px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.reviews-link { color: var(--gray); font-weight: 500; }
.reviews-link:hover { color: var(--ink); }

.contact h2 { color: #fff; }
.contact .section-sub { color: #ccc; margin: 0 auto 12px; }

.contact-reassure {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto 36px;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form button { margin-top: 8px; justify-self: center; }

/* Honeypot: kept in the DOM and visible to bots, hidden from people and screen readers. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.site-footer {
  padding: 30px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo { height: 28px; opacity: 0.7; }
.footer-inner p { color: var(--gray); font-size: 0.85rem; margin: 0; }
