/* Classic Vision Care — review landing pages
   Editorial, mobile-first. Static HTML/CSS only. */

:root {
  --forest: #114755;
  --forest-deep: #0d3640;
  --teal: #15737A;
  --sage: #3294A3;
  --gold: #52C7E1;
  --gold-light: #7ED4E6;
  --cream: #faf8f5;
  --charcoal: #1A1A1A;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  padding: 36px 22px 72px;
  flex: 1 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--teal);
  margin: 0 0 28px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 7vw, 40px);
  line-height: 1.12;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--forest-deep);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.lede {
  font-size: 17px;
  color: var(--charcoal);
  margin: 0 0 36px;
  max-width: 42ch;
}

.review-chooser {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 40px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-google {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-google:hover,
.btn-google:focus {
  background: var(--forest-deep);
  box-shadow: 0 4px 14px rgba(17, 71, 85, 0.25);
  transform: translateY(-1px);
}

.btn-facebook {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--forest);
}

.btn-facebook:hover,
.btn-facebook:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 4px 14px rgba(82, 199, 225, 0.35);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-label {
  font-size: 16px;
}

.btn-source {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chooser-note {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.7;
  margin: -16px 0 36px;
  text-align: center;
}

.feedback-card {
  border-top: 1px solid rgba(17, 71, 85, 0.18);
  padding-top: 28px;
  margin: 0 0 32px;
}

.feedback-card p {
  margin: 0 0 16px;
}

.btn-office {
  background: var(--cream);
  color: var(--forest-deep);
  border-color: var(--gold);
  margin: 0 0 12px;
}

.btn-office:hover,
.btn-office:focus {
  background: var(--gold-light);
  color: var(--forest-deep);
}

.btn-yelp {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
}

.btn-yelp:hover,
.btn-yelp:focus {
  background: var(--forest);
}

.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}

.score-btn {
  flex: 1 0 calc(12% - 8px);
  min-width: 40px;
  min-height: 48px;
  padding: 8px 6px;
  border: 2px solid var(--forest);
  border-radius: 10px;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.progress {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
}

.pip {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(17, 71, 85, 0.16);
}

.pip.is-on {
  background: var(--gold);
}

.scale-ends {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 20px;
}

.text-back {
  background: none;
  border: 0;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
}

.btn-primary {
  min-height: 64px;
}

.nudge {
  margin: 8px 0 24px;
  font-size: 15px;
  color: var(--forest);
}

.score-btn.is-on {
  background: var(--forest);
  color: var(--cream);
}

.score-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.q-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 16px;
}

.q-copy {
  margin: 0 0 12px;
}

.feedback-text {
  width: 100%;
  min-height: 96px;
  margin: 0 0 16px;
  padding: 12px;
  border: 2px solid var(--forest);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
}

.followup {
  margin: 0 0 24px;
}

.office-card {
  border-top: 1px solid rgba(17, 71, 85, 0.18);
  padding-top: 28px;
}

.office-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 700;
}

.office-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 6px;
}

.office-address,
.office-phone {
  margin: 0;
  font-size: 15px;
  color: var(--charcoal);
}

.office-phone a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}

.office-phone a:hover {
  text-decoration: underline;
}

.choose-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.choose-list a {
  display: block;
  min-height: 56px;
  padding: 16px 20px;
  border: 2px solid var(--forest);
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--forest);
  background: var(--cream);
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
}

.choose-list a:hover,
.choose-list a:focus {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}

.choose-list a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.choose-list .loc-name {
  display: block;
}

.choose-list .loc-sub {
  display: block;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

.footer {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  font-size: 13px;
  color: var(--charcoal);
  opacity: 0.65;
  text-align: center;
  border-top: 1px solid rgba(17, 71, 85, 0.12);
}

.footer a {
  color: var(--forest);
  text-decoration: none;
}

@media (min-width: 600px) {
  .page {
    padding: 64px 32px 80px;
  }
  .review-chooser:not(.platforms) {
    flex-direction: row;
  }
  .review-chooser:not(.platforms) .btn {
    flex: 1 1 0;
  }
  .choose-list {
    flex-direction: row;
  }
  .choose-list a {
    flex: 1 1 0;
  }
}
