/* Total Arc Performance — marketing site. Same brand tokens as the app
   (see pt-platform/src/styles/global.css) but fully standalone: this
   site deploys as its own Pages project and shares no code with the app. */

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --paper: #F5F4EF; --card: #FFFFFF; --ink: #17150F; --muted: #6B6660;
  --line: #E3E0D3; --accent: #83621E; --accent-d: #695019; --soft: #F5EED8;
  --gold: #C9A227;
  --disp: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); line-height: 1.55;
}
a { color: var(--accent-d); }
h1, h2, h3 { font-family: var(--disp); line-height: 1.15; margin: 0 0 12px; }

.btn {
  display: inline-block; background: var(--accent); color: #fff; border: 0;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--accent-d); }
.btn.small { padding: 8px 14px; font-size: 13px; }
.ghost {
  display: inline-block; background: var(--soft); border: 1px solid var(--line);
  color: var(--accent-d); border-radius: 8px; padding: 12px 20px;
  font-weight: 600; font-size: 15px; text-decoration: none;
}
.ghost:hover { border-color: var(--accent); }

/* Header */
.bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: var(--card); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 5;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo-badge { background: #000; border-radius: 8px; padding: 7px 11px; display: flex; line-height: 0; }
.logo-badge img { height: 26px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.bname { font-family: var(--disp); font-weight: 700; letter-spacing: .06em; font-size: 16px; }
.bsub { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: clamp(10px, 2.5vw, 22px); }
.nav a { text-decoration: none; font-weight: 600; font-size: 14px; }
@media (max-width: 560px) {
  .brand-text .bsub { display: none; }
  .nav a:not(.btn) { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #0d0c09 0%, #1c1810 70%, #2a2210 100%);
  color: #fff; text-align: center;
  padding: clamp(64px, 12vw, 130px) 20px clamp(56px, 10vw, 110px);
}
.hero h1 {
  font-size: clamp(32px, 6vw, 58px); letter-spacing: .01em; margin-bottom: 18px;
}
.hero h1 .arc { color: var(--gold); }
.hero-sub {
  color: #cfc9bb; font-size: clamp(15px, 2.2vw, 19px); max-width: 640px;
  margin: 0 auto 14px;
}
.hero-cred {
  color: var(--gold); font-family: var(--disp); font-weight: 700;
  font-size: clamp(13px, 1.8vw, 15.5px); letter-spacing: .04em;
  margin: 0 auto 30px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .ghost { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); color: #f0ead6; }
.hero .ghost:hover { border-color: var(--gold); }

/* Sections */
.section { max-width: 1040px; margin: 0 auto; padding: clamp(48px, 8vw, 80px) 20px; }
.section h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 26px; }

/* Services menu — grouped rows with a price slot on the right. */
.menu { display: flex; flex-direction: column; gap: 28px; }
.menu-group {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px 6px;
}
.menu-k {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.menu-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.menu-group .menu-row:first-of-type { border-top: 0; }
.menu-row h3 { font-size: 18px; margin: 0 0 4px; }
.menu-row p { color: var(--muted); font-size: 14px; margin: 0; max-width: 560px; }
.price {
  flex: none; font-family: var(--disp); font-weight: 700; font-size: 13.5px;
  color: var(--accent-d); white-space: nowrap;
}
@media (max-width: 560px) {
  .menu-row { flex-direction: column; gap: 6px; }
}

/* Golf band */
.golfband {
  background: #0d0c09; color: #fff; text-align: center;
  padding: clamp(44px, 7vw, 70px) 20px;
}
.golfband h2 { color: var(--gold); font-size: clamp(22px, 3.5vw, 30px); }
.golfband p { color: #cfc9bb; max-width: 640px; margin: 0 auto; font-size: 15.5px; }

/* Location */
.loc { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: start; }
.addr { font-size: 16px; line-height: 1.7; margin-top: 0; }
.loc .ghost, .loc .btn { margin-top: 4px; }
.loc p { color: var(--muted); margin-top: 0; }

/* Footer */
.foot {
  border-top: 1px solid var(--line); padding: 22px clamp(16px, 4vw, 40px);
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.foot-links { display: flex; gap: 16px; }
.foot a { color: var(--accent-d); text-decoration: none; font-weight: 600; }
