:root{
  --navy-deep:   #0C1E33;
  --navy-darkest:#081420;
  --navy:        #12293F;
  --navy-light:  #23486B;
  --accent:        #E58A4B;
  --accent-soft-bg:#F8EDE3;
  --accent-hover:  #CF7438;
  --white:       #FFFFFF;
  --ink:         #142230;
  --grey-bg:     #F3F4F6;
  --grey-line:   rgba(20,34,48,0.12);
  --line-on-navy:rgba(255,255,255,0.16);
  --text-body:   #56636E;

  --font-jp: 'Zen Kaku Gothic New', 'Hiragino Sans', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;
  --font-eyebrow: 'Cormorant Garamond', serif;

  --header-h: 104px;
  --container-max: 1320px;
  --photo-shadow:
    0 4px 12px rgba(7,31,55,0.06),
    0 18px 40px rgba(7,31,55,0.10);
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  overflow-y:auto;
}
body{
  margin:0;
  overflow-x:hidden;
  overflow-y:visible;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}
a{ text-decoration:none; color:inherit; }
button{ font-family:inherit; cursor:pointer; }
img{ max-width:100%; display:block; }

p, li{ text-wrap: pretty; }

.media-frame{
  position:relative;
  width:100%; height:100%;
  overflow:hidden;
  background: linear-gradient(150deg, #1B3E5C, #0C1E33 70%);
}
.media-frame .media-img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.media-frame::after{
  content: attr(data-filename);
  position:absolute;
  left:18px; bottom:18px;
  font-family: var(--font-en);
  font-size:11px;
  letter-spacing:0.05em;
  color: rgba(255,255,255,0.75);
  background: rgba(12,30,51,0.55);
  padding:4px 11px;
  border-radius:999px;
  opacity:0;
  transition: opacity 0.2s ease;
  pointer-events:none;
  z-index:4;
}
.media-frame.is-placeholder::after,
.media-frame:not(.is-placeholder) .media-img:not([src]){ opacity:1; }
.media-frame.is-placeholder .media-img{ visibility:hidden; }
.media-frame.is-placeholder::after{ opacity:1; }

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:700;
  height: var(--header-h);
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  background: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,31,55,0.08);
  box-shadow: none;
}

.logo-panel{
  flex-shrink:0;
  width: 21vw;
  min-width:260px;
  max-width:400px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 58%, 80% 100%, 0 100%);
  display:flex;
  align-items:center;
  transition: clip-path 0.3s ease;
}
.site-header.scrolled .logo-panel{ clip-path:none; }
.logo-wordmark{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding: 0 0 10px 36px;
}
.logo-main{
  font-family: var(--font-jp);
  font-weight:700;
  font-size:19px;
  letter-spacing:0.02em;
  color: var(--navy-deep);
  white-space:nowrap;
}
.logo-sub{
  font-family: var(--font-en);
  font-weight:500;
  font-size:9.5px;
  letter-spacing:0.14em;
  color: var(--accent);
  white-space:nowrap;
}

.header-right-group{
  display:flex;
  align-items:center;
  gap: clamp(32px, 3vw, 40px);
  padding-left:30px;
  margin-right: clamp(24px, 3vw, 56px);
}
.main-nav{
  display:flex;
  align-items:center;
  gap: clamp(20px, 2.6vw, 42px);
}
.main-nav a{
  font-size:14.5px;
  font-weight:500;
  letter-spacing:0.03em;
  color: var(--white);
  position:relative;
  padding-bottom:4px;
  transition: color 0.3s ease;
}
.site-header.scrolled .main-nav a{ color: var(--navy-deep); }
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:0;
  height:1px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.main-nav a:hover::after{ right:0; }

.header-cta{
  flex-shrink:0;
  align-self:center;
  display:inline-flex;
  align-items:center;
  gap:9px;
  background: var(--accent);
  color: var(--white);
  font-size:14px;
  font-weight:700;
  letter-spacing:0.03em;
  padding: 13px 24px;
  border-radius: 3px 3px 3px 12px;
  border:none;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space:nowrap;
}
.header-cta-arrow{ color: var(--white); font-size:13px; transition: transform 0.25s ease; }
.header-cta:hover{ background: var(--accent-hover); transform: translateY(-2px); }
.header-cta:hover .header-cta-arrow{ transform: translateX(3px); color: var(--white); }

@media (min-width: 981px){
  .site-header{
    position:absolute;
    background:transparent;
    border-bottom:none;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .site-header.scrolled{
    background:transparent;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    border-bottom:none;
    box-shadow:none;
  }
  .site-header.scrolled .logo-panel{
    clip-path: polygon(0 0, 100% 0, 100% 58%, 80% 100%, 0 100%);
  }
  .site-header.scrolled .main-nav a{ color: var(--white); }

  .header-right-group{ margin-right: 252px; }

  .header-right-group .header-cta{
    position:fixed;
    top:38px;
    right:58px;
    z-index:1000;
    box-shadow: 0 6px 20px rgba(7,31,55,0.15);
  }
}

.menu-toggle{
  display:none;
  flex-shrink:0;
  align-self:center;
  margin-right:20px;
  width:44px; height:44px;
  background:transparent;
  border:none;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:6px;
}
.menu-toggle-bar{
  display:block;
  width:26px; height:2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease, background-color 0.3s ease;
}
.site-header.scrolled .menu-toggle-bar{ background: var(--navy-deep); }
.menu-toggle.is-open .menu-toggle-bar{ background: var(--navy-deep); }
.menu-toggle-bar:nth-child(2){ width:19px; }
.menu-toggle.is-open .menu-toggle-bar{ width:26px; }
.menu-toggle.is-open .menu-toggle-bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-bar:nth-child(2){ opacity:0; }
.menu-toggle.is-open .menu-toggle-bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.full-menu{
  position:fixed; inset:0; z-index:650;
  background: var(--white);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.full-menu.is-open{ opacity:1; visibility:visible; }
.full-menu-nav{
  display:flex; flex-direction:column; align-items:center;
  gap:30px;
}
.full-menu-nav a{
  font-size:20px;
  font-weight:700;
  color: var(--navy-deep);
  letter-spacing:0.02em;
}
.full-menu-cta{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--accent);
  color: var(--white);
  border:none;
  padding:14px 36px;
  border-radius: 3px 3px 3px 14px;
  font-size:16px !important;
  transition: background 0.25s ease;
}
.full-menu-cta .header-cta-arrow{ color: var(--white); font-size:15px; }
.full-menu-cta:hover{ background: var(--accent-hover); }

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background: var(--navy-deep);
}

.hero-slider{ position:absolute; inset:0; }
.hero-slider:focus-visible{ outline: 2px solid var(--accent); outline-offset:-2px; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity 1.6s ease;
  z-index:1;
}
.hero-slide.is-active{ opacity:1; z-index:2; }
.hero-photo{ width:100%; height:100%; }

.hero-overlay{
  position:absolute; inset:0;
  z-index:3;
  background:
    linear-gradient(0deg, rgba(9,20,34,0.72) 0%, rgba(9,20,34,0.28) 42%, rgba(9,20,34,0.4) 100%),
    rgba(11,26,44,0.32);
  pointer-events:none;
}

.hero-content{
  position:absolute;
  left: clamp(24px, 4.5vw, 80px);
  right: clamp(24px, 4.5vw, 80px);
  bottom: clamp(40px, 7vh, 90px);
  z-index:4;
  max-width: 1100px;
}
.hero-tagline{
  font-family: var(--font-en);
  font-size:16px;
  font-weight:500;
  letter-spacing:0.14em;
  line-height:1.6;
  color: var(--white);
  white-space:nowrap;
  margin:0 0 22px;
}
.hero-copy{
  margin:0;
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(80px, 6vw, 125px);
  line-height:1.0;
  color: var(--white);
  letter-spacing:0.01em;
}
.hero-copy-line{ display:block; }
.hero-sub{
  margin: 44px 0 0;
  font-size: clamp(13.5px, 1.3vw, 15.5px);
  line-height:1.9;
  color: rgba(255,255,255,0.86);
  font-weight:400;
}

.hero-controls{
  position:absolute;
  right: clamp(24px, 4.5vw, 64px);
  bottom: clamp(40px, 7vh, 64px);
  z-index:4;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:18px;
}
.hero-progress{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--font-en);
  color: var(--white);
}
.hero-slide-num{
  font-family: var(--font-en);
  font-size:16px;
  font-weight:600;
  color: var(--white);
  opacity:0.6;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.hero-slide-num.is-active{ color: var(--accent); opacity:1; }
.hero-progress-track{
  position:relative;
  width:76px; height:1px;
  background: rgba(255,255,255,0.3);
  overflow:hidden;
}
.hero-progress-fill{
  position:absolute; left:0; top:0;
  height:100%;
  width:0%;
  background: var(--accent);
}

.hero-arrows{ display:flex; gap:10px; }
.hero-arrow{
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.4);
  background:transparent;
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.hero-arrow svg{ width:18px; height:18px; }
.hero-arrow:hover{ background: rgba(229,138,75,0.1); border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.hero-scroll{
  position:absolute;
  left: clamp(24px, 4.5vw, 80px);
  bottom:26px;
  z-index:4;
  width:1px; height:44px;
  display:none;
}
.hero-scroll-line{
  display:block;
  width:1px; height:100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
}

.container{
  width:100%;
  max-width: var(--container-max);
  margin:0 auto;
  padding:0 40px;
}
.reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in{ opacity:1; transform:none; }

.eyebrow{
  display:flex;
  align-items:center;
  gap:20px;
  font-family: var(--font-eyebrow);
  font-size:16px;
  font-weight:600;
  font-style:normal;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color: var(--navy-deep);
  margin:0 0 18px;
}
.eyebrow-on-navy{ color: var(--white); }

.eyebrow-motif{
  position:relative;
  display:inline-block;
  width:19px;
  height:19px;
  flex-shrink:0;
}
.eyebrow-motif::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:14px; height:14px;
  box-sizing:border-box;
  border:1.5px solid var(--navy-deep);
}
.eyebrow-motif::after{
  content:"";
  position:absolute;
  bottom:0; right:0;
  width:14px; height:14px;
  background: var(--accent);
}
.eyebrow-on-navy .eyebrow-motif::before{ border-color: var(--white); }

.section-title{
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(26px, 3vw, 38px);
  line-height:1.5;
  letter-spacing:0.01em;
  color: var(--navy-deep);
  margin:0;
}
.section-title-on-navy{ color: var(--white); }
.section-lead{
  margin: 20px 0 0;
  max-width:none;
  width:100%;
  font-size:17px;
  line-height:1.9;
  letter-spacing:0.02em;
  white-space:nowrap;
  color: var(--text-body);
}
.lead-break{ display:none; }
.answer-break-mobile{ display:none; }
.section-head{ margin-bottom:68px; }

.philosophy{ background: var(--white); padding: 140px 0; }
.philosophy-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.philosophy-text{ max-width:900px; }
.philosophy-eyebrow{ justify-content:center; }
.philosophy-title{
  font-size: clamp(48px, 6.5vw, 88px);
  margin: 0 0 8px;
  white-space:nowrap;
}
.char-reveal .char{
  display:inline-block;
  opacity:0;
  transform: translateX(-28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.char-reveal.in .char{ opacity:1; transform:none; }
.char-reveal.in .char:nth-child(1){ transition-delay:0.00s; }
.char-reveal.in .char:nth-child(2){ transition-delay:0.06s; }
.char-reveal.in .char:nth-child(3){ transition-delay:0.12s; }
.char-reveal.in .char:nth-child(4){ transition-delay:0.18s; }
.char-reveal.in .char:nth-child(5){ transition-delay:0.24s; }
.char-reveal.in .char:nth-child(6){ transition-delay:0.30s; }
.char-reveal.in .char:nth-child(7){ transition-delay:0.36s; }
.char-reveal.in .char:nth-child(8){ transition-delay:0.42s; }
.char-reveal.in .char:nth-child(9){ transition-delay:0.48s; }
.philosophy-lead{
  margin: 30px 0 34px;
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height:1.7;
  color: var(--navy-deep);
}
.philosophy-body{ text-align:center; }
.philosophy-body p{
  margin:0 0 22px;
  font-size:17px;
  line-height:2;
  color: var(--text-body);
}
.philosophy-body p:last-child{ margin-bottom:0; }

.message{ background: var(--grey-bg); padding:128px 0; }
.message-inner{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas:
    "media eyebrow"
    "media title"
    "media textbody";
  column-gap: 80px;
  row-gap: 0;
  align-items:center;
}
.message-eyebrow{ grid-area: eyebrow; }
.message-title{ grid-area: title; }
.message-media{ grid-area: media; min-width:0; align-self:center; }
.message-textbody{ grid-area: textbody; min-width:0; }
.message-photo{ aspect-ratio: 4 / 5; border-radius:4px; box-shadow: var(--photo-shadow); }
.message-lead{
  margin: 26px 0 30px;
  font-family: var(--font-jp);
  font-weight:700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height:1.6;
  color: var(--navy-deep);
}
.message-body{ max-width:520px; }
.message-body p{
  margin:0 0 20px;
  font-size:16px;
  line-height:2;
  color: var(--text-body);
}
.message-body p:last-child{ margin-bottom:0; }
.message-signature{
  margin-top:40px;
  padding-top:24px;
  border-top:1px solid var(--navy-deep);
  max-width:520px;
  text-align:right;
}
.message-signature-company{
  margin:0 0 8px;
  font-family: var(--font-jp);
  font-weight:500;
  font-size:14px;
  color: var(--navy-light);
}
.message-signature-name{
  margin:0;
  font-family: var(--font-mincho);
  font-weight:600;
  font-size:22px;
  letter-spacing:0.06em;
  color: var(--navy-deep);
}

.business{ background: var(--grey-bg); padding:128px 0; }
.business-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items:start;
}
.business-item{ display:flex; flex-direction:column; min-width:0; }

.business-photo-wrap{ position:relative; }
.business-photo{
  width:100%;
  height:auto;
  aspect-ratio: 4 / 3;
  border-radius:4px;
  box-shadow: var(--photo-shadow);
}
.business-photo .media-img{ object-fit:cover; }
.business-photo::after{ display:none; }

.business-text{ margin-top:26px; display:flex; flex-direction:column; }
.business-name{
  margin: 0 0 12px;
  font-size:19px;
  font-weight:700;
  color: var(--navy-deep);
}
.business-desc{
  margin:0 0 16px;
  height:124px;
  font-size:16px;
  line-height:1.9;
  color: var(--text-body);
}
.business-tags{
  margin:0;
  padding-top:16px;
  border-top:1px solid var(--grey-line);
  font-size:14px;
  line-height:1.7;
  letter-spacing:0.02em;
  color: var(--navy-light);
}

.business-customers{
  margin-top:64px;
  padding-top:56px;
  border-top:1px solid var(--grey-line);
}
.business-customers-title{
  margin:0 0 14px;
  font-size:22px;
  font-weight:700;
  color: var(--navy-deep);
}
.business-customers-lead{
  margin:0 0 44px;
  max-width:640px;
  font-size:16px;
  line-height:1.9;
  color: var(--text-body);
}
@media (min-width: 1320px){
  .business-customers-lead{
    max-width:none;
    width:100%;
    white-space:nowrap;
    letter-spacing:0.02em;
  }
  .customers-lead-break{ display:none; }
}
.customers-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-top:1px solid var(--grey-line);
  border-left:1px solid var(--grey-line);
}
.customer-item{
  min-width:0;
  padding: 32px 36px;
  border-right:1px solid var(--grey-line);
  border-bottom:1px solid var(--grey-line);
}
.customer-name{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  font-size:17px;
  font-weight:700;
  line-height:1.5;
  color: var(--navy-deep);
}
.customer-mark{
  font-family: var(--font-en);
  font-size:13px;
  font-weight:700;
  color: var(--accent);
}
.customer-tags{
  margin:0;
  font-size:13.5px;
  line-height:1.9;
  color: var(--text-body);
}
.customers-note{
  margin: 44px 0 0;
  text-align:center;
  font-size:14.5px;
  line-height:1.9;
  color: var(--text-body);
}
.customers-disclaimer{
  display:block;
  margin-top:8px;
  font-size:12px;
  color: rgba(20,34,48,0.42);
}

.strengths{ background: var(--navy-deep); padding:128px 0; }
.strengths-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.strength-item{ min-width:0;
  padding: 0 44px;
  border-left:1px solid var(--line-on-navy);
}
.strength-item:first-child{ padding-left:0; border-left:none; }
.strength-item:last-child{ padding-right:0; }
.strength-num{
  display:block;
  margin-bottom:22px;
  font-family: var(--font-en);
  font-size:44px;
  font-weight:700;
  line-height:1;
  color: var(--accent);
}
.strength-name{
  margin:0 0 16px;
  font-size:18px;
  font-weight:700;
  color: var(--white);
}
.strength-desc{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color: rgba(255,255,255,0.72);
}

.support{ background: #FCF8F3; padding:140px 0; }

.support-head{ max-width:900px; }
.support-title{ margin-top:18px; line-height:1.6; }

.support-chat{
  display:grid;
  grid-template-columns: 45% 55%;
  column-gap: 72px;
  align-items:start;
  margin-top:66px;
}

.support-chat-left{ min-width:0; }
.support-bubble-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px 16px;
}

.support-bubble{
  position:relative;
  background: var(--white);
  border:1px solid rgba(120,105,90,0.22);
  border-radius:20px;
  padding: 20px 20px 20px 28px;
  max-width:320px;
  box-shadow:
    0 4px 12px rgba(7,31,55,0.05),
    0 12px 28px rgba(7,31,55,0.07);
}
.support-bubble p{
  margin:0;
  font-size:18px;
  font-weight:600;
  line-height:1.6;
  text-align:left;
  color: var(--navy-deep);
}
.support-bubble-quote{
  position:absolute;
  top:10px; left:12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size:24px;
  font-weight:700;
  line-height:1;
  color: var(--accent);
}
.support-bubble::after{
  content:"";
  position:absolute;
  width:14px; height:14px;
  background: var(--white);
  border-radius: 0 0 3px 0;
}
.support-bubble--tail-d::after{
  bottom:-7px; left:28px; top:auto; right:auto;
  border-right:1px solid rgba(120,105,90,0.22);
  border-bottom:1px solid rgba(120,105,90,0.22);
  transform: rotate(45deg);
}
.support-bubble--tail-r::after{
  top:50%; right:-7px; left:auto; bottom:auto;
  border-top:1px solid rgba(120,105,90,0.22);
  border-right:1px solid rgba(120,105,90,0.22);
  transform: translateY(-50%) rotate(45deg);
}

.sb-q1{ max-width:308px; }
.sb-q2{ max-width:272px; margin-top:34px; justify-self:end; }
.sb-q3{ max-width:296px; margin-top:-6px; }
.sb-q4{ max-width:266px; margin-top:16px; justify-self:end; }
.sb-q5{ max-width:300px; margin-top:-10px; }
.sb-q6{ max-width:312px; margin-top:20px; justify-self:end; }

.support-chat-right{ min-width:0; }
.support-photo-wrap{
  position:relative;
  margin-bottom:130px;
}
.support-photo{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius:14px;
  box-shadow: var(--photo-shadow);
}
.support-photo .media-img{ object-position: center 22%; }

.support-answer{
  position:absolute;
  left:20%;
  right:2%;
  bottom:-90px;
  z-index:2;
  background: var(--navy-deep);
  border-radius:20px;
  padding: 40px 48px;
  box-shadow: 0 10px 30px rgba(7,31,55,0.18);
}
.support-answer p{
  margin:0;
  font-size:23px;
  font-weight:500;
  line-height:1.8;
  color: var(--white);
}
.support-answer::after{
  content:"";
  position:absolute;
  top:-8px;
  left:36px;
  width:16px; height:16px;
  background: var(--navy-deep);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}

.company{ background: var(--grey-bg); padding:128px 0; }
.company-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items:start;
}
.company-table{ margin: 34px 0 26px; }
.company-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:20px;
  padding:16px 0;
  border-bottom:1px solid var(--grey-line);
}
.company-row:first-child{ border-top:1px solid var(--grey-line); }
.company-row dt{
  margin:0;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.04em;
  color: var(--navy-light);
}
.company-row dd{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color: var(--navy-deep);
}
.company-disclaimer{
  margin:0;
  font-size:12px;
  color: rgba(20,34,48,0.48);
}
.company-photo{ aspect-ratio: 4 / 5; border-radius:4px; box-shadow: var(--photo-shadow); }

.contact{
  position:relative;
  background: var(--navy-deep);
  padding:150px 0;
  overflow:hidden;
}
.contact-photo{
  position:absolute;
  inset:0;
  z-index:1;
}
.contact-photo::after{ display:none; }
.contact-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(180deg, rgba(8,16,28,0.86) 0%, rgba(8,16,28,0.78) 45%, rgba(8,16,28,0.9) 100%);
  pointer-events:none;
}
.contact-inner{ position:relative; z-index:3; max-width:720px; margin:0 auto; text-align:center; }
.contact-inner .eyebrow{ justify-content:center; }
.contact-body{
  margin: 26px 0 42px;
  font-size:17px;
  line-height:1.9;
  color: rgba(255,255,255,0.8);
}
.contact-cta{ display:inline-flex; }

.site-footer{ background: var(--navy-deep); padding-top:56px; }
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line-on-navy);
}
.footer-logo-main{ margin:0 0 6px; font-size:18px; font-weight:700; color: var(--white); }
.footer-logo-sub{ margin:0; font-family: var(--font-en); font-size:11px; letter-spacing:0.12em; color: var(--accent); }
.footer-nav-col{ display:flex; flex-direction:column; align-items:flex-end; gap:24px; }
.footer-nav{ display:flex; flex-wrap:wrap; justify-content:flex-end; gap: 30px; }
.footer-nav a{ font-size:13.5px; color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.footer-nav a:hover{ color: var(--accent); }
.footer-social{ display:flex; align-items:center; gap:14px; }
.footer-social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--line-on-navy);
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social-link svg{ width:16px; height:16px; }
.footer-social-link:hover{
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  padding: 20px 0 32px;
}
.footer-copyright{ margin:0; font-family: var(--font-en); font-size:12px; color: rgba(255,255,255,0.5); }
.footer-disclaimer{ margin:0; font-size:12px; color: rgba(255,255,255,0.4); }

.back-to-top{
  position:fixed;
  right:26px; bottom:26px;
  z-index:60;
  width:52px; height:52px;
  border-radius:50%;
  background: var(--navy);
  border:1px solid var(--line-on-navy);
  color: var(--accent);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, border-color 0.25s ease;
}
.back-to-top svg{ width:20px; height:20px; }
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
.back-to-top:hover{ border-color: var(--accent); }

@media (max-width: 980px){
  .header-right-group{ display:none; }
  .menu-toggle{ display:flex; }
  .logo-panel{ width:56vw; min-width:0; }
  .logo-main{ font-size:16px; }

  .container{ padding:0 28px; }

  .section-lead{
    max-width:none;
    width:auto;
    white-space:normal;
    word-break:normal;
    overflow-wrap:normal;
  }
  .lead-break{ display:inline; }

  .philosophy{ padding:88px 0; }
  .philosophy-title{ font-size: clamp(36px, 12vw, 52px); white-space:normal; }

  .message{ padding:88px 0; }
  .message-inner{
    grid-template-columns:1fr;
    grid-template-areas:
      "media"
      "eyebrow"
      "title"
      "textbody";
    row-gap:0;
    column-gap:0;
  }
  .message-media{ margin-bottom:40px; }
  .message-photo{ aspect-ratio:4/3; max-width:420px; margin:0 auto; }
  .message-body{ max-width:none; }
  .message-signature{ max-width:none; }

  .business{ padding:88px 0; }
  .business-grid{ grid-template-columns:1fr; gap:64px; max-width:420px; margin:0 auto; }
  .business-desc{ height:auto; }

  .business-customers{ margin-top:56px; padding-top:44px; }
  .customers-grid{ grid-template-columns: repeat(2, 1fr); }
  .customer-item{ padding:32px 24px; }

  .strengths{ padding:88px 0; }
  .strengths-grid{ grid-template-columns:1fr; gap:44px; }
  .strength-item{
    padding:36px 0 0;
    border-left:none;
    border-top:1px solid var(--line-on-navy);
  }
  .strength-item:first-child{ padding-top:0; border-top:none; }

  .support{ padding:88px 0; }
  .support-chat{ grid-template-columns:1fr; row-gap:44px; column-gap:0; margin-top:48px; }

  .support-bubble-grid{ grid-template-columns:1fr; gap:18px; }
  .sb-q1, .sb-q2, .sb-q3, .sb-q4, .sb-q5, .sb-q6{
    max-width:none;
    width:100%;
    margin-top:0;
    justify-self:stretch;
  }

  .support-photo-wrap{ margin-bottom:64px; }
  .support-answer{
    left:8%;
    right:8%;
    bottom:-48px;
    padding:32px 30px;
  }
  .support-answer p{ font-size:20px; }

  .company{ padding:88px 0; }
  .company-inner{ grid-template-columns:1fr; gap:40px; }
  .company-photo{ aspect-ratio:16/10; }

  .contact{ padding:100px 0; }

  .section-head{ margin-bottom:44px; }
}

@media (max-width: 640px){
  :root{ --header-h:84px; }
  .logo-panel{ width:64vw; clip-path: polygon(0 0, 100% 0, 100% 62%, 84% 100%, 0 100%); }
  .logo-wordmark{ padding: 0 0 8px 20px; gap:3px; }
  .logo-main{ font-size:14px; }
  .logo-sub{ font-size:8px; letter-spacing:0.1em; }
  .menu-toggle{ margin-right:14px; }

  .support-photo{ border-radius:10px; }
  .support-bubble-grid{ gap:16px; }
  .support-bubble{ padding:18px 20px 18px 28px; max-width:none; width:100%; }
  .support-bubble p{ font-size:16px; }
  .support-photo-wrap{ margin-bottom:140px; }
  .support-answer{
    left:5%;
    right:5%;
    bottom:-102px;
    padding:24px 22px;
  }
  .support-answer p{ font-size:16.5px; }
  .answer-break-mobile{ display:inline; }

  .message-inner{
    grid-template-areas:
      "eyebrow"
      "title"
      "media"
      "textbody";
  }
  .message-title{ margin-bottom:34px; }
  .message-media{ margin-top:0; margin-bottom:8px; }

  .hero{ min-height:100vh; }
  .hero-content{ left:20px; right:20px; max-width:none; bottom:132px; }
  .hero-tagline{ line-height:1.6; white-space:normal; margin-bottom:14px; }
  .hero-copy{ font-size: clamp(28px, 8.5vw, 56px); line-height:1.15; }
  .hero-sub br{ display:none; }
  .hero-sub{ line-height:1.75; }

  .hero-controls{
    left:20px; right:20px;
    bottom:34px;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
  .hero-progress-track{ width:44px; }

  .menu-toggle{
    width:50px; height:50px;
    align-items:center;
    justify-content:center;
    background: rgba(7,31,55,0.9);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius:50%;
    margin-right:10px;
  }
  .menu-toggle-bar,
  .site-header.scrolled .menu-toggle-bar,
  .menu-toggle.is-open .menu-toggle-bar{
    background: var(--white);
  }

  .hero-progress{
    background: rgba(7,31,55,0.6);
    padding: 9px 16px;
    border-radius: 999px;
  }
  .hero-slide-num{ opacity:1; color: var(--white); }
  .hero-slide-num.is-active{ color: var(--accent); }

  .hero-arrow{
    width:44px; height:44px;
    background: rgba(7,31,55,0.8);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
  }

  .container{ padding:0 30px; }

  .section-title{ font-size: clamp(24px, 7vw, 30px); }
  .support-head .section-title{ font-size: clamp(20px, 6vw, 26px); }
  .message-lead{ font-size: clamp(19px, 5.5vw, 24px); }
  .philosophy-lead{ font-size: clamp(19px, 5.5vw, 23px); }

  .customers-grid{ grid-template-columns:1fr; }
  .customer-item{ padding:28px 20px; }
  .customer-name{ font-size:16.5px; }

  .strengths-grid{ gap:36px; }
  .strength-num{ font-size:38px; }

  .company-row{ grid-template-columns: 108px 1fr; gap:14px; }

  .footer-inner{ flex-direction:column; gap:28px; padding-bottom:32px; }
  .footer-nav-col{ align-items:flex-start; gap:20px; }
  .footer-nav{ justify-content:flex-start; gap:16px 24px; }
  .footer-bottom{ flex-direction:column; gap:8px; padding:18px 0 28px; }
  .back-to-top{ right:18px; bottom:18px; width:46px; height:46px; }
}
