/* =========================================================
   Let's Put EYE on You — stylesheet
   ========================================================= */

:root {
  --teal: #19444a;
  --teal-dark: #123338;
  --red: #cb2026;
  --black: #111111;
  --text: #1a1a1a;
  --text-muted: #52525b;
  --gray-bg: #f3f3f3;
  --border: #dcdcdc;
  --cream: #efe1bf;
  --white: #ffffff;
  --blue: #2f9be0;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --container-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 16px; color: var(--text-muted); }

.text-red { color: var(--red); }
.text-teal { color: var(--teal); }

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-black { background: var(--black); color: #fff; }
.btn-dark { background: var(--black); color: #fff; padding: 14px 26px; font-size: 0.92rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* -------- announcement bar -------- */
.announcement-bar {
  background: var(--red);
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  text-align: center;
  padding: 5px 16px;
}
.announcement-bar a {
  display: inline-block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
}
.announcement-bar a:hover,
.announcement-bar a:focus-visible {
  text-decoration: none;
}

/* -------- sticky top (announcement bar + header) -------- */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* -------- header -------- */
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img { height: 32px; width: auto; display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a:not(.btn) {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 14px; text-align: center; }

.site-header.menu-open .mobile-menu { display: flex; }

/* -------- hero -------- */
.hero { padding-top: 64px; text-align: center; }
.hero-inner { max-width: 860px; }
.eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--text);
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  font-weight: 800;
}
.hero-lead {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px;
}
.hero .btn-row { justify-content: center; margin-bottom: 56px; }
.hero-image { width: 100%; line-height: 0; }
.hero-image img { width: 100%; height: clamp(240px, 46vw, 560px); object-fit: cover; }

/* -------- story -------- */
.story { padding: 88px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.story-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--text);
}
.story-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.story-statement strong { display: block; margin-bottom: 2px; }
.story-copy p:last-child { font-size: 1.05rem; max-width: 560px; }

/* -------- destination -------- */
.destination { padding: 40px 0 96px; }
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.check-list { list-style: none; margin: 0 0 28px; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.destination-note { font-weight: 600; color: var(--text); margin-bottom: 20px; }
.quote-bubble {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text);
}
.destination-image img { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }

/* -------- problems -------- */
.problems { padding: 40px 0 100px; }
.section-heading.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.card img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 20px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; }

/* -------- come-in -------- */
.come-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.come-in-image { background: var(--teal-dark); min-height: 480px; }
.come-in-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.come-in-copy {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.come-in-copy p, .come-in-copy h2 { color: var(--text); }
.lead-line { font-weight: 700; color: var(--text); }

/* -------- repair -------- */
.repair { padding: 88px 0; max-width: 860px; margin: 0 auto; }
.repair .container { max-width: 860px; }

/* -------- how it works -------- */
.how-it-works { background: var(--gray-bg); padding: 88px 0; overflow: hidden; }
.how-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.how-copy .btn { margin-top: 12px; }
.how-illustration { display: flex; justify-content: center; }
.how-illustration img { width: 260px; height: 260px; border-radius: 50%; object-fit: cover; background: #f0e6cd; }

/* -------- outside -------- */
.outside {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.outside-image { min-height: 520px; }
.outside-image svg { width: 100%; height: 100%; display: block; }
.outside-copy {
  background: var(--cream);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.outside-copy p, .outside-copy h2 { color: var(--text); }

/* -------- about -------- */
.about { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-image img { border-radius: 12px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* -------- contact -------- */
.contact { padding: 40px 0 96px; }
.contact .container { max-width: 640px; }
.contact-form { margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
}
.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form-field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.form-status.success { color: var(--teal); }
.form-status.error { color: var(--red); }

/* -------- faqs -------- */
.faqs { padding: 40px 0 110px; }
.faqs .container { max-width: 820px; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { margin-bottom: 10px; }
.faq-item p { margin-bottom: 0; }

/* -------- footer -------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner > div { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #ececec;
  color: #6b6b6b;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-image { order: -1; }
  .destination-image img { aspect-ratio: 16/10; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .come-in { grid-template-columns: 1fr; }
  .come-in-image { min-height: 360px; }
  .outside { grid-template-columns: 1fr; }
  .outside-image { min-height: 360px; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; max-width: 420px; }
  .how-grid { grid-template-columns: 1fr; text-align: center; }
  .how-illustration { order: -1; }
}

@media (max-width: 720px) {
  .announcement-bar { padding: 4px 16px; }
  .announcement-bar a { font-size: 0.72rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .come-in-copy, .outside-copy { padding: 56px 24px; }
  .hero { padding-top: 40px; }
  .story, .repair, .about, .how-it-works { padding-top: 60px; padding-bottom: 60px; }
}
