/* mock v3 base — overrides Bootstrap where needed */
body { font-family: var(--sans); }
.container { max-width: none; /* mock width rule follows */ }
.btn:focus { box-shadow: none; }

:root {
  --paper:#f7f7f3;
  --paper2:#fbfbf8;
  --ink:#15212d;
  --navy:#12263a;
  --muted:#6a716f;
  --line:#dfe1dc;
  --moss:#748b3b;
  --moss2:#a8b66c;
  --blue:#009fe3;
  --shadow:0 18px 60px rgba(17,33,45,.08);
  --radius:28px;
  --serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-feature-settings:"palt";
  letter-spacing:.02em
}

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

img {
  display:block;
  max-width:100%
}

button {
  font:inherit;
  color:inherit
}

.container {
  width:min(1180px,calc(100% - 48px));
  margin:auto
}

.section {
  padding:118px 0
}

.section-sm {
  padding:82px 0
}

.eyebrow {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--moss);
  font-weight:700
}

.eyebrow:before {
  content:"";
  width:28px;
  height:1px;
  background:var(--moss)
}

.section-title {
  margin:14px 0 22px;
  font:500 clamp(30px,3.3vw,50px)/1.42 var(--serif);
  letter-spacing:.06em
}

.lead {
  max-width: none;
  margin:0;
  color:#4e5858;
  font-size:15px;
  line-height:2
}

.link-arrow {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-weight:700;
  font-size:13px
}

.link-arrow:after {
  content:"→";
  transition:transform .25s
}

.link-arrow:hover:after {
  transform:translateX(5px)
}

/* Header */

.site-header {
  height:86px;
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,247,243,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(20,30,35,.07)
}

.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  gap:42px
}

.logo img {
  width:142px;
  height:auto
}

.nav {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:34px;
  font-size:13px;
  font-weight:700
}

.nav a {
  position:relative;
  padding:34px 0 30px
}

.nav a:not(.header-cta):after {
  content:"";
  position:absolute;
  left:0;
  bottom:22px;
  width:100%;
  height:1px;
  background:var(--moss);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .25s
}

.nav a:hover:after {
  transform:scaleX(1);
  transform-origin:left
}

.header-cta {
  margin-left:4px;
  padding:13px 19px!important;
  background:var(--navy);
  color:white;
  border-radius:999px
}

.menu-toggle {
  display:none;
  margin-left:auto;
  border:0;
  background:none;
  width:42px;
  height:42px;
  position:relative
}

.menu-toggle i,.menu-toggle:before,.menu-toggle:after {
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  height:1px;
  background:var(--ink);
  transition:.25s
}

.menu-toggle:before {
  top:12px
}

.menu-toggle i {
  top:20px
}

.menu-toggle:after {
  top:28px
}

/* Hero */

.hero {
  min-height:680px;
  display:grid;
  grid-template-columns:minmax(0,42%) minmax(0,58%);
  background:var(--paper2);
  overflow:hidden;
  position:relative
}

.hero:before {
  content:"";
  position:absolute;
  left:-120px;
  top:120px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(116,139,59,.08),transparent 68%);
  pointer-events:none
}

.hero-copy {
  padding:104px 6vw 90px max(5vw,calc((100vw - 1180px)/2));
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2
}

.hero-brand {
  font-size:12px;
  letter-spacing:.22em;
  color:var(--moss);
  font-weight:700;
  margin-bottom:18px
}

.hero h1 {
  font:500 clamp(44px,5vw,76px)/1.43 var(--serif);
  letter-spacing:.08em;
  margin:0 0 28px
}

.hero h1 span {
  display:block
}

.hero p {
  max-width: none;
  margin:0 0 34px;
  color:#485352;
  font-size:15px;
  line-height:2.05
}

.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap
}

.btn {
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  padding:0 26px;
  border-radius:2px;
  border:1px solid var(--navy);
  font-size:13px;
  font-weight:700;
  transition:.25s
}

.btn-primary {
  background:var(--navy);
  color:white
}

.btn-primary:hover {
  background:#1a354f;
  transform:translateY(-2px)
}

.btn-ghost:hover {
  background:white;
  transform:translateY(-2px)
}

.hero-visual {
  position:relative;
  min-height:680px;
  background:#ddd;
  overflow:hidden;
  border-bottom-left-radius:72px
}

.slides,.slide {
  position:absolute;
  inset:0
}

.slide {
  opacity:0;
  transition:opacity 1s ease;
  overflow:hidden
}

.slide.active {
  opacity:1;
  z-index:1
}

.slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.025);
  transition:transform 7s ease
}

.slide.active img {
  transform:scale(1.065)
}

.slide:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(13,28,39,.04),rgba(13,28,39,.02) 55%,rgba(13,28,39,.18))
}

.slide[data-pos="left"] img {
  object-position:38% center
}

.slider-ui {
  position:absolute;
  z-index:4;
  left:36px;
  right:36px;
  bottom:30px;
  display:flex;
  justify-content:space-between;
  align-items:center
}

.dots {
  display:flex;
  gap:8px
}

.dot {
  width:25px;
  height:2px;
  border:0;
  background:rgba(255,255,255,.55);
  padding:0;
  cursor:pointer;
  transition:.3s
}

.dot.active {
  width:44px;
  background:white
}

.slider-arrows {
  display:flex;
  gap:8px
}

.slider-arrow {
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(10,24,36,.18);
  color:white;
  backdrop-filter:blur(8px);
  cursor:pointer;
  transition:.25s
}

.slider-arrow:hover {
  background:rgba(10,24,36,.52)
}

/* Intro */

.intro {
  background:#fff
}

.intro-grid {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:90px;
  align-items:start
}

.audience {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}

.audience-item {
  padding:30px 24px 30px 0
}

.audience-item+.audience-item {
  border-left:1px solid var(--line);
  padding-left:26px
}

.ico {
  width:42px;
  height:42px;
  margin-bottom:18px;
  color:var(--moss)
}

.audience h3 {
  font:600 16px/1.6 var(--serif);
  margin:0 0 10px
}

.audience p {
  font-size:12px;
  line-height:1.9;
  color:#65706f;
  margin:0
}

/* Services */

.services {
  background:var(--paper)
}

.services-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:60px
}

.service-list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line)
}

.service {
  display:grid;
  grid-template-columns:76px 1fr;
  gap:24px;
  padding:42px 26px 46px 0;
  border-bottom:1px solid var(--line)
}

.service:nth-child(even) {
  padding-left:40px;
  border-left:1px solid var(--line)
}

.service-num {
  font:500 40px/1 var(--serif);
  color:#c9ccc5
}

.service h3 {
  margin:0 0 13px;
  font:600 21px/1.55 var(--serif)
}

.service p {
  margin:0 0 22px;
  color:#5f6968;
  font-size:13px;
  line-height:1.9
}

.sports-band {
  margin-top:72px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  min-height:300px;
  background:white;
  box-shadow:var(--shadow);
  overflow:hidden
}

.sports-photo {
  background:linear-gradient(110deg,rgba(18,38,58,.05),rgba(18,38,58,.25)),url(../img/mock-bg-1.jpg) center/cover
}

.sports-copy {
  padding:54px;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.sports-copy h3 {
  margin:8px 0 14px;
  font:600 26px/1.55 var(--serif)
}

.sports-copy p {
  margin:0 0 24px;
  color:#5f6968;
  font-size:13px;
  line-height:1.9
}

/* Works */

.works {
  background:#fff
}

.works-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:48px
}

.works-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  grid-template-rows:310px 310px;
  gap:18px
}

.work {
  position:relative;
  overflow:hidden;
  background:#e9e8e3;
  cursor:pointer
}

.work:first-child {
  grid-row:1/3
}

.work-media {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .6s ease
}

.work:hover .work-media {
  transform:scale(1.04)
}

.w1 {
  background-image:linear-gradient(0deg,rgba(11,23,31,.6),transparent 55%),url(../img/mock-bg-2.jpg)
}

.w2 {
  background-image:linear-gradient(0deg,rgba(11,23,31,.6),transparent 55%),url(../img/mock-bg-3.jpg)
}

.w3 {
  background-image:linear-gradient(0deg,rgba(11,23,31,.6),transparent 55%),url(../img/mock-bg-4.jpg)
}

.w4 {
  background-image:linear-gradient(0deg,rgba(11,23,31,.6),transparent 55%),url(../img/mock-bg-5.jpg)
}

.w5 {
  background-image:linear-gradient(135deg,#d7d9d3,#fbfbf7 55%,#b8c49c)
}

.work-caption {
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  color:white;
  z-index:2
}

.work-caption small {
  display:block;
  font-size:10px;
  letter-spacing:.12em;
  margin-bottom:7px;
  opacity:.82
}

.work-caption strong {
  font:600 16px/1.6 var(--serif)
}

.w5+.work-caption {
  color:var(--ink)
}

/* Why */

.why {
  background:var(--paper)
}

.why-wrap {
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  min-height:620px;
  background:white
}

.why-image {
  background:linear-gradient(0deg,rgba(18,38,58,.08),rgba(18,38,58,.08)),url(../img/mock-bg-6.jpg) 52% center/cover
}

.why-copy {
  padding:84px 76px
}

.reasons {
  margin-top:34px;
  border-top:1px solid var(--line)
}

.reason {
  display:grid;
  grid-template-columns:46px 1fr;
  gap:20px;
  padding:26px 0;
  border-bottom:1px solid var(--line)
}

.reason b {
  font:600 16px/1.7 var(--serif)
}

.reason p {
  margin:5px 0 0;
  color:#63706e;
  font-size:12px;
  line-height:1.9
}

.reason-no {
  font:500 25px/1 var(--serif);
  color:var(--moss)
}

/* Company / contact */

.company-strip {
  background:white;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}

.company-inner {
  display:grid;
  grid-template-columns:1fr 1.6fr 1fr;
  align-items:center;
  gap:50px;
  padding:54px 0
}

.company-name {
  font:500 28px/1.4 var(--serif)
}

.company-meta {
  font-size:13px;
  line-height:2;
  color:#5f6968
}

.phone {
  font:500 31px/1 var(--serif);
  white-space:nowrap
}

.phone small {
  display:block;
  font:700 11px/1.4 var(--sans);
  letter-spacing:.12em;
  color:var(--moss);
  margin-bottom:11px
}

.contact {
  background:var(--navy);
  color:white;
  position:relative;
  overflow:hidden
}

.contact:after {
  content:"";
  position:absolute;
  width:540px;
  height:540px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:50%;
  right:-130px;
  top:-230px;
  box-shadow:0 0 0 80px rgba(255,255,255,.02),0 0 0 160px rgba(255,255,255,.018)
}

.contact-inner {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:center;
  padding:86px 0
}

.contact h2 {
  font:500 clamp(30px,4vw,48px)/1.5 var(--serif);
  margin:0 0 12px
}

.contact p {
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.9
}

.contact .btn {
  border-color:white;
  min-width:260px;
  background:white;
  color:var(--navy)
}

/* Footer */

.footer {
  background:#0c1b2a;
  color:#dce2e3;
  padding:64px 0 28px
}

.footer-grid {
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:46px
}

.footer-logo {
  filter:none;
  width:145px;
  margin-bottom:24px
}

.footer p {
  font-size:11px;
  line-height:1.9;
  color:#9eaaad
}

.footer h4 {
  font-size:12px;
  margin:0 0 18px;
  color:white
}

.footer ul {
  list-style:none;
  padding:0;
  margin:0
}

.footer li {
  margin:0 0 10px;
  font-size:11px;
  color:#aeb8ba
}

.copyright {
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:48px;
  padding-top:24px;
  font-size:10px;
  color:#7e8c91;
  text-align:center
}

/* Reveal */

.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease,transform .8s ease
}

.reveal.in {
  opacity:1;
  transform:none
}

.mobile-contact-bar {
  display:none
}

@media(max-width:980px) {
  .container {
    width:min(100% - 36px,760px)
  }

  .site-header {
    height:70px
  }

  .logo img {
    width:124px
  }

  .nav {
    position:fixed;
    top:70px;
    left:0;
    right:0;
    background:var(--paper2);
    display:block;
    padding:20px 24px 30px;
    transform:translateY(-130%);
    opacity:0;
    transition:.3s;
    border-bottom:1px solid var(--line)
  }

  .nav.open {
    transform:none;
    opacity:1
  }

  .nav a {
    display:block;
    padding:15px 0!important;
    border-bottom:1px solid var(--line)
  }

  .nav a:after {
    display:none
  }

  .header-cta {
    margin-top:14px;
    text-align:center;
    border-radius:2px
  }

  .menu-toggle {
    display:block
  }

  .hero {
    display:flex;
    flex-direction:column;
    min-height:auto
  }

  .hero-visual {
    order:1;
    min-height:48vw;
    border-radius:0
  }

  .hero-copy {
    order:2;
    padding:56px 24px 68px
  }

  .hero h1 {
    font-size:clamp(38px,8vw,56px)
  }

  .intro-grid {
    grid-template-columns:1fr;
    gap:48px
  }

  .service-list {
    grid-template-columns:1fr
  }

  .service:nth-child(even) {
    padding-left:0;
    border-left:0
  }

  .sports-band {
    grid-template-columns:1fr
  }

  .sports-photo {
    min-height:280px
  }

  .works-grid {
    grid-template-columns:1fr 1fr;
    grid-template-rows:380px 240px 240px
  }

  .work:first-child {
    grid-column:1/3;
    grid-row:auto
  }

  .why-wrap {
    grid-template-columns:1fr
  }

  .why-image {
    min-height:380px
  }

  .company-inner {
    grid-template-columns:1fr 1fr
  }

  .company-inner>div:nth-child(2) {
    grid-column:1/3
  }

  .contact-inner {
    grid-template-columns:1fr
  }

  .footer-grid {
    grid-template-columns:1.4fr 1fr 1fr
  }

  .footer-grid>div:last-child {
    display:none
  }

}

@media(max-width:640px) {
  body {
    padding-bottom:58px
  }

  .container {
    width:calc(100% - 32px)
  }

  .section {
    padding:84px 0
  }

  .section-sm {
    padding:64px 0
  }

  .section-title {
    font-size:31px
  }

  .site-header {
    position:sticky
  }

  .hero-visual {
    min-height:72vw
  }

  .hero-copy {
    padding:44px 22px 58px
  }

  .hero-brand {
    margin-bottom:12px
  }

  .hero h1 {
    font-size:39px;
    line-height:1.42;
    margin-bottom:20px
  }

  .hero p {
    font-size:13px;
    line-height:1.9;
    margin-bottom:26px
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px
  }

  .btn {
    height:48px;
    padding:0 12px;
    font-size:12px;
    gap:10px
  }

  .slider-ui {
    left:18px;
    right:18px;
    bottom:16px
  }

  .slider-arrows {
    display:none
  }

  .dot {
    width:18px
  }

  .dot.active {
    width:30px
  }

  .intro-grid {
    gap:38px
  }

  .audience {
    grid-template-columns:1fr;
    border-bottom:0
  }

  .audience-item,.audience-item+.audience-item {
    padding:22px 0;
    border-left:0;
    border-bottom:1px solid var(--line);
    display:grid;
    grid-template-columns:48px 1fr;
    column-gap:12px
  }

  .audience .ico {
    grid-row:1/3;
    margin:0
  }

  .audience h3 {
    margin:0 0 3px
  }

  .services-head {
    display:block;
    margin-bottom:32px
  }

  .services-head .link-arrow {
    margin-top:18px
  }

  .service {
    grid-template-columns:52px 1fr;
    padding:30px 0
  }

  .service-num {
    font-size:30px
  }

  .service h3 {
    font-size:18px
  }

  .sports-band {
    margin-top:46px;
    box-shadow:none
  }

  .sports-photo {
    min-height:220px
  }

  .sports-copy {
    padding:32px 24px
  }

  .works-head {
    display:block
  }

  .works-head .link-arrow {
    margin-top:16px
  }

  .works-grid {
    display:flex;
    overflow-x:auto;
    gap:12px;
    scroll-snap-type:x mandatory;
    padding-bottom:8px
  }

  .work,.work:first-child {
    flex:0 0 82%;
    height:350px;
    scroll-snap-align:start
  }

  .why-wrap {
    display:block
  }

  .why-image {
    min-height:260px
  }

  .why-copy {
    padding:46px 24px
  }

  .company-inner {
    display:block;
    padding:44px 0
  }

  .company-inner>div {
    margin-bottom:24px
  }

  .phone {
    font-size:28px
  }

  .contact-inner {
    padding:68px 0
  }

  .contact .btn {
    min-width:0;
    width:100%
  }

  .footer {
    padding:52px 0 24px
  }

  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:34px
  }

  .footer-grid>div:first-child {
    grid-column:1/3
  }

  .mobile-contact-bar {
    display:grid;
    grid-template-columns:1fr 1fr;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:70;
    height:58px;
    box-shadow:0 -6px 25px rgba(0,0,0,.12)
  }

  .mobile-contact-bar a {
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700
  }

  .mobile-contact-bar a:first-child {
    background:white;
    color:var(--navy)
  }

  .mobile-contact-bar a:last-child {
    background:var(--navy);
    color:white
  }

  .reveal {
    transform:none;
    transition:opacity .55s ease
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }

  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }

  .reveal {
    opacity:1;
    transform:none
  }

}

/* ===== Header / Hero correction: based on the approved visual rough ===== */

.site-header {
  height:88px;
  position:sticky;
  top:0;
  background:rgba(251,250,246,.97);
  backdrop-filter:blur(12px);
  border-bottom:0;
  box-shadow:none
}

.site-header .header-inner {
  width:100%;
  max-width:none;
  margin:0;
  padding:0 0 0 clamp(34px,6.2vw,96px);
  gap:24px
}

.logo {
  display:flex;
  align-items:center;
  align-self:stretch;
  min-width:190px
}

.logo img {
  width:168px;
  max-height:58px;
  object-fit:contain
}

.nav {
  height:100%;
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:clamp(20px,2.2vw,38px);
  font-size:12px;
  font-weight:700;
  letter-spacing:.05em
}

.nav a {
  height:100%;
  display:flex;
  align-items:center;
  padding:0;
  white-space:nowrap
}

.nav a:not(.header-cta):after {
  bottom:21px;
  background:var(--moss);
  height:1px
}

.header-cta {
  height:88px!important;
  min-width:215px;
  margin:0;
  padding:0 28px!important;
  border-radius:0;
  background:#10243b;
  color:#fff;
  gap:10px;
  justify-content:center
}

.header-cta:hover {
  background:#17314e
}

.mail-mark {
  font-size:14px;
  line-height:1;
  opacity:.9
}

.hero {
  min-height:650px;
  display:block;
  position:relative;
  overflow:hidden;
  background:#fbfaf6
}

.hero:before {
  content:"";
  position:absolute;
  z-index:1;
  left:-130px;
  top:-175px;
  width:470px;
  height:420px;
  border-radius:46% 54% 66% 34% / 56% 48% 52% 44%;
  background:radial-gradient(circle at 70% 68%,rgba(155,181,86,.25),rgba(198,213,154,.12) 38%,rgba(251,250,246,0) 70%);
  transform:rotate(-12deg);
  pointer-events:none
}

.hero:after {
  content:"";
  position:absolute;
  z-index:3;
  left:0;
  right:0;
  bottom:-148px;
  height:220px;
  background:#fbfaf6;
  border-radius:50% 50% 0 0 / 38% 38% 0 0;
  pointer-events:none
}

.hero-copy {
  position:relative;
  z-index:8;
  width:48%;
  min-height:650px;
  padding:74px 4vw 78px clamp(58px,8vw,128px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start
}

.hero-copy:before {
  content:"";
  position:absolute;
  left:clamp(14px,3vw,46px);
  bottom:68px;
  width:110px;
  height:110px;
  border-left:1px solid rgba(177,159,86,.30);
  border-bottom:1px solid rgba(177,159,86,.30);
  border-radius:0 0 0 100%;
  transform:rotate(11deg);
  pointer-events:none
}

.hero h1 {
  margin:0 0 30px;
  font:500 clamp(46px,4.8vw,70px)/1.46 var(--serif);
  letter-spacing:.105em;
  color:#111d2a
}

.hero h1 span {
  display:block
}

.hero .hero-lead {
  max-width:none;
  margin:0 0 24px;
  color:#18242f;
  font:600 clamp(15px,1.18vw,18px)/1.85 var(--serif);
  letter-spacing:.055em
}

.hero .hero-detail {
  max-width: none;
  margin:0 0 34px;
  color:#46504d;
  font-size:13px;
  line-height:2.05;
  letter-spacing:.035em
}

.hero-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap
}

.hero .btn {
  height:48px;
  min-width:178px;
  padding:0 22px;
  border-radius:0;
  font-size:12px;
  letter-spacing:.04em
}

.hero .btn-primary {
  background:#10243b;
  border-color:#10243b
}

.hero .btn-primary:hover {
  background:#183552
}

.hero .btn-ghost {
  background:rgba(255,255,255,.88);
  border-color:#c8cbc7;
  color:#23313b
}

.hero .btn-ghost:hover {
  background:#fff
}

.hero-visual {
  position:absolute;
  z-index:2;
  top:0;
  right:0;
  bottom:0;
  width:61.5%;
  min-height:650px;
  border-radius:0;
  overflow:hidden;
  background:#ddd
}

.hero-visual:before {
  content:"";
  position:absolute;
  z-index:5;
  left:-150px;
  top:-44px;
  width:245px;
  height:790px;
  border-radius:50%;
  background:#fbfaf6;
  transform:rotate(4deg);
  pointer-events:none
}

.hero-visual:after {
  content:"";
  position:absolute;
  z-index:5;
  left:-16%;
  bottom:-126px;
  width:93%;
  height:220px;
  border-radius:50%;
  background:#fbfaf6;
  transform:rotate(-3deg);
  pointer-events:none
}

.slides,.slide {
  position:absolute;
  inset:0
}

.slide img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 48%;
  transform:scale(1.015);
  transition:transform 8s ease
}

.slide.active img {
  transform:scale(1.055)
}

.slide:after {
  background:linear-gradient(90deg,rgba(13,28,39,.07),rgba(13,28,39,0) 44%,rgba(13,28,39,.06))
}

.slider-ui {
  z-index:7;
  left:auto;
  right:30px;
  bottom:108px;
  display:block
}

.dots {
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:flex-end
}

.dot {
  width:15px;
  height:1px;
  background:rgba(255,255,255,.68)
}

.dot.active {
  width:34px;
  background:#fff
}

.slider-arrows {
  display:none
}

@media(max-width:980px) {
  .site-header {
    height:72px
  }

  .site-header .header-inner {
    padding:0 20px
  }

  .logo {
    min-width:0
  }

  .logo img {
    width:140px
  }

  .header-cta {
    height:auto!important;
    min-width:0
  }

  .nav {
    position:fixed;
    top:72px;
    height:auto;
    left:0;
    right:0;
    margin:0;
    padding:16px 22px 26px;
    display:block;
    background:#fbfaf6;
    transform:translateY(-130%);
    opacity:0
  }

  .nav.open {
    transform:none;
    opacity:1
  }

  .nav a {
    height:auto;
    padding:14px 0!important
  }

  .nav .header-cta {
    margin-top:12px;
    padding:14px 16px!important;
    display:flex
  }

  .menu-toggle {
    display:block
  }

  .hero {
    min-height:auto;
    padding-top:0;
    background:#fbfaf6
  }

  .hero:after {
    display:none
  }

  .hero-visual {
    position:relative;
    z-index:1;
    width:100%;
    height:54vw;
    min-height:370px;
    max-height:520px;
    order:0
  }

  .hero-visual:before,.hero-visual:after {
    display:none
  }

  .hero-copy {
    z-index:3;
    width:100%;
    min-height:0;
    padding:58px max(24px,7vw) 72px
  }

  .hero-copy:before {
    display:none
  }

  .hero h1 {
    font-size:clamp(42px,7vw,58px)
  }

  .slider-ui {
    bottom:22px;
    right:20px
  }

}

@media(max-width:640px) {
  .site-header {
    height:66px
  }

  .site-header .header-inner {
    padding:0 16px
  }

  .logo img {
    width:126px
  }

  .nav {
    top:66px
  }

  .hero {
    display:flex;
    flex-direction:column;
    background:#fbfaf6
  }

  .hero-visual {
    order:0;
    height:78vw;
    min-height:300px;
    max-height:420px
  }

  .hero-visual .slide:after {
    background:linear-gradient(180deg,rgba(10,24,38,.10),rgba(10,24,38,.44))
  }

  .hero-copy {
    order:1;
    padding:42px 22px 56px
  }

  .hero h1 {
    font-size:39px;
    line-height:1.5;
    margin-bottom:20px
  }

  .hero .hero-lead {
    font-size:15px;
    margin-bottom:16px
  }

  .hero .hero-detail {
    font-size:12px;
    line-height:1.9;
    margin-bottom:26px
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    gap:8px
  }

  .hero .btn {
    min-width:0;
    height:46px;
    padding:0 10px;
    font-size:11px
  }

  .slider-ui {
    right:14px;
    bottom:14px
  }

  .dots {
    flex-direction:row
  }

  .dot {
    width:17px
  }

  .dot.active {
    width:30px
  }

}

/* v3 intro/services/news tweaks */

.intro {
  background:#fbfbf8;
  padding-top:112px;
  padding-bottom:112px
}

.intro-grid {
  grid-template-columns:minmax(0,1.05fr) minmax(0,1.25fr);
  gap:56px;
  align-items:stretch
}

.intro-copy {
  padding-right:12px
}

.intro-copy .lead {
  font-size:16px;
  line-height:2.1;
  max-width: none
}

.audience {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:transparent
}

.audience-item {
  padding:34px 26px 34px;
  min-height:280px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start
}

.audience-item+.audience-item {
  border-left:1px solid var(--line);
  padding-left:26px
}

.audience-item .ico {
  width:46px;
  height:46px;
  margin-bottom:24px
}

.audience h3 {
  font:500 22px/1.65 var(--serif);
  margin:0 0 14px;
  letter-spacing:.06em
}

.audience p {
  font-size:14px;
  line-height:2.0;
  color:#5b6664
}

.audience-wrap-title {
  display:none
}

.services {
  background:#f6f6f1;
  padding-top:110px;
  padding-bottom:110px
}

.services-head {
  margin-bottom:44px
}

.services-note {
  max-width: none
}

.service-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  border-top:0
}

.service {
  display:flex;
  flex-direction:column;
  gap:0;
  padding:0;
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden
}

.service:nth-child(even) {
  padding-left:0;
  border-left:1px solid var(--line)
}

.service-media {
  aspect-ratio: 16 / 9;
  background:#ddd center/cover no-repeat
}

.service-body {
  display:grid;
  grid-template-columns:76px 1fr;
  gap:22px;
  padding:30px 28px 32px
}

.service-num {
  font-size:42px;
  color:#d1d5cb;
  padding-top:2px
}

.service h3 {
  margin:0 0 12px;
  font:500 21px/1.6 var(--serif)
}

.service p {
  margin:0 0 18px;
  font-size:14px;
  line-height:2;
  color:#5f6968
}

.service-1 .service-media {
  background-image:linear-gradient(rgba(18,38,58,.08),rgba(18,38,58,.08)),url(../img/service-01.jpg)
}

.service-2 .service-media {
  background-image:linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.1)),url(../img/service-02.jpg);
  background-position:center 38%
}

.service-3 .service-media {
  background-image:linear-gradient(rgba(18,38,58,.18),rgba(18,38,58,.18)),url(../img/service-03.jpg);
  filter:none
}

.service-4 .service-media {
  background-image:linear-gradient(rgba(18,38,58,.10),rgba(18,38,58,.10)),url(../img/service-04.jpg)
}

.sports-band {
  margin-top:28px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  min-height:260px;
  background:#fff;
  box-shadow:none;
  border:1px solid var(--line)
}

.news {
  padding:110px 0;
  background:#fbfbf8
}

.news-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:40px
}

.news-list {
  border-top:1px solid var(--line);
  background:#fff;
  border-bottom:1px solid var(--line)
}

.news-item {
  display:grid;
  grid-template-columns:140px 120px 1fr 20px;
  gap:24px;
  align-items:center;
  padding:24px 0;
  border-bottom:1px solid var(--line)
}

.news-item:last-child {
  border-bottom:0
}

.news-date {
  font-size:13px;
  color:#67706d;
  letter-spacing:.04em
}

.news-cat {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 14px;
  border-radius:999px;
  background:#eef2e1;
  color:var(--moss);
  font-size:12px;
  font-weight:700
}

.news-title {
  font-size:16px;
  line-height:1.8;
  color:var(--ink)
}

.news-arrow {
  font-size:20px;
  color:#8a928d
}

@media (max-width: 980px) {
  .intro {
    padding-top:90px;
    padding-bottom:90px
  }

  .intro-grid {
    grid-template-columns:1fr;
    gap:34px
  }

  .audience-wrap-title {
    display:block;
    text-align:center;
    font:500 28px/1.7 var(--serif);
    margin-bottom:24px
  }

  .audience {
    grid-template-columns:1fr;
    border-top:0;
    border-bottom:0;
    background:#fff;
    border:1px solid var(--line)
  }

  .audience-item {
    min-height:auto;
    padding:26px 24px
  }

  .audience-item+.audience-item {
    border-left:0;
    border-top:1px solid var(--line);
    padding-left:24px
  }

  .services-head,.news-head {
    display:block
  }

  .services-head .link-arrow,.news-head .link-arrow {
    margin-top:18px
  }

  .service-list {
    grid-template-columns:1fr
  }

  .service-body {
    grid-template-columns:60px 1fr;
    padding:24px 22px 26px
  }

  .sports-band {
    grid-template-columns:1fr
  }

  .news-item {
    grid-template-columns:1fr;
    gap:10px;
    padding:18px 0
  }

  .news-arrow {
    display:none
  }

}

a.news-item{color:inherit;text-decoration:none}
.footer-logo{filter:brightness(0) invert(1);opacity:.95}
.work > a{display:block;position:absolute;inset:0;color:inherit}
.phone a{color:inherit;text-decoration:none}

/* ===== v0.7.1: natural JP line breaks + audience columns ===== */
.phr {
  display: inline-block;
}
.section-title,
.audience h3,
.why-copy .section-title,
.hero h1 {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.intro-copy .section-title {
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.55;
  letter-spacing: 0.06em;
}
.intro-copy .lead {
  font-size: 15px;
  line-height: 2;
}

.audience-panel {
  min-width: 0;
}
.audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.audience-item {
  min-width: 0;
  min-height: 0;
  padding: 28px 18px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.audience-item + .audience-item {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.audience-item .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.audience h3 {
  font: 500 clamp(15px, 1.35vw, 18px) / 1.7 var(--serif);
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.audience h3 .phr {
  display: inline;
}
.audience h3 .phr + .phr::before {
  content: "";
  display: block;
}
.audience p {
  font-size: 13px;
  line-height: 1.9;
  color: #5b6664;
  margin: 0;
}

.why-copy {
  padding: clamp(40px, 5vw, 84px) clamp(24px, 4vw, 76px);
  min-width: 0;
}
.why-copy .section-title {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 14px 0 18px;
}
.why-copy .lead {
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 980px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .audience {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    background: #fff;
  }
  .audience-item,
  .audience-item + .audience-item {
    border-left: 0;
    padding: 24px 22px;
  }
  .audience-item + .audience-item {
    border-top: 1px solid var(--line);
  }
  .audience h3 {
    font-size: 20px;
  }
  .audience h3 .phr {
    display: inline;
  }
  .audience h3 .phr + .phr::before {
    content: none;
  }
  .why-wrap {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .audience {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: transparent;
  }
  .audience-item + .audience-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
  .audience h3 {
    font-size: clamp(14px, 2.2vw, 17px);
  }
  .audience h3 .phr {
    display: inline;
  }
  .audience h3 .phr + .phr::before {
    content: "";
    display: block;
  }
}

@media (max-width: 640px) {
  .intro-copy .section-title {
    font-size: 28px;
  }
  .audience {
    grid-template-columns: 1fr;
  }
  .audience-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
  }
  .audience-item .ico {
    margin: 2px 0 0;
    width: 36px;
    height: 36px;
  }
  .audience h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .audience h3 .phr + .phr::before {
    content: none;
  }
  .why-copy .section-title {
    font-size: 28px;
  }
}

/* ===== v0.8.0: hero wave divider + stock image polish ===== */
.hero-visual:before,
.hero-visual:after {
  display: none !important;
}
.hero:after {
  display: none !important;
}

.hero-wave {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}
.hero-wave__fill {
  fill: #fbfaf6;
}

.hero-wave--edge {
  top: -2%;
  left: -1px;
  width: clamp(88px, 14vw, 160px);
  height: 104%;
}
.hero-wave--bottom {
  left: -8%;
  right: -4%;
  bottom: -2px;
  width: 112%;
  height: clamp(110px, 18vw, 180px);
}

@media (max-width: 980px) {
  .hero-wave--edge {
    display: none;
  }
  .hero-wave--bottom {
    height: 72px;
    bottom: -1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave__fill {
    animation: none !important;
  }
}

/* ===== v0.8.1: layered translucent waves + moss lines ===== */
.hero-visual:before,
.hero-visual:after,
.hero:after {
  display: none !important;
}

.hero-wave {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}

.hero-wave__fill--a {
  fill: rgba(251, 250, 246, 0.78);
}
.hero-wave__fill--b {
  fill: rgba(251, 250, 246, 0.42);
}

.hero-wave__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-wave--edge .hero-wave__line[data-wave="edge-l1"] {
  stroke: rgba(168, 196, 92, 0.55);
  stroke-width: 1.2;
}
.hero-wave--edge .hero-wave__line[data-wave="edge-l2"] {
  stroke: rgba(140, 175, 70, 0.42);
  stroke-width: 0.9;
}
.hero-wave--edge .hero-wave__line[data-wave="edge-l3"] {
  stroke: rgba(190, 212, 120, 0.35);
  stroke-width: 0.7;
}
.hero-wave--bottom .hero-wave__line[data-wave="bottom-l1"] {
  stroke: rgba(168, 196, 92, 0.5);
  stroke-width: 1.4;
}
.hero-wave--bottom .hero-wave__line[data-wave="bottom-l2"] {
  stroke: rgba(140, 175, 70, 0.38);
  stroke-width: 1;
}
.hero-wave--bottom .hero-wave__line[data-wave="bottom-l3"] {
  stroke: rgba(190, 212, 120, 0.3);
  stroke-width: 0.8;
}

.hero-wave--edge {
  top: -3%;
  left: -2px;
  width: clamp(110px, 16vw, 190px);
  height: 106%;
}
.hero-wave--bottom {
  left: -10%;
  right: -6%;
  bottom: -2px;
  width: 116%;
  height: clamp(130px, 22vw, 210px);
}

@media (max-width: 980px) {
  .hero-wave--edge {
    display: none;
  }
  .hero-wave--bottom {
    height: 84px;
    bottom: -1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave__fill,
  .hero-wave__line {
    animation: none !important;
  }
}


/* ===== v1.8.0: washi header ===== */
.site-header {
  background-color: #f3efe6 !important;
  background-image:
    radial-gradient(ellipse 120% 80% at 12% 0%, rgba(255, 252, 245, 0.85), transparent 55%),
    radial-gradient(ellipse 90% 70% at 88% 100%, rgba(232, 224, 208, 0.55), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.74 0 0 0 0 0.66 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
  background-blend-mode: normal, normal, multiply;
  border-bottom: 1px solid rgba(70, 58, 40, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: none;
}

@media (max-width: 980px) {
  .nav {
    background-color: #f3efe6 !important;
    background-image:
      radial-gradient(ellipse 120% 80% at 12% 0%, rgba(255, 252, 245, 0.9), transparent 55%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.74 0 0 0 0 0.66 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
    background-blend-mode: normal, multiply;
  }
}


.hero-visual {
  width: 66% !important;
  left: auto;
  right: 0;
}

.hero-copy {
  width: 50% !important;
  z-index: 8;
}

/* Soft dissolve of photo into paper/copy side */
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #fbfaf6 0%,
      rgba(251, 250, 246, 0.97) 6%,
      rgba(251, 250, 246, 0.82) 14%,
      rgba(251, 250, 246, 0.55) 24%,
      rgba(251, 250, 246, 0.28) 34%,
      rgba(251, 250, 246, 0.1) 44%,
      rgba(251, 250, 246, 0) 56%,
      transparent 72%
    ),
    linear-gradient(90deg, transparent 70%, rgba(13, 28, 39, 0.05) 100%);
}

.hero-wave--edge {
  width: clamp(140px, 20vw, 240px) !important;
  left: -4px;
  z-index: 6;
}

.hero-wave__fill--a {
  fill: rgba(251, 250, 246, 0.55) !important;
}
.hero-wave__fill--b {
  fill: rgba(251, 250, 246, 0.28) !important;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 8px;
}
.footer-legal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: #e8eeef !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-legal__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 201, 147, 0.55);
  color: #fff !important;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 80;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #10243b;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(16, 36, 59, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-top:hover {
  background: #183552;
  color: #fff;
}
.back-top.is-on-dark {
  background: #f7f7f2;
  color: #10243b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}
.back-top.is-on-dark:hover {
  background: #fff;
  color: #10243b;
}

@media (max-width: 980px) {
  .hero-visual {
    width: 100% !important;
  }
  .hero-copy {
    width: 100% !important;
  }
  .slide:after {
    background: linear-gradient(
      180deg,
      transparent 45%,
      rgba(251, 250, 246, 0.35) 70%,
      #fbfaf6 100%
    );
  }
  .back-top {
    right: 14px;
    bottom: 72px;
  }
}

@media (max-width: 640px) {
  .footer-legal {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-legal__btn {
    width: 100%;
  }
}

/* ===== v0.9.0: taller wide hero + interactive scenes ===== */
@media (min-width: 1280px) {
  .hero,
  .hero-copy,
  .hero-visual {
    min-height: 760px !important;
  }
}
@media (min-width: 1600px) {
  .hero,
  .hero-copy,
  .hero-visual {
    min-height: 860px !important;
  }
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: inherit;
  padding: 74px 4vw 78px clamp(58px, 8vw, 128px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 28px, 0) scale(0.98);
  filter: blur(2px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease,
    visibility 0s linear 0.55s;
  will-change: transform, opacity, filter;
}
.hero-scene.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  transition-delay: 0s;
}
.hero-scene.is-enter-next {
  animation: heroCopyInNext 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-scene.is-enter-prev {
  animation: heroCopyInPrev 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-scene.is-leave-next {
  animation: heroCopyOutNext 0.7s cubic-bezier(0.4, 0, 1, 1) both;
}
.hero-scene.is-leave-prev {
  animation: heroCopyOutPrev 0.7s cubic-bezier(0.4, 0, 1, 1) both;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss, #748b3b);
}
.hero-scene.is-active .hero-kicker,
.hero-scene.is-active h1 span,
.hero-scene.is-active .hero-lead,
.hero-scene.is-active .hero-detail,
.hero-scene.is-active .hero-actions {
  animation: heroStaggerUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-scene.is-active h1 span:nth-child(1) { animation-delay: 0.06s; }
.hero-scene.is-active h1 span:nth-child(2) { animation-delay: 0.12s; }
.hero-scene.is-active .hero-lead { animation-delay: 0.18s; }
.hero-scene.is-active .hero-detail { animation-delay: 0.26s; }
.hero-scene.is-active .hero-actions { animation-delay: 0.34s; }

.hero .btn i {
  margin-right: 2px;
}

.slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.7s ease, visibility 0s linear 0.7s, transform 1.1s ease;
  z-index: 0;
}
.slide.is-active,
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
  z-index: 1;
}
.slide.is-enter-next {
  animation: heroSlideInNext 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.slide.is-enter-prev {
  animation: heroSlideInPrev 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.slide.is-leave-next {
  animation: heroSlideOutNext 0.85s cubic-bezier(0.4, 0, 1, 1) both;
}
.slide.is-leave-prev {
  animation: heroSlideOutPrev 0.85s cubic-bezier(0.4, 0, 1, 1) both;
}

.slide.is-active img,
.slide.active img {
  animation: heroKenBurns 7.2s ease-out both;
  transform-origin: center center;
}

@keyframes heroStaggerUp {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes heroCopyInNext {
  from { opacity: 0; transform: translate3d(36px, 18px, 0) rotate(0.4deg); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes heroCopyInPrev {
  from { opacity: 0; transform: translate3d(-36px, 18px, 0) rotate(-0.4deg); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes heroCopyOutNext {
  from { opacity: 1; transform: none; filter: none; }
  to { opacity: 0; transform: translate3d(-28px, -10px, 0); filter: blur(2px); }
}
@keyframes heroCopyOutPrev {
  from { opacity: 1; transform: none; filter: none; }
  to { opacity: 0; transform: translate3d(28px, -10px, 0); filter: blur(2px); }
}
@keyframes heroSlideInNext {
  from { opacity: 0; clip-path: inset(0 0 0 28%); transform: scale(1.08) translate3d(4%, 0, 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); }
}
@keyframes heroSlideInPrev {
  from { opacity: 0; clip-path: inset(0 28% 0 0); transform: scale(1.08) translate3d(-4%, 0, 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); }
}
@keyframes heroSlideOutNext {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.05) translate3d(-3%, 0, 0); }
}
@keyframes heroSlideOutPrev {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.05) translate3d(3%, 0, 0); }
}
@keyframes heroKenBurns {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 980px) {
  .hero-scene {
    position: relative;
    padding: 58px max(24px, 7vw) 72px;
    min-height: 0;
  }
  .hero-scene:not(.is-active) {
    display: none;
  }
  .hero-scene.is-active {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene,
  .slide,
  .slide.is-active img,
  .hero-scene.is-active .hero-kicker,
  .hero-scene.is-active h1 span,
  .hero-scene.is-active .hero-lead,
  .hero-scene.is-active .hero-detail,
  .hero-scene.is-active .hero-actions {
    animation: none !important;
    transition: opacity 0.2s ease !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ===== v0.9.1: news spacing + lighter type ===== */
.news {
  padding: 96px 0;
  background: #f7f7f3;
}
.news .section-title {
  margin: 10px 0 0;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1a2430;
}
.news-head {
  align-items: center;
  margin-bottom: 28px;
}
.news-head .link-arrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #3a4543;
}
.news-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
}
.news-item {
  grid-template-columns: 118px 96px minmax(0, 1fr) 28px;
  gap: 18px 20px;
  padding: 18px 28px;
  border-bottom: 1px solid #ecece6;
  transition: background 0.2s ease;
}
.news-item:hover {
  background: #fbfcfa;
}
.news-item:last-child {
  border-bottom: 0;
}
.news-date {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #8a928c;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.news-cat {
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f4e8;
  color: #6f8540;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  justify-self: start;
}
.news-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #243038;
}
.news-arrow {
  font-size: 15px;
  color: #a8b0aa;
  justify-self: end;
  transition: transform 0.2s ease, color 0.2s ease;
}
.news-item:hover .news-arrow {
  color: var(--moss);
  transform: translateX(3px);
}
.news-item:hover .news-title {
  color: #12263a;
}

@media (max-width: 980px) {
  .news-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date cat"
      "title title"
      "arrow arrow";
    gap: 8px 12px;
    padding: 16px 18px;
  }
  .news-date { grid-area: date; }
  .news-cat { grid-area: cat; justify-self: end; }
  .news-title { grid-area: title; font-size: 13.5px; }
  .news-arrow { display: none; }
}

/* ===== v0.9.2: sitewide lighter typography ===== */
:root {
  --ink: #1c262e;
  --muted: #6e7875;
  --font-weight-body: 400;
  --font-weight-medium: 500;
  --font-weight-strong: 600;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.9;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .section-title, .company-name, .phone,
.hero h1, .service h3, .audience h3, .sports-copy h3,
.reason b {
  font-weight: 500;
  color: #18232c;
}

.section-title,
.why-copy .section-title,
.intro-copy .section-title,
.news .section-title,
.services .section-title,
.works .section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #18232c;
}

.eyebrow,
.hero-kicker,
.hero-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #7a8f48;
}

.lead,
.hero .hero-detail,
.service p,
.audience p,
.reason p,
.sports-copy p,
.company-meta,
.contact p,
.footer p,
.footer li {
  font-family: var(--sans);
  font-weight: 400;
  color: #66716e;
  letter-spacing: 0.03em;
}

.lead {
  font-size: 14px;
  line-height: 2.05;
}

.nav {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.nav a,
.header-cta,
.link-arrow,
.btn,
.footer-legal__btn,
.mobile-contact-bar a {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.btn,
.hero .btn,
.link-arrow {
  font-size: 12px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #15202a;
}
.hero .hero-lead {
  font-family: var(--serif);
  font-weight: 500;
  color: #2a353c;
  letter-spacing: 0.05em;
}

.audience h3,
.service h3,
.sports-copy h3,
.reason b,
.work-caption strong {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.service-num,
.reason-no {
  font-weight: 400;
  color: #c5cac0;
}

.company-name,
.phone {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .eyebrow {
  color: #b8c993;
}

.footer h4 {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #f2f5f5;
}

.footer li,
.footer p,
.copyright {
  font-weight: 400;
  letter-spacing: 0.04em;
}

.news-title,
.news-date,
.news-cat {
  font-weight: 400;
}
.news-cat {
  font-weight: 500;
}
.news-title {
  font-weight: 500;
}

/* Soften Bootstrap bold defaults inside renewal */
.fw-bold,
.fw-bolder,
strong,
b {
  font-weight: 600;
}

/* ===== v0.9.3: slower sequential hero copy (no overlap) ===== */
.hero-copy {
  position: relative;
  isolation: isolate;
  min-height: inherit;
}

.hero-scene {
  position: absolute !important;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  filter: none;
  transition: none;
  will-change: opacity, transform;
}

.hero-scene.is-active,
.hero-scene.is-leave-next,
.hero-scene.is-leave-prev,
.hero-scene.is-enter-next,
.hero-scene.is-enter-prev {
  visibility: visible;
}

.hero-scene.is-active {
  z-index: 3;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: none;
}

.hero-scene.is-waiting {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(0, 12px, 0);
  animation: none !important;
}

.hero-scene.is-leave-next,
.hero-scene.is-leave-prev {
  z-index: 2;
  pointer-events: none;
  animation-duration: 0.6s !important;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation-fill-mode: both !important;
}

.hero-scene.is-enter-next,
.hero-scene.is-enter-prev {
  z-index: 4;
  pointer-events: none;
  animation-duration: 1.05s !important;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
  animation-fill-mode: both !important;
}

.hero-scene.is-leave-next {
  animation-name: heroCopyOutNextSoft !important;
}
.hero-scene.is-leave-prev {
  animation-name: heroCopyOutPrevSoft !important;
}
.hero-scene.is-enter-next {
  animation-name: heroCopyInNextSoft !important;
}
.hero-scene.is-enter-prev {
  animation-name: heroCopyInPrevSoft !important;
}

/* Disable busy stagger during leave; softer stagger on enter */
.hero-scene.is-leave-next .hero-kicker,
.hero-scene.is-leave-next h1 span,
.hero-scene.is-leave-next .hero-lead,
.hero-scene.is-leave-next .hero-detail,
.hero-scene.is-leave-next .hero-actions,
.hero-scene.is-leave-prev .hero-kicker,
.hero-scene.is-leave-prev h1 span,
.hero-scene.is-leave-prev .hero-lead,
.hero-scene.is-leave-prev .hero-detail,
.hero-scene.is-leave-prev .hero-actions {
  animation: none !important;
  opacity: 1;
}

.hero-scene.is-enter-next .hero-kicker,
.hero-scene.is-enter-next h1 span,
.hero-scene.is-enter-next .hero-lead,
.hero-scene.is-enter-next .hero-detail,
.hero-scene.is-enter-next .hero-actions,
.hero-scene.is-enter-prev .hero-kicker,
.hero-scene.is-enter-prev h1 span,
.hero-scene.is-enter-prev .hero-lead,
.hero-scene.is-enter-prev .hero-detail,
.hero-scene.is-enter-prev .hero-actions,
.hero-scene.is-active .hero-kicker,
.hero-scene.is-active h1 span,
.hero-scene.is-active .hero-lead,
.hero-scene.is-active .hero-detail,
.hero-scene.is-active .hero-actions {
  animation-name: heroStaggerUpSoft;
  animation-duration: 0.85s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}
.hero-scene.is-active .hero-kicker,
.hero-scene.is-enter-next .hero-kicker,
.hero-scene.is-enter-prev .hero-kicker { animation-delay: 0.12s; }
.hero-scene.is-active h1 span:nth-child(1),
.hero-scene.is-enter-next h1 span:nth-child(1),
.hero-scene.is-enter-prev h1 span:nth-child(1) { animation-delay: 0.22s; }
.hero-scene.is-active h1 span:nth-child(2),
.hero-scene.is-enter-next h1 span:nth-child(2),
.hero-scene.is-enter-prev h1 span:nth-child(2) { animation-delay: 0.32s; }
.hero-scene.is-active .hero-lead,
.hero-scene.is-enter-next .hero-lead,
.hero-scene.is-enter-prev .hero-lead { animation-delay: 0.42s; }
.hero-scene.is-active .hero-detail,
.hero-scene.is-enter-next .hero-detail,
.hero-scene.is-enter-prev .hero-detail { animation-delay: 0.52s; }
.hero-scene.is-active .hero-actions,
.hero-scene.is-enter-next .hero-actions,
.hero-scene.is-enter-prev .hero-actions { animation-delay: 0.64s; }

@keyframes heroCopyOutNextSoft {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(-18px, -8px, 0); }
}
@keyframes heroCopyOutPrevSoft {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(18px, -8px, 0); }
}
@keyframes heroCopyInNextSoft {
  from { opacity: 0; transform: translate3d(22px, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroCopyInPrevSoft {
  from { opacity: 0; transform: translate3d(-22px, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes heroStaggerUpSoft {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

/* Keep first scene height: use first scene as size reference via invisible static clone trick */
.hero-copy::before {
  content: "";
  display: block;
  padding-top: 0;
}

/* Ensure absolute scenes don't collapse hero-copy on desktop */
@media (min-width: 981px) {
  .hero-copy {
    display: flex;
    align-items: center;
  }
  .hero-scene.is-active {
    position: absolute !important;
  }
}

@media (max-width: 980px) {
  .hero-scene {
    position: relative !important;
    inset: auto;
  }
  .hero-scene.is-waiting,
  .hero-scene:not(.is-active):not(.is-leave-next):not(.is-leave-prev):not(.is-enter-next):not(.is-enter-prev) {
    display: none !important;
  }
  .hero-scene.is-active,
  .hero-scene.is-enter-next,
  .hero-scene.is-enter-prev,
  .hero-scene.is-leave-next,
  .hero-scene.is-leave-prev {
    display: flex !important;
    position: relative !important;
  }
}

/* ===== v0.9.4: contact section contrast fix ===== */
.contact,
.contact h1,
.contact h2,
.contact h3 {
  color: #fff;
}
.contact h2 {
  color: #ffffff !important;
}
.contact p {
  color: rgba(255, 255, 255, 0.74) !important;
}
.contact .eyebrow {
  color: #b8c993 !important;
}
.contact .btn {
  color: var(--navy, #12263a) !important;
}

/* ===== v0.9.5: larger header/footer gothic + 4-col full-bleed services ===== */

/* Header gothic: larger & clearer */
.site-header .nav {
  font-family: var(--sans);
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  gap: clamp(18px, 2vw, 32px);
}
.site-header .nav a:not(.header-cta) {
  font-size: 14px;
  font-weight: 500;
  color: #1a2430;
}
.site-header .header-cta {
  font-family: var(--sans);
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}
.site-header .logo img {
  width: 176px;
  max-height: 62px;
}

/* Footer gothic: larger & clearer */
.footer {
  font-family: var(--sans);
}
.footer h4 {
  font-family: var(--sans);
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  color: #ffffff !important;
  margin-bottom: 16px;
}
.footer p {
  font-size: 13px !important;
  line-height: 1.9;
  color: #c5d0d2 !important;
  font-weight: 400;
}
.footer li,
.footer li a {
  font-size: 13px !important;
  line-height: 1.7;
  color: #d5dee0 !important;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer li a:hover {
  color: #ffffff !important;
}
.footer-legal__btn {
  font-family: var(--sans);
  font-size: 12px !important;
  font-weight: 600 !important;
  min-height: 42px;
  padding: 0 18px;
}
.copyright {
  font-size: 11px !important;
  color: #8a989c !important;
}

/* Services: full-bleed 4 columns on PC */
.services .container {
  width: min(100% - 48px, 1400px);
}
.services .services-head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.services .service-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 clamp(16px, 2.2vw, 28px);
  border-top: 0;
  box-sizing: border-box;
}
.services .service {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.services .service:nth-child(even) {
  padding-left: 0 !important;
  border-left: 1px solid var(--line) !important;
}
.services .service-media {
  aspect-ratio: 4 / 3;
}
.services .service-body {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 22px 18px 24px;
}
.services .service-num {
  font-size: 28px;
  line-height: 1;
  color: #c9cec4;
  padding-top: 2px;
}
.services .service h3 {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.services .service p {
  font-size: 12.5px;
  line-height: 1.85;
  margin: 0 0 14px;
}
.services .sports-band {
  width: min(1400px, 100%);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .services .service-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .services .service-body {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 14px 20px;
  }
  .services .service h3 {
    font-size: 15px;
  }
}

@media (max-width: 980px) {
  .site-header .nav a:not(.header-cta) {
    font-size: 15px;
  }
  .services .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .services .service-list {
    grid-template-columns: 1fr !important;
  }
}

/* ===== v0.9.6: near full-width layout with comfortable side gutters ===== */
:root {
  --page-gutter: clamp(28px, 5vw, 72px);
  --page-max: 1560px;
}

.container,
.u-inner {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2))) !important;
  margin-left: auto;
  margin-right: auto;
}

/* Services: still 4-col, but not edge-to-edge */
.services .container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2))) !important;
}
.services .services-head {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.services .service-list {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.4vw, 22px) !important;
}
.services .sports-band {
  width: 100%;
  max-width: none;
}

/* Intro / works / why / news: breathe with wider canvas */
.intro .container,
.works .container,
.why .container,
.news .container,
.company-strip .container,
.contact .container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2))) !important;
}

.intro-grid {
  gap: clamp(36px, 4vw, 72px) !important;
}

.works-grid {
  gap: clamp(14px, 1.4vw, 22px) !important;
}

.why-wrap {
  min-height: 580px;
}

.news-item {
  padding-left: clamp(22px, 2.2vw, 36px) !important;
  padding-right: clamp(22px, 2.2vw, 36px) !important;
}

.company-inner {
  gap: clamp(28px, 3vw, 56px);
}

.footer .container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2))) !important;
}

/* Header stays full width; inner content aligns to same gutters */
.site-header .header-inner.container,
.site-header .header-inner {
  width: 100% !important;
  max-width: none !important;
  padding-left: var(--page-gutter) !important;
  padding-right: 0 !important;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .services .service-list {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: clamp(18px, 4.5vw, 28px);
  }
  .services .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .site-header .header-inner {
    padding-left: var(--page-gutter) !important;
    padding-right: var(--page-gutter) !important;
  }
}

@media (max-width: 640px) {
  .services .service-list {
    grid-template-columns: 1fr !important;
  }
}

/* ===== v0.9.7: works caption readability ===== */
.work-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(10, 20, 30, 0) 42%,
    rgba(10, 20, 30, 0.16) 78%,
    rgba(10, 20, 30, 0.36) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.work-caption {
  z-index: 3 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
  left: 20px !important;
  right: 20px !important;
  bottom: 18px !important;
}
.work-caption small {
  color: rgba(255, 255, 255, 0.88) !important;
  opacity: 1 !important;
  font-family: var(--sans);
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.work-caption strong {
  color: #ffffff !important;
  font-family: var(--serif);
  font-weight: 500 !important;
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.55 !important;
  letter-spacing: 0.04em;
}
.w5 {
  background-image: linear-gradient(0deg, rgba(11, 23, 31, 0.55), transparent 55%),
    linear-gradient(135deg, #d7d9d3, #fbfbf7 55%, #b8c49c);
}
.w5 + .work-caption,
.work .work-caption {
  color: #ffffff !important;
}

/* ===== v0.9.8: footer layout + customer support accent ===== */
.footer-brand__logo {
  display: inline-block;
  margin-bottom: 8px;
}
.footer-logo {
  width: 200px !important;
  max-width: 100%;
  height: auto !important;
  margin-bottom: 8px !important;
}
.footer-brand__lead {
  font-size: 14px !important;
  line-height: 1.95 !important;
  color: #d7e0e2 !important;
  letter-spacing: 0.04em;
  margin: 0;
}
.footer-brand__address {
  display: block;
  margin: 18px 0 0;
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(215, 224, 226, 0.88);
  letter-spacing: 0.03em;
}
.footer-brand__address a {
  color: #e8f0c8 !important;
  text-decoration: none !important;
}
.footer-brand__address a:hover {
  text-decoration: underline !important;
}
/* company-strip retired — info lives in footer */
.company-strip {
  display: none !important;
}

.footer-grid {
  align-items: start;
  gap: clamp(28px, 3vw, 48px) !important;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.footer-legal {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0 !important;
  padding: 0 !important;
}
.footer-legal a {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  color: #b7c3c6 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff !important;
  background: none !important;
  border-color: transparent !important;
}
.footer-legal__sep {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}
.footer .copyright {
  margin: 0;
  text-align: right;
  border: 0 !important;
  padding: 0 !important;
}

/* お客様サポート — distinct from normal nav items */
.site-header .nav a.nav-support {
  display: inline-flex;
  align-items: center;
  height: 36px;
  margin: 0 2px;
  padding: 0 14px !important;
  border: 1px solid rgba(116, 139, 59, 0.55);
  border-radius: 999px;
  background: rgba(238, 242, 225, 0.55);
  color: #4f6528 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}
.site-header .nav a.nav-support:after {
  display: none !important;
}
.site-header .nav a.nav-support:hover {
  background: #748b3b;
  border-color: #748b3b;
  color: #fff !important;
}

.footer a.nav-support {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(168, 182, 108, 0.55);
  border-radius: 999px;
  color: #d7e4a8 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.footer a.nav-support:hover {
  background: rgba(168, 182, 108, 0.18);
  color: #ffffff !important;
}

@media (max-width: 980px) {
  .site-header .nav a.nav-support {
    height: auto;
    margin-top: 10px;
    justify-content: center;
    border-radius: 2px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .copyright {
    text-align: left;
  }
  .footer-legal__sep {
    margin: 0 10px;
  }
}

/* ===== v1.8.4: CTA text wrap + natural footer ===== */
.contact-inner {
  grid-template-columns: 7fr 3fr !important;
  justify-content: stretch;
  align-items: center;
  gap: clamp(28px, 4vw, 56px) !important;
  padding: clamp(64px, 7vw, 92px) 0 !important;
}
.contact-copy {
  max-width: none;
  min-width: 0;
}
.contact-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.04em;
  margin: 0 0 14px !important;
  white-space: nowrap;
}
.contact-copy__text,
.contact-copy p {
  margin: 0 !important;
  max-width: none !important;
  font-size: 14.5px !important;
  line-height: 1.85 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: auto !important;
}
.contact-cta.btn {
  flex-shrink: 0;
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(140px, 0.7fr) minmax(260px, 1.15fr);
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}
.footer-brand__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand__lead {
  margin: 0;
  max-width: none;
  font-size: 13.5px !important;
  line-height: 1.9 !important;
  color: #d7e0e2 !important;
  letter-spacing: 0.04em;
  word-break: normal;
  overflow-wrap: normal;
  line-break: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
}
.footer-nav a {
  color: #e4eaec !important;
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.footer-nav a:hover {
  color: #fff !important;
}
.footer-info__name {
  margin: 0 0 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.04em;
}
.footer-info__addr {
  margin: 0 0 12px !important;
  font-size: 13px !important;
  line-height: 1.85 !important;
  color: rgba(215, 224, 226, 0.9) !important;
}
.footer-info__tel {
  margin: 0 0 22px !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: rgba(215, 224, 226, 0.9) !important;
}
.footer-info__tel a {
  color: #e8f0c8 !important;
  text-decoration: none !important;
}
.footer-info__tel a:hover {
  text-decoration: underline !important;
}
.footer-info__sep {
  margin: 0 0.4em;
  opacity: 0.55;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(168, 182, 108, 0.55);
  color: #d7e4a8 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  background: transparent;
}
.footer-action:hover {
  background: rgba(168, 182, 108, 0.16);
  color: #fff !important;
}
.footer-action--contact {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}
.footer-action--contact:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* neutralize older footer-grid assumptions */
.footer-grid {
  display: contents;
}

@media (max-width: 1100px) {
  .contact-copy h2 {
    white-space: normal;
  }
}
@media (max-width: 980px) {
  .contact-inner {
    grid-template-columns: 1fr !important;
  }
  .contact-cta.btn {
    justify-self: start;
  }
  .contact-copy__text,
  .contact-copy p {
    font-size: 13.5px !important;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand__lead {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .contact-copy h2 {
    white-space: normal;
    font-size: clamp(24px, 6.4vw, 30px) !important;
  }
  .contact-copy__text,
  .contact-copy p {
    font-size: 13.5px !important;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-action {
    width: 100%;
  }
}


.page-top .lead,
.page-top .services-note,
.page-top .why-copy .lead {
  max-width: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: auto !important;
}
.page-top .services-head > div {
  min-width: 0;
  flex: 1 1 auto;
}

@media (max-width: 1100px) {
  .contact-copy h2 {
    white-space: normal;
  }
}
@media (max-width: 980px) {
  .contact-inner {
    grid-template-columns: 1fr !important;
  }
  .contact-cta.btn {
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .contact-copy h2 {
    white-space: normal;
    font-size: clamp(24px, 6.4vw, 30px) !important;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-action {
    width: 100%;
  }
}

.footer-col h4 {
  margin-bottom: 14px !important;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer a.nav-support {
  margin-top: 2px;
}

/* Undo old rule that hid the last footer column on tablet */
@media (max-width: 980px) {
  .footer-grid > div:last-child {
    display: block !important;
  }
  .contact-inner {
    grid-template-columns: 1fr !important;
    justify-content: stretch;
    gap: 28px !important;
  }
  .contact-copy {
    max-width: none;
  }
  .contact-copy p {
    max-width: none;
  }
  .contact-cta.btn {
    width: auto;
    min-width: 240px;
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 28px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand__lead br {
    display: none;
  }
  .footer-brand__lead {
    max-width: none;
  }
  .footer-legal {
    row-gap: 8px;
  }
}

@media (max-width: 640px) {
  .contact-inner {
    padding: 56px 0 60px !important;
    gap: 24px !important;
  }
  .contact-copy h2 {
    font-size: clamp(24px, 6.8vw, 30px) !important;
    line-height: 1.5 !important;
  }
  .contact-copy p {
    font-size: 13.5px !important;
    line-height: 1.85 !important;
  }
  .contact-br {
    display: none;
  }
  .contact-cta.btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 20px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
  }
  .footer-brand__lead {
    font-size: 13px !important;
    line-height: 1.85 !important;
  }
  .footer-brand__address {
    font-size: 12px;
    line-height: 1.85;
    word-break: break-word;
  }
  .footer-col h4 {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .footer-col li,
  .footer-col li a {
    font-size: 12.5px !important;
    line-height: 1.65 !important;
  }
  .footer a.nav-support {
    display: inline !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    color: #d5dee0 !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
  }
  .footer-bottom {
    gap: 12px;
  }
  .footer-legal {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-legal__sep {
    display: none !important;
  }
  .footer-legal a {
    font-size: 12px !important;
    line-height: 1.5;
  }
  .mobile-contact-bar a {
    font-size: 13px !important;
    letter-spacing: 0.04em;
  }
}


/* ===== v1.8.2: top page spacing alignment ===== */
.page-top .section {
  padding: 96px 0;
}
.page-top .section-sm {
  padding: 72px 0;
}
.page-top .services-head,
.page-top .works-head,
.page-top .news-head {
  margin-bottom: 36px;
  align-items: end;
}
.page-top .section-title {
  margin: 12px 0 18px;
}
.page-top .lead {
  font-size: 14.5px;
  line-height: 1.95;
  max-width: none;
}
.page-top .news-item {
  padding: 20px 0;
  gap: 20px;
}
.page-top .news-cat {
  font-size: 11.5px;
  height: 28px;
  padding: 0 12px;
}
.page-top .intro-grid {
  gap: clamp(40px, 5vw, 72px) !important;
}
@media (max-width: 640px) {
  .page-top .section {
    padding: 72px 0;
  }
  .page-top .news-item {
    grid-template-columns: 86px 1fr auto !important;
    gap: 12px 14px;
    padding: 18px 0;
  }
  .page-top .news-cat {
    display: none;
  }
}

/* ===== v1.8.5: prose max-width reset (no mid-sentence wrap traps) ===== */
.lead,
.services-note,
.hero p,
.hero .hero-lead,
.hero .hero-detail,
.intro-copy .lead,
.why-copy .lead,
.contact-copy p,
.contact-copy__text,
.footer-brand__lead,
.page-top .lead,
.page-top .services-note,
.page-top .why-copy .lead {
  max-width: none !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-break: auto !important;
}

/* ===== v1.8.10: scroll-reveal header only ===== */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(-110%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  background-color: rgba(243, 239, 230, 0.92) !important;
  box-shadow: 0 8px 28px rgba(20, 30, 35, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header.is-shown,
.site-header.is-menu-open {
  transform: translateY(0);
  pointer-events: auto;
}
body.header-hidden .site-header .menu-toggle {
  visibility: hidden;
}
.menu-toggle--float {
  display: none;
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 210;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 32, 40, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  color: #fff;
}
.menu-toggle--float i,
.menu-toggle--float i:before,
.menu-toggle--float i:after {
  background: #fff;
}
@media (max-width: 980px) {
  .site-header:not(.is-shown):not(.is-menu-open) + .menu-toggle--float,
  body.header-hidden .menu-toggle--float {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .site-header.is-shown + .menu-toggle--float,
  .site-header.is-menu-open + .menu-toggle--float,
  body.header-shown .menu-toggle--float,
  body.nav-open .menu-toggle--float {
    display: none !important;
  }
  body.header-shown .site-header .nav,
  body.nav-open .site-header .nav {
    background-color: rgba(243, 239, 230, 0.96) !important;
  }
}
@media (min-width: 981px) {
  .menu-toggle--float {
    display: none !important;
  }
}

/* ===== v1.8.12: full-viewport hero (same atmosphere) ===== */
@media (min-width: 981px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100vh;
    height: 100dvh;
  }
  .hero-copy {
    min-height: 100% !important;
    height: 100% !important;
    padding-top: clamp(72px, 10vh, 110px) !important;
    padding-bottom: clamp(72px, 10vh, 110px) !important;
  }
  /* Stretch visual with top/bottom — avoid height:100% fighting absolute inset */
  .hero-visual {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .slides,
  .slide {
    inset: 0 !important;
  }
  /* Prefer lower framing so the bottom isn't cropped away at 100vh */
  .slide img {
    object-fit: cover !important;
    object-position: center 64% !important;
  }
  /* Keep bottom wave as a soft seam, not a thick crop */
  .hero-wave--bottom {
    height: clamp(56px, 7vw, 88px) !important;
    bottom: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-visual {
    order: 0;
    position: relative !important;
    width: 100% !important;
    min-height: 52vh !important;
    min-height: 52dvh !important;
    max-height: none !important;
    height: auto !important;
    flex: 0 0 auto;
  }
  .hero-visual .slides,
  .hero-visual .slide {
    position: absolute !important;
    inset: 0 !important;
  }
  .slide img {
    object-position: center 58% !important;
  }
  .hero-wave--bottom {
    height: 56px !important;
  }
  .hero-copy {
    order: 1;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    flex: 1 1 auto;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
}

/* ===== v1.8.14: fix hero image bottom crop ===== */
@media (min-width: 981px) {
  .hero-visual {
    top: 0 !important;
    bottom: 0 !important;
    height: auto !important;
    max-height: none !important;
  }
  .hero-visual .slides,
  .hero-visual .slide,
  .hero-visual .slide.is-active {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .hero-visual .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 72% !important;
    transform-origin: center 70% !important;
  }
  /* Thin translucent seam — don't opaque-crop the photo bottom */
  .hero-wave--bottom {
    height: clamp(48px, 5.5vw, 72px) !important;
    bottom: -1px !important;
  }
  .hero-wave--bottom .hero-wave__fill--a {
    fill: rgba(251, 250, 246, 0.72) !important;
  }
  .hero-wave--bottom .hero-wave__fill--b {
    fill: rgba(251, 250, 246, 0.4) !important;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    min-height: 56vh !important;
    min-height: 56dvh !important;
  }
  .hero-visual .slide img {
    object-position: center 68% !important;
    transform-origin: center 65% !important;
  }
  .hero-wave--bottom {
    height: 48px !important;
  }
}

/* ===== v1.8.15: mobile full-bleed photo + beige text frame ===== */
@media (max-width: 980px) {
  .hero {
    position: relative !important;
    display: block !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    background: #1a2228 !important;
  }

  /* Full-bleed photo */
  .hero-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    order: unset !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    flex: none !important;
    border-radius: 0 !important;
  }
  .hero-visual .slides,
  .hero-visual .slide,
  .hero-visual .slide.is-active {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .hero-visual .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 55% !important;
  }
  .hero-visual .slide:after {
    background: linear-gradient(
      180deg,
      rgba(16, 24, 32, 0.18) 0%,
      rgba(16, 24, 32, 0.08) 42%,
      rgba(16, 24, 32, 0.28) 100%
    ) !important;
  }

  /* Edge wave off — bottom wave only */
  .hero-wave--edge {
    display: none !important;
  }
  .hero-wave--bottom {
    display: block !important;
    z-index: 4 !important;
    height: clamp(52px, 14vw, 72px) !important;
    bottom: 0 !important;
    left: -6% !important;
    width: 112% !important;
  }
  .hero-wave--bottom .hero-wave__fill--a {
    fill: rgba(251, 250, 246, 0.92) !important;
  }
  .hero-wave--bottom .hero-wave__fill--b {
    fill: rgba(251, 250, 246, 0.55) !important;
  }

  .slider-ui {
    z-index: 5 !important;
    bottom: max(78px, calc(env(safe-area-inset-bottom) + 72px)) !important;
    right: 16px !important;
  }

  /* Overlay copy area */
  .hero-copy {
    position: absolute !important;
    inset: 0 !important;
    z-index: 6 !important;
    order: unset !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    /* slightly below vertical center */
    padding-top: 10vh !important;
    padding-bottom: 6vh !important;
    box-sizing: border-box !important;
    background: transparent !important;
    overflow: visible !important;
    pointer-events: none !important;
  }
  .hero-copy:before {
    display: none !important;
  }

  /* Beige translucent square frame */
  .hero-scene {
    position: absolute !important;
    inset: auto !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 20px 18px 18px !important;
    box-sizing: border-box !important;
    background: rgba(247, 243, 235, 0.78) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 2px;
    box-shadow: 0 14px 40px rgba(28, 26, 22, 0.14);
    pointer-events: none !important;
    filter: none !important;
  }
  .hero-scene.is-active,
  .hero-scene.is-enter-next,
  .hero-scene.is-enter-prev {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .hero-scene:not(.is-active):not(.is-enter-next):not(.is-enter-prev):not(.is-leave-next):not(.is-leave-prev) {
    display: none !important;
  }
  .hero-scene.is-leave-next,
  .hero-scene.is-leave-prev {
    position: absolute !important;
    left: 18px !important;
    right: 18px !important;
  }

  /* Mobile type scale */
  .hero-kicker {
    margin: 0 0 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    line-height: 1.4 !important;
  }
  .hero h1,
  .hero-scene h1 {
    margin: 0 0 12px !important;
    font-size: clamp(24px, 6.4vw, 30px) !important;
    line-height: 1.45 !important;
    letter-spacing: 0.06em !important;
  }
  .hero h1 span,
  .hero-scene h1 span {
    display: block !important;
  }
  .hero .hero-lead,
  .hero-scene .hero-lead {
    margin: 0 0 8px !important;
    max-width: none !important;
    font-size: 13px !important;
    line-height: 1.75 !important;
  }
  .hero .hero-detail,
  .hero-scene .hero-detail {
    margin: 0 0 16px !important;
    max-width: none !important;
    font-size: 11.5px !important;
    line-height: 1.7 !important;
    opacity: 0.88;
  }
  .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100%;
  }
  .hero-actions .btn,
  .hero .btn {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 11.5px !important;
    gap: 10px !important;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-top: 12vh !important;
  }
  .hero-scene.is-active,
  .hero-scene.is-enter-next,
  .hero-scene.is-enter-prev {
    max-width: none !important;
    padding: 18px 16px 16px !important;
  }
  .hero h1,
  .hero-scene h1 {
    font-size: clamp(22px, 6.8vw, 28px) !important;
  }
  .hero .hero-lead,
  .hero-scene .hero-lead {
    font-size: 12.5px !important;
  }
  .hero .hero-detail,
  .hero-scene .hero-detail {
    font-size: 11px !important;
  }
  .hero-actions .btn,
  .hero .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ===== v1.8.16: mobile overlay polish ===== */
@media (max-width: 980px) {
  /* Kill stacked layout leftovers */
  .hero {
    display: block !important;
  }
  .hero-visual {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
  }
  .hero-wave--edge {
    display: none !important;
    visibility: hidden !important;
  }
  .hero-wave--bottom {
    display: block !important;
    visibility: visible !important;
  }

  /* Frame sits a bit below center */
  .hero-copy {
    justify-content: center !important;
    padding-top: 14vh !important;
    padding-bottom: max(72px, 10vh) !important;
  }

  .hero-scene.is-active {
    background: rgba(247, 243, 235, 0.82) !important;
  }

  /* Simpler scene swap on mobile — keep frame stable */
  .hero-scene.is-enter-next,
  .hero-scene.is-enter-prev,
  .hero-scene.is-leave-next,
  .hero-scene.is-leave-prev {
    animation: none !important;
  }
  .hero-scene.is-leave-next,
  .hero-scene.is-leave-prev {
    display: none !important;
  }
}

/* ===== v1.8.18: hero white logo (header PNG) + mobile copy fade ===== */
.hero-logo-mark {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  left: max(20px, env(safe-area-inset-left));
  z-index: 190;
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}
.hero-logo-mark img {
  display: block;
  width: 148px;
  height: auto;
  /* header PNG → solid white */
  filter: brightness(0) invert(1);
}
body.header-shown .hero-logo-mark,
body.nav-open .hero-logo-mark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

@media (min-width: 981px) {
  .hero-logo-mark {
    top: max(24px, env(safe-area-inset-top));
    left: max(32px, env(safe-area-inset-left));
  }
  .hero-logo-mark img {
    width: 168px;
  }
}

@media (max-width: 980px) {
  .hero-logo-mark {
    top: max(16px, env(safe-area-inset-top));
    left: max(16px, env(safe-area-inset-left));
  }
  .hero-logo-mark img {
    width: 124px;
  }

  /* Image first, then slow fade-in for text frame */
  .hero-copy {
    opacity: 0;
    animation: heroCopyFadeIn 1.55s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
  }
}

@keyframes heroCopyFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-mark {
    transition: none;
  }
  @media (max-width: 980px) {
    .hero-copy {
      opacity: 1;
      animation: none;
      transform: none;
    }
  }
}

/* ===== v1.8.19: mobile hero h1 fit + fade clip fix ===== */
@media (max-width: 980px) {
  .hero-scene {
    overflow: visible !important;
  }
  .hero h1,
  .hero-scene h1 {
    font-size: clamp(22px, 5.8vw, 28px) !important;
    letter-spacing: 0.04em !important;
    line-height: 1.5 !important;
  }
  /* Parent fade only — avoid double stagger clipping last glyph */
  .hero-scene.is-active .hero-kicker,
  .hero-scene.is-active h1 span,
  .hero-scene.is-active .hero-lead,
  .hero-scene.is-active .hero-detail,
  .hero-scene.is-active .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .hero-scene h1 {
    font-size: clamp(20px, 6vw, 26px) !important;
    letter-spacing: 0.035em !important;
  }
}

/* ===== v1.9.2: mobile global layout + contact bar ===== */
@media (max-width: 980px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  img,
  video,
  iframe,
  svg {
    max-width: 100%;
  }

  .mobile-contact-bar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    height: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-contact-bar a {
    min-width: 0;
    width: 100%;
    padding: 0 8px;
    font-size: 11px !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }

  .back-top {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .footer .container {
    width: min(var(--page-max, 1560px), calc(100% - 36px)) !important;
  }

  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-action {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  /* Top page services — stop 100vw bleed on mobile */
  .services .service-list {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 640px) {
  .footer .container {
    width: min(var(--page-max, 1560px), calc(100% - 28px)) !important;
  }

  .mobile-contact-bar a {
    font-size: 10.5px !important;
    padding: 0 6px;
  }
}

/* ===== v1.9.3: site-wide mobile typography (top + shared) ===== */
@media (max-width: 980px) {
  .page-top .lead,
  .page-top .services-note,
  .page-top .why-copy .lead,
  .page-top .why-copy p,
  .page-top .intro-copy p,
  .page-top .audience p,
  .page-top .service p,
  .page-top .sports-copy p,
  .page-top .reason p,
  .page-top .contact-copy__text,
  .page-top .contact-copy p,
  .footer-brand__lead,
  .footer-info__addr,
  .footer-nav a,
  .service h3,
  .service p,
  .audience h3,
  .reason b,
  .reason p {
    word-break: normal !important;
    overflow-wrap: anywhere;
    line-break: auto;
    text-align: left;
  }

  .page-top .intro-copy,
  .page-top .why-copy,
  .page-top .service-body,
  .page-top .audience-item,
  .page-top .reason,
  .page-top .services-head > div,
  .page-top .works-head > div,
  .page-top .news-head > div {
    text-align: left;
  }

  .page-top img,
  .page-top .service-media,
  .page-top .work-media,
  .page-top .why-image,
  .page-top .sports-photo,
  .page-top .sports-band,
  .services .service,
  .services .sports-band {
    max-width: 100%;
    min-width: 0;
  }

  .service-body {
    min-width: 0;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .services .service h3 {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .services .service p {
    font-size: 12.5px !important;
    line-height: 1.8 !important;
  }

  .contact-copy,
  .contact-copy h2 {
    text-align: left !important;
  }

  .contact-cta.btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .services .service-body {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* ===== v1.9.7: %-based mobile gutters (site-wide) ===== */
@media (max-width: 980px) {
  :root {
    --site-pad-x: clamp(14px, 4.2vw, 22px);
    --page-gutter: var(--site-pad-x);
  }

  .container,
  .u-inner,
  .intro .container,
  .works .container,
  .why .container,
  .news .container,
  .company-strip .container,
  .contact .container,
  .footer .container,
  .services .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: var(--site-pad-x) !important;
    padding-right: var(--site-pad-x) !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .intro-grid,
  .intro-copy,
  .audience-panel,
  .audience {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .audience-wrap-title {
    text-align: left !important;
    font-size: clamp(22px, 5.8vw, 28px) !important;
    line-height: 1.55 !important;
  }

  .intro-copy {
    padding-right: 0 !important;
  }

  .audience-item,
  .audience-item + .audience-item {
    padding: clamp(18px, 4vw, 24px) clamp(14px, 3.5vw, 20px) !important;
  }
}

@media (max-width: 640px) {
  :root {
    --site-pad-x: clamp(12px, 3.8vw, 18px);
    --page-gutter: var(--site-pad-x);
  }

  .audience-wrap-title {
    font-size: clamp(20px, 5.4vw, 26px) !important;
  }
}

/* ===== v1.9.8: top-page colored panels — full width + inner padding ===== */
@media (max-width: 980px) {
  .why .why-wrap,
  .services .sports-band,
  .intro .audience,
  .news .news-list {
    margin-left: calc(-1 * var(--site-pad-x));
    margin-right: calc(-1 * var(--site-pad-x));
    width: calc(100% + (2 * var(--site-pad-x)));
    max-width: 100vw;
    box-sizing: border-box;
  }

  .why-copy {
    padding: clamp(40px, 8vw, 64px) var(--site-pad-x) !important;
  }

  .why-image {
    min-height: 220px;
  }

  .services .sports-band {
    margin-top: 24px;
  }

  .sports-copy {
    padding: clamp(28px, 6vw, 40px) var(--site-pad-x) !important;
  }

  .news .news-list {
    padding-left: var(--site-pad-x);
    padding-right: var(--site-pad-x);
  }

  .news-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ===== v2.0.1: top-page cards stay in container; restore inner padding ===== */
:root {
  --card-pad-y: clamp(22px, 3.5vw, 32px);
  --card-pad-x: clamp(20px, 3vw, 32px);
}

.services .service,
.services .sports-band,
.why .container.why-wrap,
.intro .audience,
.news .news-list {
  box-sizing: border-box;
}

.why .container.why-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.why-image {
  background-size: cover;
  background-position: center;
}

.why-copy {
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px) !important;
}

.services .service-body,
.sports-copy {
  padding: var(--card-pad-y) var(--card-pad-x) !important;
  box-sizing: border-box;
}

.services .sports-band {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 980px) {
  :root {
    --card-pad-y: clamp(18px, 4vw, 24px);
    --card-pad-x: clamp(14px, 3.5vw, 20px);
  }

  .why .why-wrap,
  .why .container.why-wrap,
  .services .sports-band,
  .intro .audience,
  .news .news-list {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  /* Card inset by width (not padding) so header image stays edge-flush */
  .why .container.why-wrap {
    width: calc(100% - (2 * var(--site-pad-x))) !important;
    max-width: calc(100% - (2 * var(--site-pad-x))) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .services .sports-band,
  .intro .audience,
  .news .news-list {
    width: 100% !important;
  }

  .why-image {
    min-height: clamp(200px, 52vw, 280px);
    width: 100%;
  }

  .why-copy {
    padding: var(--card-pad-y) var(--card-pad-x) !important;
  }

  .audience-item,
  .audience-item + .audience-item {
    padding: var(--card-pad-y) var(--card-pad-x) !important;
  }

  .services .service-list {
    gap: clamp(12px, 2.5vw, 16px) !important;
  }

  .services .service-body,
  .sports-copy {
    padding: var(--card-pad-y) var(--card-pad-x) !important;
  }

  .services .sports-band {
    margin-top: clamp(12px, 2.5vw, 16px) !important;
  }

  .sports-photo {
    min-height: clamp(180px, 48vw, 240px);
    width: 100%;
  }

  .news .news-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .news-item {
    padding-top: var(--card-pad-y) !important;
    padding-bottom: var(--card-pad-y) !important;
    padding-left: var(--card-pad-x) !important;
    padding-right: var(--card-pad-x) !important;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  :root {
    --card-pad-y: clamp(16px, 3.8vw, 22px);
    --card-pad-x: clamp(14px, 3.2vw, 18px);
  }
}

@media (min-width: 981px) {
  .why .container.why-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    align-items: stretch;
    min-height: clamp(480px, 42vw, 620px);
  }

  .why-image {
    min-height: 100%;
  }

  .news-item {
    padding-left: var(--card-pad-x) !important;
    padding-right: var(--card-pad-x) !important;
  }
}
