/* =========================================================================
   GolfLogos.com  -  golflogos.css
   Design system + components. Edit tokens below to reskin the whole site.
   ========================================================================= */

:root {
  /* Palette ------------------------------------------------------------- */
  --ink:          #18211c;   /* near-black, green-shifted: body text       */
  --ink-soft:     #45524a;   /* secondary text                             */
  --fairway:      #1f5439;   /* primary deep green                         */
  --fairway-deep: #143524;   /* darker green for bands                     */
  --fairway-lit:  #2e7350;   /* hover / lighter green                      */
  --brass:        #b8893b;   /* gold accent: medals, trophies, thread      */
  --brass-lit:    #d2a655;
  --parchment:    #f5f1e6;   /* warm scorecard-paper background            */
  --paper:        #fbf9f3;   /* lighter surface (cards)                    */
  --line:         #e3dcc8;   /* hairline borders on parchment              */
  --line-soft:    #efe9d9;
  --white:        #ffffff;

  /* Type ---------------------------------------------------------------- */
  --display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  /* Scale & spacing ----------------------------------------------------- */
  --wrap: 1140px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(20,40,28,.06), 0 14px 34px -18px rgba(20,40,28,.28);
  --shadow-lift: 0 22px 50px -22px rgba(20,40,28,.40);
}

/* Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--fairway); text-decoration: none; }
a:hover { color: var(--fairway-lit); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1rem; }

/* Utility eyebrow label (mono = vector-coordinate / technical feel) ------ */
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .9rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brass);
  display: inline-block;
}

/* Layout ----------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--paper { background: var(--paper); }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-left: auto; margin-right: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--fairway); color: var(--white); }
.btn--primary:hover { background: var(--fairway-lit); color: var(--white); box-shadow: var(--shadow); }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-lit); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--fairway); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--fairway); color: var(--fairway); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Header / nav ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,230,.88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.03em; }
.brand:hover { color: var(--ink); }
.brand img, .brand svg { width: 34px; height: 34px; }
.brand .dot { color: var(--brass); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  color: var(--ink); padding: 9px 14px; border-radius: 7px;
}
.nav-links a:hover { color: var(--fairway); background: var(--line-soft); }
.nav-links a.is-current { color: var(--fairway); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; padding: 6px; }

/* Hero ------------------------------------------------------------------- */
.hero { padding: 76px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 span { color: var(--fairway); }
.hero .lede { margin-top: 4px; margin-bottom: 28px; }

/* Signature: before / after transformation panel ------------------------ */
.ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--paper);
}
.ba__cell { position: relative; padding: 26px; display: grid; place-items: center; aspect-ratio: 1 / 1; }
.ba__cell--before { background: repeating-linear-gradient(45deg, #ece6d6, #ece6d6 10px, #e6dfcc 10px, #e6dfcc 20px); }
.ba__cell--after  { background: var(--fairway-deep); }
.ba__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 5px;
}
.ba__cell--before .ba__tag { background: rgba(24,33,28,.08); color: var(--ink-soft); }
.ba__cell--after  .ba__tag { background: rgba(255,255,255,.14); color: var(--white); }
.ba__cell img { width: 78%; }
.ba__cell--before img { filter: grayscale(.5) blur(.4px); opacity: .8; }

/* Service cards ---------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--brass); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--fairway); color: var(--white); font-size: 1.35rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.card__link { font-family: var(--display); font-weight: 600; margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; }
.card__link i { transition: transform .15s ease; }
.card:hover .card__link i { transform: translateX(4px); }

/* Portfolio grid --------------------------------------------------------- */
.folio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.folio__item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.folio__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.folio__pair { display: grid; grid-template-columns: 1fr 1fr; }
.folio__pair > div { aspect-ratio: 1/1; display: grid; place-items: center; padding: 20px; position: relative; }
.folio__pair .is-before { background: repeating-linear-gradient(45deg,#ece6d6,#ece6d6 9px,#e6dfcc 9px,#e6dfcc 18px); }
.folio__pair .is-after  { background: var(--fairway-deep); }
.folio__pair .is-before img { filter: grayscale(.5); opacity: .82; width: 80%; }
.folio__pair .is-after img { width: 80%; }
.folio__pair .mini-tag { position: absolute; bottom: 8px; left: 8px; font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.folio__pair .is-before .mini-tag { color: var(--ink-soft); }
.folio__pair .is-after .mini-tag { color: rgba(255,255,255,.7); }
.folio__meta { padding: 16px 18px; }
.folio__meta h3 { font-size: 1.05rem; margin: 0 0 2px; }
.folio__meta span { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }

/* Filter pills ----------------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
.pill {
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  padding: 8px 16px; border-radius: 30px; border: 1.5px solid var(--line);
  background: var(--paper); color: var(--ink-soft); cursor: pointer;
}
.pill:hover { border-color: var(--fairway); color: var(--fairway); }
.pill.is-active { background: var(--fairway); border-color: var(--fairway); color: var(--white); }

/* Bands ------------------------------------------------------------------ */
.band { background: var(--fairway-deep); color: var(--white); }
.band h2, .band h3 { color: var(--white); }
.band .lede { color: rgba(255,255,255,.78); }
.band .eyebrow { color: var(--brass-lit); }
.band .eyebrow::before { background: var(--brass-lit); }

/* Steps / process -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
.step { }
.step__n { font-family: var(--mono); font-size: .85rem; color: var(--brass); letter-spacing: .1em; margin-bottom: 10px; }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Price line ------------------------------------------------------------- */
.pricetag { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--fairway); letter-spacing: -.02em; }
.pricetag small { font-family: var(--body); font-weight: 500; font-size: .95rem; color: var(--ink-soft); letter-spacing: 0; }

/* Two-column feature ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.checklist { list-style: none; margin: 18px 0 0; padding: 0; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; color: var(--ink-soft); }
.checklist li i { color: var(--fairway); margin-top: 4px; }

/* Team ------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 760px; margin: 0 auto; }
.member { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.member img { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; border: 3px solid var(--brass); }
.member h3 { margin-bottom: 2px; }
.member .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 12px; }
.member p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Forms ------------------------------------------------------------------ */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.field .hint { font-size: .82rem; color: var(--ink-soft); margin: 4px 0 0; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--fairway); box-shadow: 0 0 0 3px rgba(31,84,57,.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--file input { padding: 10px; background: var(--parchment); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.notice { padding: 16px 18px; border-radius: var(--radius-sm); font-size: .96rem; margin-bottom: 22px; }
.notice--ok  { background: #e7f1ea; border: 1px solid #bcd9c8; color: #1f5439; }
.notice--err { background: #fbe9e7; border: 1px solid #f0c4bd; color: #9a3324; }

/* PayPal placeholder slot ------------------------------------------------ */
.paypal-slot {
  border: 2px dashed var(--brass); border-radius: var(--radius-sm);
  padding: 22px; text-align: center; background: rgba(184,137,59,.06);
  font-family: var(--mono); font-size: .82rem; color: var(--ink-soft); line-height: 1.5;
}

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.74); padding: 60px 0 28px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer a { color: rgba(255,255,255,.74); }
.site-footer a:hover { color: var(--brass-lit); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.footer-brand svg, .footer-brand img { width: 32px; height: 32px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }
.footer-social a { font-size: 1.15rem; margin-left: 14px; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .folio, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--parchment); border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .nav-toggle { display: block; }
  .nav-cta { margin: 8px 0 0; }
}
@media (max-width: 600px) {
  .grid-3, .folio, .steps, .team, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .form { padding: 22px; }
}

/* Accessibility floor ---------------------------------------------------- */
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
