/* ==========================================================================
   Batting Cages Concord — Diamond Athletic Stylesheet
   Palette: Night Field / Turf Green / Clay Orange / Chalk / Steel
   Type: Oswald (display) + Source Sans 3 (body)
   ========================================================================== */

:root {
  --night: #10151A;
  --field: #16211A;
  --turf: #2F7D46;
  --turf-deep: #215A32;
  --clay: #E56A2C;
  --clay-deep: #C4531C;
  --chalk: #F6F4EE;
  --steel: #33414D;
  --paper: #FAF9F5;
  --panel: #FFFFFF;
  --ink: #1B2026;
  --ink-soft: #55606B;
  --line: #E3E1D8;
  --gold: #E9B23A;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 12px 34px rgba(16, 21, 26, 0.14);
  --shadow-sm: 0 3px 12px rgba(16, 21, 26, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--turf-deep); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--clay); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .01em; line-height: 1.04; }

/* --------------------------------------------------------------------------
   Top strip + header
   -------------------------------------------------------------------------- */
.topstrip { background: var(--night); color: var(--chalk); font-size: .82rem; }
.topstrip .container { display: flex; justify-content: space-between; gap: 14px; padding: 8px 22px; flex-wrap: wrap; }
.topstrip a { color: #fff; font-weight: 600; }
.topstrip a:hover { color: var(--clay); }

.site-header { background: var(--field); position: sticky; top: 0; z-index: 60; border-bottom: 3px solid var(--clay); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo .ball {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, #fff, #E9E5DA);
  border: 2px solid var(--clay); position: relative;
}
.logo .ball::before, .logo .ball::after {
  content: ""; position: absolute; top: 6px; bottom: 6px; width: 8px;
  border: 1.5px solid var(--clay); border-top: 0; border-bottom: 0; border-radius: 50%;
}
.logo .ball::before { left: 6px; border-right: 0; }
.logo .ball::after { right: 6px; border-left: 0; }
.logo .name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; line-height: .95; text-transform: uppercase; }
.logo .name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .6rem; letter-spacing: .26em; color: var(--clay); margin-top: 3px; }

.main-nav ul { display: flex; gap: 4px; list-style: none; align-items: center; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .03em;
  color: var(--chalk); padding: 9px 13px; border-radius: var(--radius-sm);
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav .nav-cta { background: var(--clay); color: #fff; }
.main-nav .nav-cta:hover { background: var(--clay-deep); color: #fff; }

.nav-toggle { display: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); padding: 8px 13px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: #fff; cursor: pointer; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .03em;
  padding: 13px 26px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .12s ease, box-shadow .18s ease;
}
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: var(--clay-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-turf { background: var(--turf); color: #fff; }
.btn-turf:hover { background: var(--turf-deep); color: #fff; }
.btn-outline { background: transparent; border-color: var(--chalk); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--field); border-color: #fff; }
.btn-ghost { background: var(--panel); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--turf); color: var(--turf-deep); }
.btn-sm { padding: 9px 18px; font-size: .95rem; }
.btn-block { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff; padding: 96px 0 88px;
  background:
    linear-gradient(rgba(16,21,26,.82), rgba(22,33,26,.78)),
    linear-gradient(120deg, #16211A 0%, #10151A 100%);
}
/* chalk baseline "diamond" motif */
.hero::after {
  content: ""; position: absolute; left: 50%; bottom: -140px; transform: translateX(-50%) rotate(45deg);
  width: 260px; height: 260px; border: 3px solid rgba(246,244,238,.10);
}
.hero .kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--clay);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.6rem, 6.6vw, 4.7rem); margin-bottom: 18px; max-width: 800px; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 570px; font-size: 1.12rem; color: #DDE3DC; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.trust-row { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.trust-row .t { display: flex; flex-direction: column; }
.trust-row .t b { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; line-height: 1; }
.trust-row .t span { font-size: .82rem; color: #C6CEC7; letter-spacing: .04em; text-transform: uppercase; margin-top: 5px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 70px 0; }
.section.tinted { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--field); color: #fff; }
.section.field {
  background: linear-gradient(rgba(22,33,26,.94), rgba(22,33,26,.94)),
    repeating-linear-gradient(90deg, #1B2A20 0 60px, #1E2E23 60px 120px);
  color: #fff;
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head .eyebrow { font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); display: block; margin-bottom: 6px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section.dark .section-head .eyebrow, .section.field .section-head .eyebrow { color: var(--gold); }
.section-head-c { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head-c .eyebrow { color: var(--clay); font-family: var(--font-display); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .9rem; display: block; margin-bottom: 8px; }
.section-head-c h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; }
.section-head-c p { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Feature / service cards
   -------------------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }

.feat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.section.dark .feat, .section.field .feat { background: #1F2E24; border-color: #2E4133; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--turf); }

.feat .top {
  height: 130px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.feat .top .glyph { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: #fff; z-index: 2; text-transform: uppercase; letter-spacing: .03em; text-align:center; padding:0 12px;}
.feat .top.g-turf { background: linear-gradient(135deg, #35935220, #21422C); background-color: var(--turf); }
.feat .top.g-clay { background: var(--clay); }
.feat .top.g-steel { background: var(--steel); }
.feat .top.g-gold { background: linear-gradient(135deg, #E9B23A, #C48A1E); }
.feat .top::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 16px, transparent 16px 32px);
}

.feat .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.feat h3 { font-size: 1.4rem; margin-bottom: 8px; }
.section.dark .feat h3, .section.field .feat h3 { color: #fff; }
.feat p { font-size: .94rem; color: var(--ink-soft); flex: 1; }
.section.dark .feat p, .section.field .feat p { color: #C6CEC7; }
.feat .more { margin-top: 14px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; color: var(--clay); }

/* Simple icon feature */
.icon-feat { display: flex; gap: 16px; }
.icon-feat .ic { width: 52px; height: 52px; flex: none; border-radius: var(--radius-sm); background: var(--turf); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.section.dark .icon-feat .ic, .section.field .icon-feat .ic { background: var(--clay); }
.icon-feat h3 { font-size: 1.25rem; margin-bottom: 4px; }
.section.dark .icon-feat h3, .section.field .icon-feat h3 { color: #fff; }
.icon-feat p { font-size: .92rem; color: var(--ink-soft); }
.section.dark .icon-feat p, .section.field .icon-feat p { color: #C6CEC7; }

/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price.featured { border-color: var(--clay); border-width: 2px; }
.price.featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: #fff; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: .72rem; padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.price .plan { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; text-transform: uppercase; }
.price .amount { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--turf-deep); line-height: 1; margin: 12px 0 4px; }
.price .amount small { font-family: var(--font-body); font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.price .note { font-size: .85rem; color: var(--ink-soft); margin-bottom: 18px; }
.price ul { list-style: none; text-align: left; margin-bottom: 22px; }
.price li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; color: var(--ink-soft); }
.price li::before { content: "\2713"; color: var(--turf); font-weight: 700; margin-right: 8px; }
.price li:last-child { border-bottom: 0; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: st; }
.step { position: relative; padding-top: 16px; border-top: 3px solid var(--clay); }
.step::before { counter-increment: st; content: "0" counter(st); font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--clay); display: block; line-height: 1; margin-bottom: 8px; }
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.section.dark .step h3, .section.field .step h3 { color: #fff; }
.step p { font-size: .9rem; color: var(--ink-soft); }
.section.dark .step p, .section.field .step p { color: #C6CEC7; }

/* --------------------------------------------------------------------------
   Page hero (interior)
   -------------------------------------------------------------------------- */
.page-hero {
  color: #fff; padding: 64px 0 54px; border-bottom: 3px solid var(--clay);
  background: linear-gradient(rgba(16,21,26,.82), rgba(22,33,26,.78)), linear-gradient(120deg, #16211A, #10151A);
}
.page-hero .breadcrumbs { font-size: .82rem; color: #C6CEC7; margin-bottom: 14px; }
.page-hero .breadcrumbs a { color: #fff; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.page-hero p { max-width: 620px; margin-top: 10px; color: #DDE3DC; }

/* Split content */
.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.prose h2 { font-size: 1.7rem; margin: 1.5em 0 .45em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin: 1.3em 0 .4em; }
.prose p { color: var(--ink-soft); margin-bottom: 1em; }
.prose ul { list-style: none; margin: 0 0 1.2em; }
.prose ul li { padding: 6px 0 6px 28px; position: relative; color: var(--ink-soft); }
.prose ul li::before { content: "\26BE"; position: absolute; left: 0; top: 6px; }

.side-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.side-card.dark { background: var(--field); color: #fff; border-color: var(--field); }
.side-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.side-card.dark h3 { color: #fff; }
.side-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 14px; }
.side-card.dark p { color: #C6CEC7; }
.side-list { list-style: none; }
.side-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.side-list li:last-child { border-bottom: 0; }
.side-list .k { color: var(--ink-soft); }

/* FAQ */
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 12px; }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; padding: 14px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--clay); font-size: 1.4rem; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 16px; color: var(--ink-soft); font-size: .95rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--clay-deep), var(--clay)); color: #fff; border-radius: var(--radius); padding: 46px 44px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: #FCE7DA; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; margin-bottom: 20px; }
.info-card h2, .form-card h2 { font-size: 1.5rem; margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 40px; height: 40px; flex: none; border-radius: var(--radius-sm); background: var(--turf); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.info-row .label { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.info-row .val { font-weight: 600; color: var(--ink); }
.info-row .val a { color: var(--turf-deep); }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; color: var(--ink-soft); }

.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .18s ease, box-shadow .18s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--turf); box-shadow: 0 0 0 3px rgba(47,125,70,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; }
.form-status { display: none; border-radius: var(--radius-sm); padding: 13px 16px; font-size: .9rem; margin-bottom: 16px; }
.form-status.ok { display: block; background: #E4F3EA; color: #1B6E3E; border: 1px solid #B8DEC6; }
.form-status.err { display: block; background: #FBE7E7; color: #A02226; border: 1px solid #EEC2C2; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Plain + footer */
.page-plain { max-width: 820px; margin: 0 auto; padding: 50px 22px 78px; }
.page-plain h1 { font-size: 2.4rem; margin-bottom: .5em; }
.page-plain h2 { font-size: 1.5rem; margin: 1.5em 0 .4em; }
.page-plain p { color: var(--ink-soft); margin-bottom: 1em; }
.page-plain ul { margin: 0 0 1.1em 1.3em; color: var(--ink-soft); }
.page-plain li { margin-bottom: .4em; }
.center { text-align: center; }

.site-footer { background: var(--night); color: #97A29A; padding: 56px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer .logo { margin-bottom: 14px; }
.site-footer .logo .name { color: #fff; }
.site-footer p { color: #79847B; }
.site-footer h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .06em; color: #fff; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #97A29A; }
.site-footer a:hover { color: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: #5F6A62; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .feat, .price, .btn { transition: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; padding: 8px 0; }
  .main-nav li { border-top: 1px solid rgba(255,255,255,.1); }
  .main-nav a { display: block; padding: 13px 6px; border-radius: 0; }
  .main-nav .nav-cta { text-align: center; margin-top: 8px; border-radius: var(--radius-sm); }
  .header-inner { flex-wrap: wrap; }
  .hero { padding: 64px 0 60px; }
}
