/* Turnt Golf static site — mobile-first, no framework. */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1f2c;
  background: #ffffff;
  padding: 0 20px;
}

.site-header,
main,
.site-footer {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 24px 0 18px;
  border-bottom: 1px solid #e6e8ee;
}

.wordmark {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1f2c;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 0.95rem;
}

.site-nav a,
.site-footer nav a {
  color: #2f5d3a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.site-nav a:hover,
.site-footer nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: #2f5d3a;
}

main {
  padding: 28px 0 56px;
}

h1 {
  font-size: 1.85rem;
  margin: 0 0 12px;
  line-height: 1.25;
}

h2 {
  font-size: 1.2rem;
  margin: 32px 0 10px;
  line-height: 1.3;
}

p, ul, ol { margin: 0 0 14px; }

ul, ol { padding-left: 22px; }

li + li { margin-top: 6px; }

a { color: #2f5d3a; }

.lede {
  font-size: 1.05rem;
  color: #333a48;
}

.muted { color: #6a7180; font-size: 0.9rem; }

.callout {
  padding: 14px 16px;
  background: #f3f7f4;
  border-left: 4px solid #2f5d3a;
  border-radius: 4px;
}

blockquote.consent {
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: #f5f6f8;
  border-left: 4px solid #4a5567;
  border-radius: 4px;
  font-style: normal;
  color: #1a1f2c;
}

.messages { list-style: none; padding: 0; }
.messages li + li { margin-top: 10px; }

.bubble {
  display: block;
  padding: 12px 14px;
  background: #e7f1ea;
  border: 1px solid #cfe1d4;
  border-radius: 14px;
  max-width: 580px;
}

.steps li { margin-bottom: 10px; }

.screenshot {
  margin: 16px 0 24px;
  padding: 0;
}

.screenshot img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px dashed #b3b9c4;
  background: #f5f6f8;
  border-radius: 6px;
}

.screenshot figcaption {
  font-size: 0.9rem;
  color: #4a5567;
  margin-top: 8px;
}

.cta-links { font-size: 0.95rem; }

main address {
  display: block;
  margin: 8px 0 18px;
  padding: 12px 14px;
  background: #f5f6f8;
  border-left: 4px solid #4a5567;
  border-radius: 4px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid #e6e8ee;
  padding: 18px 0 40px;
  color: #6a7180;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 8px;
}

.site-footer .copy { margin: 0; }
.site-footer .contact { margin: 4px 0 0; }
