
:root {
  --bg: #f4f2ed;
  --surface: #ffffff;
  --surface-soft: #ebe9e2;
  --ink: #101512;
  --muted: #5d6862;
  --line: #d5d9d4;
  --accent: #184b3d;
  --accent-deep: #0d2c24;
  --accent-soft: #dfe9e5;
  --gold: #a9783d;
  --dark: #0d1c17;
  --dark-soft: #132720;
  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(13, 28, 23, .08);
  --shadow-hover: 0 22px 60px rgba(13, 28, 23, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--accent); color: white; }
a { color: inherit; text-decoration: none; }
a.text-link { color: var(--accent); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
ul { margin-top: .7rem; }
.container { width: min(calc(100% - 2.4rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.4rem), 850px); margin-inline: auto; }

.site-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244,242,237,.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213,217,212,.85);
}
.nav-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: .65rem 0; }
.brand { font-weight: 950; letter-spacing: -.035em; font-size: 1.03rem; white-space: nowrap; }
.nav-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; font-size: .91rem; font-weight: 760; }
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--accent); transition: .2s ease; }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { right: 0; }

.eyebrow { font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; color: var(--accent); }
.section { padding: 4.6rem 0; }
.section.tight { padding: 3.15rem 0; }
.section.dark { background: var(--dark); color: white; }
.section.soft { background: var(--surface-soft); }
.section h2 { font-size: clamp(2.05rem, 4vw, 3.6rem); line-height: 1.04; margin: .38rem 0 .95rem; letter-spacing: -.045em; }
.section h3 { letter-spacing: -.02em; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 780px; }
.dark .lead { color: #c7d2cd; }
.dark p { color: #d4ddd9; }

.hero {
  padding: 5.9rem 0 4.7rem;
  min-height: 79vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -10% -5% auto auto;
  width: 54vw; height: 54vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle at 40% 40%, rgba(24,75,61,.17), rgba(24,75,61,0) 66%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; position: relative; }
.hero h1 { font-size: clamp(3.35rem, 8vw, 7rem); line-height: .9; letter-spacing: -.066em; margin: .65rem 0 1.35rem; max-width: 920px; }
.hero-intro { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 760px; color: var(--muted); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-panel { background: linear-gradient(145deg, var(--dark), #16382e); color: white; border-radius: 32px; padding: 2rem; min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-panel::after { content:""; position:absolute; width:220px; height:220px; border:1px solid rgba(255,255,255,.13); border-radius:50%; right:-70px; bottom:-65px; box-shadow: 0 0 0 45px rgba(255,255,255,.03), 0 0 0 90px rgba(255,255,255,.02); }
.hero-panel p { position: relative; z-index: 1; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; position: relative; z-index: 1; }
.metric { font-size: 2.5rem; font-weight: 950; letter-spacing: -.055em; line-height: 1; }
.metric-label { color: #b7c5bf; display: block; margin-top: .35rem; font-size: .85rem; line-height: 1.35; }

.page-hero { padding: 5.35rem 0 3rem; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, rgba(24,75,61,.13), rgba(24,75,61,0) 68%); right:-100px; top:-180px; pointer-events:none; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -.057em; margin: .65rem 0 1.1rem; max-width: 980px; position:relative; }
.page-hero .lead { position:relative; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .88rem 1.15rem; border-radius: 999px; font-weight: 850; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn.primary { background: var(--accent); color: white; box-shadow: 0 10px 24px rgba(24,75,61,.16); }
.btn.primary:hover { background: #123f33; }
.btn.secondary { border-color: var(--ink); background: rgba(255,255,255,.22); }
.btn:hover { transform: translateY(-2px); }
.btn.light { background: white; color: var(--accent-deep); }

.credential-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.62); }
.credential-strip .container { display: flex; gap: 1.25rem 1.8rem; justify-content: space-between; flex-wrap: wrap; padding: 1rem 0; font-size: .86rem; font-weight: 800; color: #334039; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.55rem; box-shadow: var(--shadow); }
.card > :last-child { margin-bottom: 0; }
.card h3 { margin: .25rem 0 .75rem; font-size: 1.34rem; }
.card p { color: var(--muted); }
.card.hover { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card.hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: #bcc8c1; }
.service-card { padding: 2rem; min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card .num { font-size: .8rem; letter-spacing: .15em; font-weight: 950; color: var(--gold); }
.service-card ul { padding-left: 1.15rem; color: var(--muted); }
.service-card li { margin: .35rem 0; }

.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem 1.25rem; padding: 0; list-style: none; }
.feature-list li { padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.72); font-weight: 700; }
.feature-list li::before { content: "•"; color: var(--gold); margin-right: .55rem; font-weight: 950; }
.dark .feature-list li { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); }

.pill-row { display: flex; gap: .58rem; flex-wrap: wrap; }
.pill { padding: .52rem .78rem; border: 1px solid var(--line); border-radius: 999px; background: white; font-size: .9rem; }
.dark .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #e6eeea; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial { margin:0; border-left: 3px solid var(--gold); padding: 1.2rem 1.2rem 1.2rem 1.35rem; color: #dfe7e3; background: rgba(255,255,255,.045); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.02rem; }

.credential-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.credential-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); }
.credential-list li:last-child { border-bottom: 0; }

.callout { background: var(--accent); color: white; border-radius: 28px; padding: clamp(2rem, 5vw, 3.2rem); box-shadow: var(--shadow); }
.callout p { color: #edf4f0; max-width: 760px; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.process-step { border-top: 2px solid var(--accent); padding-top: 1rem; }
.process-step::before { counter-increment: process; content: "0" counter(process); display: block; color: var(--gold); font-size: .77rem; letter-spacing: .16em; font-weight: 950; margin-bottom: .55rem; }
.process-step h3 { margin: 0 0 .45rem; }
.process-step p { color: var(--muted); font-size: .95rem; }

.gallery-teaser { display:grid; grid-template-columns: .9fr 1.1fr; gap:2rem; align-items:center; }
.visual-stack { position:relative; min-height:340px; }
.visual-card { position:absolute; width:72%; aspect-ratio: 4/3; border:1px solid var(--line); border-radius:20px; background: linear-gradient(145deg,#fff,#e5ece8); box-shadow: var(--shadow); overflow:hidden; }
.visual-card:nth-child(1){left:0;top:0;transform:rotate(-4deg)}
.visual-card:nth-child(2){right:0;bottom:0;transform:rotate(5deg);background:linear-gradient(145deg,#f8f5ef,#dfe9e5)}
.visual-card::before { content:""; position:absolute; inset:15%; border-left:2px solid rgba(24,75,61,.4); border-bottom:2px solid rgba(24,75,61,.4); }
.visual-card::after { content:""; position:absolute; width:56%; height:35%; left:25%; top:28%; border-radius:50% 45% 55% 40%; border:2px solid rgba(169,120,61,.65); transform:rotate(-12deg); box-shadow: 18px 14px 0 -12px rgba(24,75,61,.5), 38px -12px 0 -14px rgba(24,75,61,.35); }

.note { border:1px dashed #aeb9b3; border-radius: var(--radius-sm); padding:1rem; background:rgba(255,255,255,.45); color:var(--muted); font-size:.93rem; }

.footer { padding: 3rem 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer .muted { color: var(--muted); }

.preview-banner { background:#fff7db; border-bottom:1px solid #e7d79c; color:#554819; padding:.55rem 1rem; font-size:.86rem; text-align:center; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .grid-3, .grid-2, .gallery-teaser { grid-template-columns: 1fr; }
  .hero { padding-top: 5.2rem; }
  .hero-panel { min-height: 330px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .visual-stack { max-width:650px; }
}
@media (max-width: 720px) {
  .container, .narrow { width:min(calc(100% - 1.4rem), var(--max)); }
  .nav-inner { align-items:flex-start; }
  .nav-links { gap:.65rem .9rem; }
  .nav-links .btn { display:none; }
  .hero { min-height:auto; padding:4.4rem 0 3.8rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .page-hero { padding-top:4.5rem; }
  .feature-list, .process, .metric-grid { grid-template-columns: 1fr; }
  .section { padding:4rem 0; }
  .service-card { min-height:auto; }
  .visual-stack { min-height:260px; }
  .footer-grid { align-items:flex-start; flex-direction:column; }
}


/* Image placeholders: replace the inner content with an <img> when real photography is ready. */
.photo-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  border: 1px solid rgba(24,75,61,.22);
  background:
    linear-gradient(135deg, rgba(24,75,61,.11), rgba(169,120,61,.08)),
    repeating-linear-gradient(45deg, rgba(24,75,61,.035) 0 12px, transparent 12px 24px),
    #e8ece8;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  color: var(--accent-deep);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(24,75,61,.17);
  top: -18%; right: -13%;
  box-shadow: 0 0 0 34px rgba(24,75,61,.035), 0 0 0 68px rgba(24,75,61,.02);
}
.photo-placeholder:has(img) {
  padding: 0;
  border: none;
  background: transparent;
  display: block;
}
.photo-placeholder:has(img)::before {
  display: none;
}
.photo-placeholder img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder .bike-photo {
  object-fit: contain;
  object-position: center;
  background: rgba(24,75,61,.06);
}
.photo-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 85%;
  background: rgba(244,242,237,.92);
  border: 1px solid rgba(24,75,61,.16);
  border-radius: 999px;
  padding: .55rem .8rem;
  font-size: .8rem;
  line-height: 1.3;
  font-weight: 850;
}
.photo-placeholder.portrait { min-height: 430px; aspect-ratio: 4/5; }
.photo-placeholder.landscape { min-height: 300px; aspect-ratio: 16/9; }
.photo-placeholder.compact { min-height: 230px; aspect-ratio: 4/3; }
.hero-photo { margin-bottom: 1.35rem; min-height: 205px; border-radius: 19px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); border-color: rgba(255,255,255,.16); color: white; padding: 0; }
.hero-photo::before { display: none; }
.hero-photo img { border-radius: 19px; }
.hero-photo span { background: rgba(13,28,23,.84); color: white; border-color: rgba(255,255,255,.16); }
.page-hero-split { display:grid; grid-template-columns: 1.25fr .55fr; gap: 2.6rem; align-items:center; position:relative; }
.section-media { display:grid; grid-template-columns: .86fr 1.14fr; gap:2.4rem; align-items:center; }
.section-media .photo-placeholder {
  width: 100%;
  max-width: 520px;
}
.logo-placeholder {
  display:inline-flex; align-items:center; justify-content:center; min-height:86px; min-width:180px;
  padding:1rem 1.3rem; border-radius:16px; border:1px dashed #9eaaa4; background:rgba(255,255,255,.68);
  color:var(--muted); font-size:.78rem; font-weight:850; text-align:center; line-height:1.35;
}
.section + .section:not(.dark):not(.soft) { border-top: 1px solid rgba(213,217,212,.42); }
@media (max-width: 980px) {
  .page-hero-split, .section-media { grid-template-columns:1fr; }
  .page-hero-split .photo-placeholder { max-width:520px; }
  .photo-placeholder.portrait { min-height:360px; aspect-ratio:16/10; }
}
