@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&display=swap");

:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --surface: #f3f4f3;
  --text: #141414;
  --text-muted: #5c5c5c;
  --text-soft: #8a8a8a;
  --accent: #0d4a2c;
  --accent-hover: #0a3d24;
  --accent-soft: rgba(13, 74, 44, 0.08);
  --border: rgba(20, 20, 20, 0.08);
  --border-strong: rgba(20, 20, 20, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font-sans: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --shadow: 0 1px 2px rgba(20, 20, 20, 0.04), 0 12px 40px rgba(20, 20, 20, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  outline: none;
}

.nav a:focus-visible,
.logo:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

code {
  font-size: 0.85em;
  background: var(--accent-soft);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 1 min(560px, 58vw);
  min-width: 200px;
}

.logo--embroidery {
  flex: 0 0 auto;
  min-width: auto;
}

.logo-embroidery {
  display: block;
  width: clamp(52px, 14vw, 76px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .logo:not(.logo--embroidery) {
    flex-basis: min(320px, 72vw);
    min-width: 160px;
  }

  .logo-embroidery {
    width: clamp(48px, 15vw, 64px);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(20, 20, 20, 0.03);
}

.btn--light {
  background: var(--text);
  color: #fff;
}

.btn--light:hover {
  opacity: 0.92;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-bg {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr min(340px, 100%);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin-inline: auto;
  }
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.hero-quote {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.45;
}

.hero-quote + .hero-quote {
  margin-top: -0.65rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-stats li {
  padding: 1rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.hero-stats span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Hero visual — watch cuff curve (matches shop) */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-height: 380px;
  width: 100%;
}

.hero-curve {
  position: absolute;
  inset: 8%;
  border-radius: 48% 52% 50% 50% / 42% 42% 58% 58%;
  background: linear-gradient(145deg, #e8ebe9 0%, #f5f5f5 45%, #dfe6e2 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-curve::after {
  content: "";
  position: absolute;
  width: 28%;
  height: 28%;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(160deg, #c4c9c6, #8e9590);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.35);
  opacity: 0.85;
}

.hero-curve-label {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.glove-card {
  display: none;
}

.glove-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 28ch;
  margin: 0;
}

.hero-glove-img {
  display: none;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.landing-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.landing-footer-links a:hover {
  color: var(--text);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-embroidery {
  display: block;
  width: clamp(44px, 12vw, 72px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--tint {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.section-sub {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin: 0 0 1rem;
  font-weight: 600;
}

.prose {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card--dark {
  background: var(--surface);
  border: 1px solid var(--border);
}

.card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text);
}

.quote-meta {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.feature-icon {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.75rem;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

.testimonial-meta {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.section--cta {
  background: linear-gradient(180deg, rgba(13, 74, 44, 0.06) 0%, rgba(13, 74, 44, 0.02) 100%);
  border-block: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
}

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

.faq div {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.faq div:last-child {
  border-bottom: none;
}

.faq dt {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.faq dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.faq a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.faq a:hover {
  text-decoration: underline;
}

.survey-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.survey-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.survey-form input,
.survey-form select,
.survey-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.survey-form textarea {
  resize: vertical;
}

.survey-form input:focus-visible,
.survey-form select:focus-visible,
.survey-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.survey-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.footer-links a:hover {
  color: var(--text);
}

.sep {
  color: var(--text-soft);
  margin: 0 0.35rem;
}

.small {
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}
