/* ==========================================================================
   Sightline Golf — stylesheet
   Precision-optics palette (ink navy / brass / fog gray) paired with Cambria
   for display type and Trebuchet MS for body copy — system fonts only, no
   CDN. Plain CSS, no build step, no framework. Layout skeleton, class
   naming, and component shapes are original to this site.
   ========================================================================== */

:root {
  /* Precision-optics palette */
  --sg-fog:        #eef1f0;
  --sg-fog-deep:   #dfe4e2;
  --sg-fog-line:   #cdd5d2;
  --sg-paper:      #f8faf9;
  --sg-ink:        #10202b;
  --sg-ink-soft:   #45585f;
  --sg-navy:       #10202b;
  --sg-navy-deep:  #081016;
  --sg-brass:      #b8863c;
  --sg-brass-deep: #8c651f;
  --sg-brass-soft: #d9ae6c;
  --sg-teal:       #2f6f6a;
  --sg-teal-deep:  #234f4b;
  --sg-teal-soft:  #bcd6d2;

  --sg-font-display: Cambria, 'Hoefler Text', Georgia, 'Times New Roman', serif;
  --sg-font-body: 'Trebuchet MS', 'Segoe UI', Verdana, Tahoma, sans-serif;

  --sg-corner: 2px;
  --sg-corner-lg: 6px;
  --sg-shadow: 0 1px 2px rgba(16, 32, 43, 0.07), 0 14px 28px -16px rgba(16, 32, 43, 0.3);
  --sg-shadow-lg: 0 32px 58px -26px rgba(16, 32, 43, 0.42);
  --sg-max: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sg-fog);
  color: var(--sg-ink);
  font-family: var(--sg-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--sg-font-display); font-weight: 700; line-height: 1.16; margin: 0 0 0.5em; color: var(--sg-ink); letter-spacing: -0.005em; }
p { margin: 0 0 1em; color: var(--sg-ink-soft); }
address { font-style: normal; }
button { font-family: inherit; }

h1 { font-size: clamp(2.2rem, 4.2vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.sg-skip {
  position: absolute; left: -999px; top: 0; background: var(--sg-brass); color: #171008;
  padding: 12px 18px; z-index: 200; border-radius: 0 0 4px 0;
}
.sg-skip:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.sg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--sg-corner); font-weight: 700; font-size: 0.92rem;
  border: 1px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: 0.03em;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.sg-btn--primary { background: var(--sg-brass); color: #1a1206; }
.sg-btn--primary:hover { background: var(--sg-brass-deep); color: #f8faf9; transform: translateY(-1px); }
.sg-btn--ghost { border-color: rgba(16, 32, 43, 0.28); color: var(--sg-ink); }
.sg-btn--ghost:hover { border-color: var(--sg-ink); background: rgba(16, 32, 43, 0.05); }
.sg-btn--panel { background: var(--sg-teal); color: #f2fbfa; }
.sg-btn--panel:hover { background: var(--sg-teal-deep); }
.sg-btn--block { width: 100%; }

/* ---------- Utility strip + header ---------- */
.sg-utility { background: var(--sg-navy-deep); color: #d6e4e2; font-size: 0.82rem; }
.sg-utility__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 26px; }
.sg-utility__loc { opacity: 0.8; display: none; letter-spacing: 0.02em; }
.sg-utility__cta { margin-left: auto; color: var(--sg-brass-soft); font-weight: 700; }

.sg-header {
  position: sticky; top: 0; z-index: 100; background: rgba(238, 241, 240, 0.94);
  backdrop-filter: blur(9px); border-bottom: 1px solid var(--sg-fog-line);
  transition: box-shadow 0.25s ease;
}
.sg-header.is-scrolled { box-shadow: 0 10px 26px -20px rgba(16, 32, 43, 0.55); }
.sg-header__inner { display: flex; align-items: center; gap: 22px; padding: 15px 26px; }

.sg-brand { display: flex; align-items: center; gap: 12px; }
.sg-brand__mark {
  position: relative; width: 36px; height: 36px; flex: none;
  border: 1.5px solid var(--sg-navy); border-radius: var(--sg-corner);
  display: flex; align-items: center; justify-content: center;
  background: var(--sg-paper);
}
.sg-brand__mark-eye {
  width: 12px; height: 12px; border-radius: 50%; background: var(--sg-brass);
  box-shadow: 0 0 0 3px rgba(184, 134, 60, 0.18);
}
.sg-brand__mark-line {
  position: absolute; left: 4px; right: 4px; bottom: 6px; height: 1.5px; background: var(--sg-teal);
}
.sg-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.sg-brand__name { font-family: var(--sg-font-display); font-weight: 700; font-size: 1.16rem; }
.sg-brand__tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--sg-ink-soft); }

.sg-nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner);
  background: var(--sg-paper); margin-left: auto; cursor: pointer;
}
.sg-nav-toggle span { width: 18px; height: 2px; background: var(--sg-ink); margin: 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }
.sg-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sg-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.sg-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sg-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.sg-nav__list { display: flex; align-items: center; gap: 20px; }
.sg-nav__item a { font-size: 0.9rem; font-weight: 600; color: var(--sg-ink-soft); padding: 6px 0; position: relative; }
.sg-nav__item a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--sg-brass);
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.sg-nav__item a:hover, .sg-nav__item.is-active a { color: var(--sg-ink); }
.sg-nav__item a:hover::after, .sg-nav__item.is-active a::after { transform: scaleX(1); }
.sg-nav__cta { flex: none; }

@media (max-width: 980px) {
  .sg-utility__loc { display: none; }
  .sg-nav-toggle { display: flex; }
  .sg-nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--sg-paper);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 94px 26px 26px; transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: -22px 0 52px rgba(16, 32, 43, 0.25); overflow-y: auto;
  }
  .sg-nav.is-open { transform: translateX(0); }
  .sg-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .sg-nav__item { width: 100%; border-bottom: 1px solid var(--sg-fog-line); }
  .sg-nav__item a { display: block; padding: 14px 2px; }
  .sg-nav__cta { margin-top: 18px; width: 100%; }
}

/* ---------- Hero: dual-eye sightline diagram ---------- */
.sg-hero {
  position: relative; overflow: hidden; padding: 66px 0 88px;
  background:
    linear-gradient(180deg, var(--sg-fog) 0%, var(--sg-fog-deep) 100%);
}
.sg-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; position: relative; z-index: 2; }
.sg-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--sg-brass-deep); margin-bottom: 16px;
}
.sg-hero__eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--sg-brass); }
.sg-hero__lede { font-size: 1.06rem; max-width: 540px; margin-top: 16px; }
.sg-hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.sg-diagram {
  position: relative; width: 100%; max-width: 440px; margin: 0 auto; padding: 30px 24px;
  background: var(--sg-navy); border-radius: var(--sg-corner-lg); box-shadow: var(--sg-shadow-lg);
  color: #dfe9e8;
}
.sg-diagram__grid {
  position: absolute; inset: 0; border-radius: var(--sg-corner-lg); opacity: 0.5;
  background-image: linear-gradient(rgba(223,233,232,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(223,233,232,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.sg-diagram__row { position: relative; display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.sg-diagram__eye { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--sg-brass-soft); flex: none; position: relative; }
.sg-diagram__eye::after { content: ''; position: absolute; inset: 5px; border-radius: 50%; background: var(--sg-brass-soft); }
.sg-diagram__eye--off { border-color: var(--sg-teal-soft); }
.sg-diagram__eye--off::after { background: var(--sg-teal-soft); }
.sg-diagram__track { position: relative; flex: 1; height: 2px; background: rgba(223,233,232,0.18); }
.sg-diagram__track-fill { position: absolute; left: 0; top: -1px; height: 4px; background: var(--sg-brass-soft); border-radius: 2px; }
.sg-diagram__track--off .sg-diagram__track-fill { background: var(--sg-teal-soft); }
.sg-diagram__target { width: 14px; height: 14px; border: 2px solid #dfe9e8; border-radius: 50%; flex: none; }
.sg-diagram__caption { margin-top: 18px; font-size: 0.8rem; color: rgba(223,233,232,0.72); position: relative; }
.sg-diagram__caption strong { color: var(--sg-brass-soft); }

@media (max-width: 900px) {
  .sg-hero__grid { grid-template-columns: 1fr; }
  .sg-diagram { margin-top: 36px; }
}

/* ---------- Stats strip ---------- */
.sg-stats { background: var(--sg-navy); color: #dfe9e8; }
.sg-stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 40px 0; }
.sg-stat { text-align: center; border-left: 1px solid rgba(223,233,232,0.14); padding-left: 18px; }
.sg-stat:first-child { border-left: none; padding-left: 0; }
.sg-stat__num { display: block; font-family: var(--sg-font-display); font-size: 2rem; font-weight: 700; color: var(--sg-brass-soft); }
.sg-stat__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.78; }
@media (max-width: 720px) { .sg-stats__row { grid-template-columns: repeat(2, 1fr); } .sg-stat { border-left: none; padding-left: 0; } }

/* ---------- Sections ---------- */
.sg-section { padding: 80px 0; }
.sg-section--alt { background: var(--sg-paper); border-top: 1px solid var(--sg-fog-line); border-bottom: 1px solid var(--sg-fog-line); }
.sg-section__head { max-width: 650px; margin-bottom: 44px; }
.sg-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--sg-teal-deep); margin-bottom: 12px;
}
.sg-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--sg-teal); }
.sg-page-header { padding: 58px 0 44px; background: linear-gradient(180deg, var(--sg-fog-deep), var(--sg-fog)); }
.sg-breadcrumb { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sg-brass-deep); margin-bottom: 12px; }
.sg-lede { font-size: 1.04rem; max-width: 640px; }
.sg-text-center { text-align: center; }

.sg-two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
@media (max-width: 880px) { .sg-two-col { grid-template-columns: 1fr; } }

.sg-grid { display: grid; gap: 20px; }
.sg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sg-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sg-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .sg-grid--3, .sg-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sg-grid--2, .sg-grid--3, .sg-grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.sg-card {
  background: var(--sg-paper); border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner-lg);
  padding: 26px; box-shadow: var(--sg-shadow);
}
.sg-card__mark {
  width: 38px; height: 38px; border-radius: var(--sg-corner); background: var(--sg-navy); color: var(--sg-brass-soft);
  display: flex; align-items: center; justify-content: center; font-family: var(--sg-font-display);
  font-weight: 700; margin-bottom: 15px; font-size: 1rem; border: 1px solid var(--sg-navy);
}
.sg-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--sg-teal-deep); margin-top: 6px; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em; }

.sg-panel {
  background: var(--sg-navy); color: #dfe9e8; border-radius: var(--sg-corner-lg); padding: 24px;
  box-shadow: var(--sg-shadow-lg);
}
.sg-panel-title { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin-bottom: 15px; }
.sg-metric-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(223,233,232,0.14); font-size: 0.94rem; }
.sg-metric-row:last-child { border-bottom: none; }
.sg-metric-row span:first-child { opacity: 0.75; }
.sg-metric-row span:last-child { font-weight: 700; }

/* ---------- Offset bars (parallax comparison viz) ---------- */
.sg-offsets > div { margin-bottom: 15px; }
.sg-offsets > div:last-child { margin-bottom: 0; }
.sg-offset-row__label { display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; }
.sg-offset-track { height: 7px; border-radius: 1px; background: rgba(223,233,232,0.16); overflow: hidden; }
.sg-panel .sg-offset-track { background: rgba(223,233,232,0.16); }
.sg-offset-fill { height: 100%; border-radius: 1px; background: var(--sg-brass-soft); }
.sg-offset-fill--muted { background: rgba(223,233,232,0.32); }

/* ---------- Timeline ---------- */
.sg-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; counter-reset: sg-step; position: relative; }
.sg-timeline::before {
  content: ''; position: absolute; top: 19px; left: 6%; right: 6%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--sg-fog-line) 0 7px, transparent 7px 14px);
  z-index: 0;
}
.sg-timeline__item { position: relative; z-index: 1; padding-right: 14px; }
.sg-timeline__num {
  counter-increment: sg-step; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--sg-corner); background: var(--sg-brass); color: #1a1206;
  font-family: var(--sg-font-display); font-weight: 700; margin-bottom: 15px;
}
.sg-timeline__num::before { content: counter(sg-step); }
@media (max-width: 880px) {
  .sg-timeline { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .sg-timeline::before { display: none; }
}

/* ---------- Testimonials ---------- */
.sg-testimonial { position: relative; }
.sg-stars { color: var(--sg-brass); letter-spacing: 2px; display: block; margin-bottom: 12px; font-size: 0.92rem; }
.sg-testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: 15px; }
.sg-avatar {
  width: 38px; height: 38px; border-radius: var(--sg-corner); background: var(--sg-teal); color: #f2fbfa;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; flex: none;
}
.sg-testimonial__author strong { display: block; font-size: 0.9rem; }
.sg-testimonial__author span { font-size: 0.78rem; color: var(--sg-ink-soft); }

/* ---------- Brand tiles ---------- */
.sg-brand-tile { background: var(--sg-paper); border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner-lg); padding: 20px; text-align: center; }
.sg-brand-tile__mark {
  width: 42px; height: 42px; margin: 0 auto 12px; border-radius: var(--sg-corner); background: var(--sg-fog-deep);
  color: var(--sg-brass-deep); display: flex; align-items: center; justify-content: center;
  font-family: var(--sg-font-display); font-weight: 700; font-size: 0.92rem;
}
.sg-brand-tile strong { display: block; margin-bottom: 4px; }
.sg-brand-tile span { font-size: 0.8rem; color: var(--sg-ink-soft); }

/* ---------- CTA band ---------- */
.sg-cta { padding: 76px 0; background: linear-gradient(115deg, var(--sg-navy) 0%, var(--sg-navy-deep) 100%); color: #f2fbfa; }
.sg-cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.sg-cta h2 { color: #f2fbfa; }
.sg-cta p { color: rgba(242, 251, 250, 0.86); }
.sg-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.sg-cta .sg-btn--ghost { border-color: rgba(242, 251, 250, 0.5); color: #f2fbfa; }
.sg-cta .sg-btn--ghost:hover { border-color: #f2fbfa; background: rgba(242, 251, 250, 0.1); }
.sg-cta .sg-btn--primary { background: var(--sg-brass); }
.sg-cta .sg-btn--primary:hover { background: var(--sg-brass-soft); color: #1a1206; }

/* ---------- Pricing ---------- */
.sg-pricing-card { display: flex; flex-direction: column; }
.sg-pricing-card--featured { border-color: var(--sg-brass); box-shadow: 0 22px 42px -24px rgba(184, 134, 60, 0.42); position: relative; }
.sg-pricing-card--featured::before {
  content: 'Most Booked'; position: absolute; top: -12px; right: 22px; background: var(--sg-brass);
  color: #1a1206; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: var(--sg-corner);
}
.sg-price { font-family: var(--sg-font-display); font-size: 2.1rem; font-weight: 700; margin: 8px 0 10px; }
.sg-price span { font-family: var(--sg-font-body); font-size: 0.88rem; font-weight: 500; color: var(--sg-ink-soft); }
.sg-pricing-card ul { margin: 15px 0 20px; }
.sg-pricing-card li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: 0.9rem; color: var(--sg-ink-soft); }
.sg-pricing-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--sg-teal-deep); font-weight: 700; }

.sg-table-wrap { overflow-x: auto; }
.sg-table { width: 100%; border-collapse: collapse; background: var(--sg-paper); border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner-lg); overflow: hidden; }
.sg-table th, .sg-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--sg-fog-line); font-size: 0.92rem; }
.sg-table th { background: var(--sg-fog-deep); font-family: var(--sg-font-display); font-weight: 700; }
.sg-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.sg-faq-item { border-bottom: 1px solid var(--sg-fog-line); padding: 19px 0; }
.sg-faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1rem; list-style: none; display: flex;
  align-items: center; justify-content: space-between; gap: 16px; color: var(--sg-ink);
}
.sg-faq-item summary::-webkit-details-marker { display: none; }
.sg-faq-item summary::after { content: '\002B'; font-size: 1.3rem; color: var(--sg-brass); flex: none; transition: transform 0.2s ease; }
.sg-faq-item[open] summary::after { transform: rotate(45deg); }
.sg-faq-item p { margin-top: 13px; }

/* ---------- Forms ---------- */
.sg-form-card { background: var(--sg-paper); border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner-lg); padding: 28px; box-shadow: var(--sg-shadow); }
.sg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .sg-form-row { grid-template-columns: 1fr; } }
.sg-form-field { margin-bottom: 15px; }
.sg-form-field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 6px; }
.sg-form-field input, .sg-form-field select, .sg-form-field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--sg-fog-line); border-radius: var(--sg-corner);
  font-family: inherit; font-size: 0.94rem; background: #fff; color: var(--sg-ink);
}
.sg-form-field input:focus, .sg-form-field select:focus, .sg-form-field textarea:focus {
  outline: none; border-color: var(--sg-brass); box-shadow: 0 0 0 3px rgba(184, 134, 60, 0.16);
}
.sg-form-note { font-size: 0.82rem; color: var(--sg-ink-soft); }

.sg-check-list li { position: relative; padding-left: 25px; margin-bottom: 12px; color: var(--sg-ink-soft); }
.sg-check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--sg-teal-deep); font-weight: 700; }

/* ---------- Locate panel ---------- */
.sg-locate {
  position: relative; border-radius: var(--sg-corner-lg); overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sg-teal-soft), var(--sg-fog-deep));
  border: 1px solid var(--sg-fog-line); display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.sg-locate--lg { aspect-ratio: 16 / 11; }
.sg-locate__grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(16,32,43,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16,32,43,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.sg-locate__pin { width: 15px; height: 15px; border-radius: 50%; background: var(--sg-brass); border: 3px solid #f2fbfa; box-shadow: var(--sg-shadow); position: relative; z-index: 1; }
.sg-locate__label { margin-top: 10px; font-weight: 700; position: relative; z-index: 1; }
.sg-locate__coords { font-size: 0.78rem; color: var(--sg-ink-soft); position: relative; z-index: 1; }

/* ---------- Team ---------- */
.sg-team-card { text-align: center; }
.sg-team-photo {
  width: 64px; height: 64px; border-radius: var(--sg-corner); background: var(--sg-fog-deep); color: var(--sg-brass-deep);
  display: flex; align-items: center; justify-content: center; font-family: var(--sg-font-display);
  font-weight: 700; font-size: 1.15rem; margin: 0 auto 14px;
}
.sg-team-role { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sg-teal-deep); margin-bottom: 6px; font-weight: 700; }

/* ---------- Error page ---------- */
.sg-error { padding: 126px 0; text-align: center; }
.sg-error-code {
  display: block; font-family: var(--sg-font-display); font-size: clamp(3.8rem, 11vw, 6.6rem);
  font-weight: 700; color: var(--sg-brass); line-height: 1; margin-bottom: 6px;
}

/* ---------- Journal (blog) ---------- */
.sg-post-meta { display: inline-block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--sg-teal-deep); margin-bottom: 10px; }
.sg-article-header { max-width: 760px; }
.sg-article { max-width: 720px; margin: 0 auto; }
.sg-article h2 { margin-top: 2em; }
.sg-article p { font-size: 1.01rem; }
.sg-article blockquote {
  margin: 26px 0; padding: 17px 22px; border-left: 3px solid var(--sg-brass); background: var(--sg-paper);
  font-family: var(--sg-font-display); font-style: italic; font-size: 1.06rem; color: var(--sg-ink);
}

/* ---------- Footer ---------- */
.sg-footer { background: var(--sg-navy); color: #d6e4e2; padding-top: 60px; }
.sg-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 46px; }
.sg-footer .sg-brand__name { font-size: 1.22rem; }
.sg-footer__brand p { color: rgba(214, 228, 226, 0.72); margin-top: 12px; font-size: 0.9rem; }
.sg-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.sg-tag { font-size: 0.72rem; border: 1px solid rgba(214, 228, 226, 0.3); padding: 5px 10px; border-radius: var(--sg-corner); opacity: 0.85; }
.sg-footer h3 { color: #d6e4e2; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 15px; }
.sg-footer address, .sg-footer p { color: rgba(214, 228, 226, 0.78); font-size: 0.9rem; }
.sg-footer a:hover { color: var(--sg-brass-soft); }
.sg-hours { font-size: 0.86rem; }
.sg-hours li { display: flex; justify-content: space-between; padding: 5px 0; color: rgba(214, 228, 226, 0.78); }
.sg-footer__links li { margin-bottom: 9px; font-size: 0.88rem; }
.sg-footer__bottom { border-top: 1px solid rgba(214, 228, 226, 0.14); padding: 19px 0; margin-top: 12px; }
.sg-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: rgba(214, 228, 226, 0.6); }
@media (max-width: 880px) { .sg-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sg-footer__top { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
/* Gated behind .js-on (inline script in <head>) so content is never hidden
   when JavaScript is disabled or blocked. */
.js-on .sg-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js-on .sg-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-on .sg-reveal { opacity: 1; transform: none; transition: none; }
}
