/* =========
   Base
========= */
:root{
  --bg: #ffffff;
  --ink: #151515;
  --muted: #5f6368;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --soft2: #fbfbfb;
  --accent: #b1001c;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --radius2: 26px;
  --max: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Yu Gothic UI","Yu Gothic","Hiragino Kaku Gothic ProN","Meiryo",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; top: 12px; }

/* =========
   Header
========= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-name{
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-tag{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: var(--soft);
  text-decoration: none;
  color: var(--ink);
}

/* =========
   Hero
========= */
.hero{
  padding: 54px 0 34px;
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(177,0,28,.10), transparent 60%),
    radial-gradient(800px 500px at 90% 30%, rgba(0,0,0,.06), transparent 65%),
    linear-gradient(180deg, #fff, #fff);
  border-bottom: 1px solid var(--line);
}

.hero-inner{
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 26px;
  align-items: center;
}

.eyebrow{
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: .01em;
}
.lead{
  margin: 0 0 18px;
  color: #2b2b2b;
  font-size: 16px;
}

.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}
.badge{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.hero-note{
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.hero-visual{
  display: grid;
  place-items: center;
}

.blind-card{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius2);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blind-lines{
  height: 220px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,0)),
    repeating-linear-gradient(
      180deg,
      rgba(0,0,0,.06) 0px,
      rgba(0,0,0,.06) 2px,
      rgba(255,255,255,1) 10px,
      rgba(255,255,255,1) 18px
    );
}

.blind-caption{
  padding: 16px 18px 18px;
}
.cap-title{
  font-weight: 800;
  letter-spacing: .02em;
}
.cap-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* =========
   Sections
========= */
.section{
  padding: 54px 0;
}
.section.alt{
  background: var(--soft2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: .02em;
}
.section-desc{
  margin: 0;
  color: var(--muted);
}

/* =========
   Cards & grids
========= */
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.03);
}
.card h3{
  margin: 0 0 10px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: #2b2b2b;
}

/* =====
   Image edge control (square corners)
===== */

.image-card,
.image-card img,
.track-gallery img{
  border-radius: 0 !important;
}


/* =========
   Lists
========= */
.list{
  margin: 0;
  padding-left: 18px;
  color: #2b2b2b;
}
.list li{
  margin: 8px 0;
}
.list.compact li{ margin: 6px 0; }

/* =========
   Callouts & Notes
========= */
.callout{
  margin-top: 18px;
  border: 1px solid #e7e7e7;
  background: #fafafa;
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.callout-title{
  font-weight: 700;
  margin-bottom: 6px;
  color: #2b2b2b;
}
.callout-text{
  margin: 0;
  color: #2b2b2b;
}

.note{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.muted{ color: var(--muted); }

/* =========
   Simple table
========= */
.table{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.row{
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid var(--line);
}
.row:first-child{ border-top: none; }
.th, .td{
  padding: 14px 16px;
}
.th{
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
}
.td{ color: #2b2b2b; }

.footer-note{
  margin-top: 12px;
}

/* =========
   Footer
========= */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: #fff;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.foot-brand{
  font-weight: 800;
}
.foot-sub{
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* =========
   Responsive
========= */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .brand{ min-width: auto; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .th{ background: #fff; border-bottom: 1px solid var(--line); }
  .nav{ display: none; } /* keep it simple on mobile */
}

/* =====
   Hero image size control
===== */

.image-card--hero{
  width: 100%;
  max-width: 360px;        /* ← keeps it modest */
  margin: 0 auto;          /* centers on desktop */
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.image-card--hero img{
  width: 100%;
  height: 280px;           /* ← fixed visual height */
  object-fit: cover;       /* crops safely */
  display: block;
}

.image-card--hero .image-caption{
  padding: 14px 16px 16px;
}

.image-card--hero .cap-title{
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 15px;
}

.image-card--hero .cap-sub{
  font-size: 12px;
  color: #5f6368;
  margin-top: 4px;
}

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
}

/* =====
   Track record gallery
===== */

.track-gallery{
  margin-top: 28px;
}

.gallery-head{
  margin-bottom: 12px;
}

.gallery-head h3{
  font-size: 16px;
  margin: 0 0 6px;
}

.gallery-desc{
  font-size: 13px;
  color: #5f6368;
  margin: 0;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 900px){
  .gallery-grid img{
    height: 180px;
  }
}

@media (max-width: 500px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}



