/* LEO BEACH one-page LP */
:root{
  --green:#0076b6;
  --green-dark:#004f80;
  --green-deep:#003a66;
  --blue:#005d89;
  --brand-blue:#0076b6;
  --brand-blue-dark:#004f80;
  --brand-blue-deep:#003a66;
  --brand-blue-soft:#eef8ff;
  --cta-green:#00735f;
  --cta-green-dark:#005342;
  --sky:#eaf8fb;
  --ink:#072f3b;
  --muted:#5e7278;
  --line:#d9e8e6;
  --gold:#e8b33f;
  --white:#fff;
  --shadow:0 22px 60px rgba(0,43,50,.14);
  --radius:22px;
  --serif:"Noto Serif JP", serif;
  --sans:"Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:#fff;
  line-height:1.75;
  letter-spacing:.02em;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1120px,calc(100% - 48px));margin-inline:auto}
.section{padding:96px 0}
.sp{display:none}

/* Header */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 38px;
  transition:.25s ease;
}
.site-header.is-scrolled{
  background:rgba(0,43,54,.82);
  backdrop-filter:blur(18px);
  padding:12px 38px;
  box-shadow:0 10px 32px rgba(0,0,0,.16);
}
.brand img{width:164px;height:auto}
.global-nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:#fff;
  font-size:14px;
  font-weight:700;
}
.global-nav a{
  position:relative;
  opacity:.96;
  text-shadow:0 1px 8px rgba(0,0,0,.2);
}
.global-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;bottom:-8px;
  width:0;height:2px;
  background:#fff;
  transition:.2s ease;
}
.global-nav a:hover::after{width:100%}
.nav-cta{
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#008c74,#006552);
  box-shadow:0 12px 32px rgba(0,84,66,.28);
}
.menu-button{display:none}

/* Hero */
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:url("../images/hero-villa.jpg");
  background-size:cover;
  background-position:center center;
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,41,70,.72) 0%,rgba(0,77,107,.48) 34%,rgba(0,40,50,.08) 63%,rgba(0,0,0,.04) 100%),
    linear-gradient(180deg,rgba(0,0,0,.22) 0%,rgba(0,0,0,.02) 35%,rgba(0,0,0,.2) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding-top:100px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--green);
  font-size:12px;
  letter-spacing:.18em;
  font-weight:900;
  text-transform:uppercase;
}
.hero-eyebrow{color:#b4fff0;text-shadow:0 2px 12px rgba(0,0,0,.25)}
.hero h1{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(46px,6.2vw,82px);
  line-height:1.27;
  font-weight:700;
  letter-spacing:.08em;
  text-shadow:0 8px 34px rgba(0,36,58,.36);
}
.hero-subcopy{
  margin:30px 0 0;
  font-size:clamp(16px,1.6vw,21px);
  font-weight:700;
  line-height:2;
  text-shadow:0 5px 22px rgba(0,0,0,.35);
}
.hero-actions{display:flex;gap:16px;margin-top:34px;flex-wrap:wrap}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.2s ease;
}
.button::after{content:"→";font-size:18px;line-height:1}
.button-primary{
  color:#fff;
  background:linear-gradient(135deg,#008a72,#00624f);
  box-shadow:0 18px 42px rgba(0,94,76,.28);
}
.button-primary:hover,.nav-cta:hover{transform:translateY(-2px);box-shadow:0 22px 48px rgba(0,94,76,.35)}
.button-ghost{
  color:#fff;
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.55);
  backdrop-filter:blur(10px);
}
.scroll-indicator{
  position:absolute;
  left:50%;
  bottom:30px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.82);
  font-size:10px;
  letter-spacing:.18em;
}
.scroll-indicator::after{
  content:"";
  display:block;
  width:1px;height:42px;
  margin:8px auto 0;
  background:linear-gradient(#fff,transparent);
}

/* Movie */
.movie-section{
  background:linear-gradient(180deg,#f5fbfb,#fff);
}
.movie-grid{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:48px;
  align-items:center;
}
.movie-copy h2,.section-heading h2,.split-copy h2,.profile-copy h2,.company h2,.contact-copy h2{
  margin:0;
  font-family:var(--serif);
  font-weight:700;
  letter-spacing:.06em;
  line-height:1.45;
}
.movie-copy h2{font-size:clamp(32px,3.4vw,54px)}
.movie-copy p:not(.eyebrow){color:var(--muted);font-weight:600;margin:22px 0}
.text-link{
  color:var(--green);
  font-weight:900;
  border-bottom:1px solid var(--green);
  padding-bottom:3px;
}
.movie-card{
  position:relative;
  display:block;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:360px;
}
.movie-card img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}
.movie-shade{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,35,45,.62),rgba(0,0,0,.12));
}
.play-button{
  position:absolute;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:92px;height:92px;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  box-shadow:0 12px 50px rgba(0,0,0,.28);
}
.play-button span{
  position:absolute;
  left:38px;top:29px;
  width:0;height:0;
  border-top:17px solid transparent;
  border-bottom:17px solid transparent;
  border-left:25px solid var(--green);
}
.movie-caption{
  position:absolute;
  left:28px;bottom:24px;
  color:#fff;
  font-size:12px;
  letter-spacing:.16em;
  font-weight:900;
  text-transform:uppercase;
}

.movie-embed{
  position:relative;
  width:min(100%,1040px);
  aspect-ratio:16/9;
  margin-inline:auto;
  overflow:hidden;
  border-radius:28px;
  background:#000;
  box-shadow:var(--shadow);
}
.movie-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.movie-embed.movie-card-large{
  min-height:0;
}

/* Section heading and services */
.section-heading{margin-bottom:44px}
.section-heading.center{text-align:center}
.section-heading h2{font-size:clamp(30px,3.2vw,48px)}
.section-heading p:not(.eyebrow){margin:16px auto 0;color:var(--muted);max-width:760px;font-weight:600}
.services{
  background:#fff;
}
.service-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(4,48,58,.08);
  display:flex;
  flex-direction:column;
}
.service-image{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
}
.service-image img{
  width:100%;height:100%;
  object-fit:cover;
  transition:.35s ease;
}
.service-card:hover .service-image img{transform:scale(1.04)}
.service-number{
  position:absolute;
  right:18px;bottom:14px;
  font-family:var(--serif);
  color:rgba(255,255,255,.76);
  font-size:54px;
  line-height:1;
  font-weight:700;
}
.service-body{
  position:relative;
  padding:48px 28px 30px;
  flex:1;
  display:flex;
  flex-direction:column;
  text-align:center;
}
.service-icon{
  position:absolute;
  left:50%;top:-36px;
  transform:translateX(-50%);
  width:72px;height:72px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#009275,#005d4b);
  box-shadow:0 10px 24px rgba(0,83,66,.22);
  font-size:30px;
}
.service-body h3{
  margin:0 0 14px;
  color:var(--green-dark);
  font-family:var(--serif);
  font-size:24px;
  letter-spacing:.08em;
}
.service-body p{
  margin:0;
  color:#40575d;
  font-size:14px;
  font-weight:600;
  line-height:1.9;
  flex:1;
}
.card-link{
  margin:22px auto 0;
  color:var(--green);
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.card-link::after{content:"→";}

/* Current */
.current{
  background:linear-gradient(90deg,#ebfbfb,#fff);
  border-block:1px solid var(--line);
}
.current-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.current h2{font-family:var(--serif);font-size:clamp(30px,3.2vw,48px);line-height:1.45;margin:0 0 22px}
.current p{color:#496166;font-weight:600}
.current-points{
  display:grid;
  gap:16px;
}
.current-points div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px 26px;
  box-shadow:0 16px 46px rgba(0,50,60,.07);
}
.current-points strong{display:block;color:var(--green);font-size:22px;font-family:var(--serif);margin-bottom:4px}
.current-points span{color:var(--muted);font-weight:700}

/* Split details */
.split{
  background:#fff;
}
.split.alt{
  background:linear-gradient(180deg,#f8fdfd,#fff);
}
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:62px;
  align-items:center;
}
.split-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.split-copy h2{font-size:clamp(34px,4vw,58px);margin-bottom:16px}
.lead{
  font-family:var(--serif);
  font-size:clamp(20px,2vw,28px);
  line-height:1.55;
  font-weight:700;
  margin:0 0 24px;
}
.split-copy p:not(.eyebrow):not(.lead){color:#40575d;font-weight:600}
.check-list{
  padding:0;
  margin:26px 0;
  list-style:none;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:30px;
  font-weight:700;
  color:#304a50;
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  color:var(--green);
  font-weight:900;
}
.price-box{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:24px 0;
}
.price-box div{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:16px;
}
.price-box span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  margin-bottom:4px;
}
.price-box strong{
  color:var(--green-dark);
  font-size:18px;
  font-weight:900;
}
.lecture-price{grid-template-columns:repeat(2,1fr)}

/* Profile */
.profile{
  background:linear-gradient(135deg,#004b48,#006a60 58%,#003b38);
  color:#fff;
}
.profile-card{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:50px;
  align-items:center;
}
.profile-photo img{
  border-radius:var(--radius);
  box-shadow:0 24px 64px rgba(0,0,0,.3);
  aspect-ratio:4/3;
  width:100%;
  object-fit:cover;
}
.profile .eyebrow{color:#99fff0}
.profile-copy h2{font-size:clamp(38px,4vw,62px)}
.role{
  color:#d8fffb;
  font-weight:800;
  margin:12px 0 24px;
}
.bio{
  display:grid;
  gap:14px;
}
.bio p{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:14px;
  line-height:2;
  font-weight:500;
}

/* Company */
.company{
  background:#f7fbfa;
}
.company-table{
  max-width:920px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,43,50,.08);
}
.company-table div{
  display:grid;
  grid-template-columns:240px 1fr;
  border-bottom:1px solid var(--line);
}
.company-table div:last-child{border-bottom:none}
.company-table dt{
  padding:20px 24px;
  color:var(--green);
  font-weight:900;
  background:#f3faf9;
}
.company-table dd{
  margin:0;
  padding:20px 24px;
  font-weight:700;
  color:#293f45;
}

/* Contact */
.contact{
  background:
    linear-gradient(rgba(255,255,255,.93),rgba(255,255,255,.97)),
    url("../images/hero-villa.jpg") center/cover;
}
.contact-grid{
  display:grid;
  grid-template-columns:.76fr 1.24fr;
  gap:44px;
  align-items:start;
}
.contact-copy h2{font-size:clamp(34px,4vw,58px)}
.contact-copy p{color:#4f666d;font-weight:700}
.contact-note{
  margin-top:26px;
  padding:24px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 16px 44px rgba(0,43,50,.07);
}
.contact-note strong{display:block;color:var(--green);font-size:18px}
.contact-note span{display:block;margin-top:6px;color:var(--muted);font-weight:700}
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}
.contact-form fieldset{
  margin:0 0 22px;
  padding:0;
  border:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.contact-form legend{
  grid-column:1/-1;
  font-weight:900;
  color:var(--green-dark);
  margin-bottom:8px;
}
.contact-form fieldset label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 10px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}
.contact-form input[type="radio"]{accent-color:var(--green)}
.form-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.contact-form label{
  display:grid;
  gap:8px;
  margin-bottom:18px;
  font-weight:900;
  color:#26454b;
}
.contact-form input:not([type="radio"]),.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  min-height:48px;
  padding:12px 14px;
  font:inherit;
  background:#fbfefe;
}
.contact-form textarea{resize:vertical}
.button-submit{
  border:0;
  width:100%;
  background:linear-gradient(135deg,#008d73,#005f4f);
  color:#fff;
  cursor:pointer;
  font-size:16px;
}

/* Footer */
.site-footer{
  position:relative;
  color:#fff;
  background:
    radial-gradient(circle at 10% 0%,rgba(10,160,130,.34),transparent 36%),
    linear-gradient(135deg,#004237,#00664f 62%,#003328);
  padding:56px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:54px;
  align-items:start;
}
.footer-brand img{width:178px}
.footer-brand p{color:rgba(255,255,255,.78);font-weight:700;margin:16px 0 0}
.footer-links{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px 28px;
  font-weight:700;
  font-size:14px;
}
.footer-links a{color:rgba(255,255,255,.88)}
.footer-links a:hover{color:#fff}
.copyright{
  margin:40px 0 0;
  text-align:center;
  color:rgba(255,255,255,.68);
  font-size:12px;
}
.page-top{
  position:absolute;
  right:28px;
  bottom:28px;
  width:44px;height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-weight:900;
}

/* Responsive */
@media (max-width: 980px){
  .site-header{padding:16px 22px}
  .site-header.is-scrolled{padding:10px 22px}
  .brand img{width:132px}
  .menu-button{
    display:grid;
    gap:5px;
    background:rgba(0,73,61,.78);
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    width:48px;height:48px;
    place-content:center;
  }
  .menu-button span{display:block;width:20px;height:2px;background:#fff}
  .global-nav{
    position:fixed;
    top:72px;
    right:22px;
    width:min(280px,calc(100% - 44px));
    padding:20px;
    border-radius:18px;
    background:rgba(0,54,47,.96);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
  }
  .global-nav.is-open{display:flex}
  .nav-cta{text-align:center}
  .hero{min-height:760px}
  .movie-grid,.current-grid,.split-grid,.profile-card,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .service-cards{grid-template-columns:1fr}
  .contact-form fieldset{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px){
  .container{width:min(100% - 28px,1120px)}
  .section{padding:68px 0}
  .sp{display:block}
  .hero{min-height:720px}
  .hero-bg{background-position:62% center}
  .hero h1{font-size:40px}
  .hero-subcopy{font-size:14px;line-height:1.85}
  .hero-actions{gap:10px}
  .button{min-height:50px;padding:0 20px}
  .movie-grid{gap:28px}
  .movie-card,.movie-card img{min-height:240px}
  .play-button{width:70px;height:70px}
  .play-button span{left:29px;top:22px;border-top-width:13px;border-bottom-width:13px;border-left-width:20px}
  .price-box,.lecture-price,.form-row,.company-table div{grid-template-columns:1fr}
  .contact-form fieldset{grid-template-columns:1fr}
  .footer-links{grid-template-columns:repeat(2,1fr)}
  .company-table dt,.company-table dd{padding:16px}
}

/* Final revision: fixed Japanese line breaks and unified detail cards */
.line{display:block}
.movie-copy-main{align-self:center}
.movie-main-title{
  font-size:clamp(34px,4.4vw,64px) !important;
  line-height:1.45 !important;
  letter-spacing:.045em !important;
}
.section-heading.center p br{display:block}
.detail-specs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:24px 0 26px;
}
.detail-specs div{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:16px;
  box-shadow:0 12px 32px rgba(0,43,50,.05);
}
.detail-specs span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  margin-bottom:5px;
}
.detail-specs strong{
  color:var(--green-dark);
  font-size:16px;
  font-weight:900;
  line-height:1.55;
}
.service-detail .split-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.service-detail .button{margin-top:4px}
@media (max-width: 980px){
  .movie-main-title{font-size:clamp(30px,6vw,48px) !important}
  .detail-specs{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .movie-main-title{font-size:28px !important;line-height:1.55 !important}
  .section-heading.center p{font-size:14px}
  .section-heading.center p br{display:block}
}


/* 2026-06 revision: company nav, green hero buttons, legal footer, large movie */
.movie-wide{max-width:1120px}
.movie-heading{margin-bottom:34px}
.movie-heading h2{font-size:clamp(30px,3.2vw,48px);line-height:1.55;letter-spacing:.05em}
.movie-card-large{width:min(100%,1040px);margin-inline:auto;min-height:560px;border-radius:28px}
.movie-card-large img{min-height:560px}
.hero .button-primary{background:linear-gradient(135deg,#008c74,#006552)}
.button-ghost{background:linear-gradient(135deg,#008c74,#006552);border-color:transparent;color:#fff;box-shadow:0 18px 42px rgba(0,94,76,.28)}
.footer-legal{display:flex;justify-content:center;gap:28px;flex-wrap:wrap;margin:34px 0 0;font-size:13px;font-weight:800;color:rgba(255,255,255,.9)}
.footer-legal a{border-bottom:1px solid rgba(255,255,255,.5);padding-bottom:3px}
.footer-legal a:hover{color:#fff;border-bottom-color:#fff}
.legal-hero{padding:150px 0 72px;background:linear-gradient(120deg,rgba(0,64,80,.9),rgba(0,97,83,.65)),url("../images/hero-villa.jpg") center/cover;color:#fff}
.legal-hero h1{font-family:var(--serif);font-size:clamp(36px,5vw,64px);line-height:1.35;margin:0}
.legal-hero p{font-weight:700;margin:18px 0 0;color:rgba(255,255,255,.88)}
.legal-page{background:#f7fbfa}
.legal-content{padding:72px 0 100px}
.legal-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:48px;max-width:980px;margin:0 auto}
.legal-card h2{font-family:var(--serif);font-size:28px;line-height:1.5;margin:44px 0 14px;color:var(--green-dark)}
.legal-card h2:first-child{margin-top:0}
.legal-card h3{font-size:18px;color:var(--ink);margin:28px 0 10px}
.legal-card p,.legal-card li{color:#334d54;font-weight:600;line-height:1.9}
.legal-card ul,.legal-card ol{padding-left:1.4em}
.legal-card .legal-meta{background:#f3faf9;border:1px solid var(--line);border-radius:16px;padding:22px;margin-top:28px}
.legal-card a{color:var(--green);font-weight:900;text-decoration:underline}
@media (max-width: 1120px){.global-nav{gap:18px;font-size:13px}.nav-cta{padding:10px 18px}.brand img{width:148px}}
@media (max-width: 980px){.movie-card-large,.movie-card-large img{min-height:360px}.footer-legal{justify-content:flex-start}.legal-card{padding:32px}}
@media (max-width: 640px){.movie-heading h2{font-size:28px;line-height:1.6}.movie-card-large,.movie-card-large img{min-height:250px}.legal-card{padding:24px;border-radius:18px}.footer-legal{gap:18px;font-size:12px}}


/* 2026-06 mobile polishing: movie title and unified 01/02/03 detail layout */
.movie-title-pc{display:inline;}
.movie-title-sp{display:none;}
.movie-heading h2.movie-title{
  max-width:980px;
  margin-inline:auto;
  font-size:clamp(30px,3.2vw,48px);
  line-height:1.55;
  letter-spacing:.045em;
  text-wrap:balance;
}
.detail.service-detail{background:#fff;}
.detail.service-detail.alt{background:linear-gradient(180deg,#f8fdfd,#fff);}
.detail-unified{display:grid;gap:32px;}
.detail-head{text-align:center;max-width:820px;margin-inline:auto;}
.detail-head h2{
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:clamp(34px,4vw,58px);
  line-height:1.35;
  letter-spacing:.06em;
}
.detail-head .lead{margin:0;color:var(--ink);}
.detail-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}
.detail-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.detail-info{display:flex;flex-direction:column;align-items:flex-start;}
.detail-info .button{margin-top:6px;}
@media (max-width: 980px){
  .detail-layout{grid-template-columns:1fr;gap:26px;}
  .detail-head{text-align:left;margin-inline:0;}
}
@media (max-width: 640px){
  .movie-title-pc{display:none;}
  .movie-title-sp{display:inline;}
  .movie-heading h2.movie-title{font-size:28px;line-height:1.72;letter-spacing:.03em;}
  .movie-section{padding-top:58px;}
  .detail-unified{gap:22px;}
  .detail-head h2{font-size:34px;}
  .detail-head .lead{font-size:20px;}
  .detail-layout{gap:22px;}
  .detail-info{align-items:stretch;}
  .detail-info .button{width:100%;}
}

/* 2026-06 final blue revision
   - Non-CTA green accents were changed to ocean blue.
   - CTA buttons/links remain green. */
.eyebrow:not(.hero-eyebrow),
.section-heading .eyebrow,
.detail-head .eyebrow,
.movie-heading .eyebrow,
.current-points strong,
.detail-specs strong,
.service-body h3,
.company-table dt,
.contact-note strong,
.contact-form legend,
.legal-card h2,
.legal-card a{
  color:var(--brand-blue-dark);
}
.section-heading.center h2::after,
.movie-heading h2::after{
  background:var(--brand-blue);
}
.service-icon{
  background:linear-gradient(135deg,#008bd3,#005b95);
  box-shadow:0 10px 24px rgba(0,91,149,.22);
}
.check-list li::before{
  color:var(--brand-blue);
}
.current{
  background:linear-gradient(90deg,#eef8ff,#fff);
}
.current-points div,
.detail-specs div,
.contact-note,
.contact-form,
.company-table,
.legal-card{
  box-shadow:0 18px 54px rgba(0,62,100,.08);
}
.company{
  background:#f5fbff;
}
.company-table dt{
  background:#eef8ff;
}
.profile{
  background:linear-gradient(135deg,#003a66,#006fae 58%,#002743);
}
.profile .eyebrow{
  color:#c6ecff;
}
.role{
  color:#d7f1ff;
}
.site-footer{
  background:
    radial-gradient(circle at 10% 0%,rgba(40,160,220,.34),transparent 36%),
    linear-gradient(135deg,#002a4a,#005f96 62%,#001d35);
}
.menu-button{
  background:rgba(0,76,128,.82);
}
.global-nav.is-open{
  background:rgba(0,54,96,.96);
}
.legal-hero{
  background:linear-gradient(120deg,rgba(0,50,92,.9),rgba(0,105,160,.65)),url("../images/hero-villa.jpg") center/cover;
}
.legal-page{
  background:#f5fbff;
}
.legal-card .legal-meta{
  background:#eef8ff;
}

/* CTA colors stay green */
.nav-cta,
.button-primary,
.hero .button-primary,
.button-ghost,
.button-submit{
  color:#fff;
  background:linear-gradient(135deg,var(--cta-green),var(--cta-green-dark)) !important;
  box-shadow:0 18px 42px rgba(0,94,76,.28);
}
.nav-cta:hover,
.button-primary:hover,
.button-ghost:hover,
.button-submit:hover{
  box-shadow:0 22px 48px rgba(0,94,76,.35);
}
.card-link,
.text-link{
  color:var(--cta-green) !important;
  border-bottom-color:var(--cta-green) !important;
}
.play-button span{
  border-left-color:var(--cta-green) !important;
}

/* Large ocean-logo block in company section */
.company-logo-ocean{
  max-width:960px;
  margin:0 auto 34px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(0,62,100,.16);
  border:1px solid rgba(255,255,255,.7);
}
.company-logo-ocean img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
@media (max-width: 640px){
  .company-logo-ocean{
    margin-bottom:24px;
    border-radius:18px;
  }
  .company-logo-ocean img{
    aspect-ratio:4/3;
  }
}

/* 2026-06 header height / anchor positioning revision
   - Header is now shorter on desktop and mobile.
   - Fixed-header anchor jumps leave enough space, so section titles are not hidden.
   - Header backgrounds are blue instead of green/teal. */
html{
  scroll-padding-top:88px;
}
section[id],
main [id]{
  scroll-margin-top:88px;
}
.site-header{
  padding:14px 32px;
  background:rgba(0,48,88,.08);
}
.site-header.is-scrolled{
  padding:7px 32px;
  background:rgba(0,48,88,.88) !important;
  backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(0,32,62,.18);
}
.brand img{
  width:126px;
  transition:width .22s ease;
}
.site-header.is-scrolled .brand img{
  width:112px;
}
.global-nav{
  gap:20px;
  font-size:13px;
}
.nav-cta{
  padding:10px 18px;
}
.menu-button{
  background:rgba(0,74,130,.86) !important;
  border-color:rgba(255,255,255,.32);
}
.global-nav.is-open{
  background:rgba(0,48,88,.96) !important;
}
@media (max-width:1120px){
  .global-nav{gap:15px;font-size:12px;}
  .nav-cta{padding:9px 16px;}
  .brand img{width:118px;}
  .site-header.is-scrolled .brand img{width:108px;}
}
@media (max-width:980px){
  html{scroll-padding-top:76px;}
  section[id],
  main [id]{scroll-margin-top:76px;}
  .site-header{
    padding:10px 18px;
    background:rgba(0,48,88,.88) !important;
  }
  .site-header.is-scrolled{
    padding:7px 18px;
    background:rgba(0,48,88,.9) !important;
  }
  .brand img{width:108px;}
  .site-header.is-scrolled .brand img{width:100px;}
  .menu-button{
    width:42px;
    height:42px;
  }
  .menu-button span{
    width:18px;
  }
  .global-nav{
    top:62px;
    right:16px;
    width:min(280px,calc(100% - 32px));
    background:rgba(0,48,88,.97) !important;
  }
}
@media (max-width:640px){
  html{scroll-padding-top:72px;}
  section[id],
  main [id]{scroll-margin-top:72px;}
  .site-header{
    padding:8px 14px;
  }
  .site-header.is-scrolled{
    padding:6px 14px;
  }
  .brand img{width:104px;}
  .site-header.is-scrolled .brand img{width:96px;}
  .global-nav{
    top:58px;
    right:14px;
    width:min(280px,calc(100% - 28px));
  }
}

/* 2026-06 anchor / compact blue header / profile title final fix */
:root{
  --fixed-header-offset:96px;
}

/* Native anchor fallback */
html{
  scroll-padding-top:var(--fixed-header-offset) !important;
}
section[id],
main [id]{
  scroll-margin-top:var(--fixed-header-offset) !important;
}

/* Compact fixed header */
.site-header{
  padding:8px 28px !important;
  background:rgba(0,64,112,.22) !important;
  min-height:auto !important;
}
.site-header.is-scrolled{
  padding:5px 28px !important;
  background:rgba(0,64,112,.90) !important;
  backdrop-filter:blur(18px);
  box-shadow:0 10px 28px rgba(0,32,62,.18);
}
.brand img{
  height:66px !important;
  width:auto !important;
  max-width:none !important;
}
.site-header.is-scrolled .brand img{
  height:56px !important;
  width:auto !important;
}
.global-nav{
  gap:18px !important;
  font-size:13px !important;
}
.nav-cta{
  padding:10px 18px !important;
}

/* Profile block title */
.profile-heading{
  margin-bottom:46px;
}
.profile-heading .eyebrow{
  color:#c7efff !important;
}
.profile-heading h2{
  color:#fff !important;
  font-family:var(--serif);
  font-size:clamp(34px,4vw,58px);
  line-height:1.35;
  letter-spacing:.06em;
  margin:0;
}
.profile-heading h2::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  background:#c7efff;
  margin:18px auto 0;
  border-radius:999px;
}

/* Keep opened mobile menu aligned to the shorter header */
.menu-button{
  background:rgba(0,82,142,.88) !important;
}
.global-nav.is-open{
  background:rgba(0,48,88,.97) !important;
}

@media (max-width:1120px){
  :root{--fixed-header-offset:88px;}
  .site-header{padding:7px 20px !important;}
  .site-header.is-scrolled{padding:5px 20px !important;}
  .brand img{height:60px !important;}
  .site-header.is-scrolled .brand img{height:52px !important;}
  .global-nav{gap:13px !important;font-size:12px !important;}
  .nav-cta{padding:9px 14px !important;}
}

@media (max-width:980px){
  :root{--fixed-header-offset:82px;}
  .site-header{
    padding:6px 14px !important;
    background:rgba(0,64,112,.92) !important;
  }
  .site-header.is-scrolled{
    padding:5px 14px !important;
    background:rgba(0,64,112,.94) !important;
  }
  .brand img{height:56px !important;}
  .site-header.is-scrolled .brand img{height:50px !important;}
  .menu-button{
    width:40px !important;
    height:40px !important;
  }
  .menu-button span{width:18px !important;}
  .global-nav{
    top:60px !important;
    right:14px !important;
    width:min(280px,calc(100% - 28px)) !important;
    background:rgba(0,48,88,.98) !important;
  }
}

@media (max-width:640px){
  :root{--fixed-header-offset:78px;}
  .site-header{
    padding:6px 12px !important;
  }
  .site-header.is-scrolled{
    padding:5px 12px !important;
  }
  .brand img{height:52px !important;}
  .site-header.is-scrolled .brand img{height:48px !important;}
  .global-nav{
    top:56px !important;
    right:12px !important;
    width:min(280px,calc(100% - 24px)) !important;
  }
  .profile-heading{
    margin-bottom:30px;
  }
  .profile-heading h2{
    font-size:34px;
  }
}

/* Final requested header/logo 2.0x size variant.
   Header and logo are enlarged from the compact base.
   Anchor offsets are increased so menu jumps do not hide section titles. */
:root{
  --fixed-header-offset:196px;
}

html{
  scroll-padding-top:var(--fixed-header-offset) !important;
}
section[id],
main [id]{
  scroll-margin-top:var(--fixed-header-offset) !important;
}

.site-header{
  padding:16px 36px !important;
  background:rgba(0,64,112,.22) !important;
  min-height:auto !important;
}
.site-header.is-scrolled{
  padding:10px 36px !important;
  background:rgba(0,64,112,.90) !important;
  backdrop-filter:blur(18px);
  box-shadow:0 10px 28px rgba(0,32,62,.18);
}
.brand img{
  height:132px !important;
  width:auto !important;
  max-width:none !important;
}
.site-header.is-scrolled .brand img{
  height:112px !important;
  width:auto !important;
  max-width:none !important;
}
.global-nav{
  gap:18px !important;
  font-size:13px !important;
}
.nav-cta{
  padding:11px 20px !important;
}

@media (max-width:1120px){
  :root{--fixed-header-offset:176px;}
  .site-header{
    padding:13px 24px !important;
  }
  .site-header.is-scrolled{
    padding:9px 24px !important;
  }
  .brand img{height:120px !important;}
  .site-header.is-scrolled .brand img{height:104px !important;}
  .global-nav{gap:11px !important;font-size:12px !important;}
  .nav-cta{padding:9px 14px !important;}
}

@media (max-width:980px){
  :root{--fixed-header-offset:162px;}
  .site-header{
    padding:11px 14px !important;
    background:rgba(0,64,112,.92) !important;
  }
  .site-header.is-scrolled{
    padding:7px 14px !important;
    background:rgba(0,64,112,.94) !important;
  }
  .brand img{height:112px !important;}
  .site-header.is-scrolled .brand img{height:100px !important;}
  .menu-button{
    width:50px !important;
    height:50px !important;
    background:rgba(0,82,142,.88) !important;
  }
  .menu-button span{width:21px !important;}
  .global-nav{
    top:136px !important;
    right:14px !important;
    width:min(280px,calc(100% - 28px)) !important;
    background:rgba(0,48,88,.98) !important;
  }
}

@media (max-width:640px){
  :root{--fixed-header-offset:148px;}
  .site-header{
    padding:9px 12px !important;
  }
  .site-header.is-scrolled{
    padding:6px 12px !important;
  }
  .brand img{height:104px !important;}
  .site-header.is-scrolled .brand img{height:94px !important;}
  .global-nav{
    top:126px !important;
    right:12px !important;
    width:min(280px,calc(100% - 24px)) !important;
  }
}

/* Final anchor positioning update:
   Menu clicks now target each section's heading via JS.
   This fallback keeps native hash jumps below the large 2.0x header. */
:root{
  --title-anchor-gap:24px;
}
html{
  scroll-padding-top:calc(var(--fixed-header-offset) + var(--title-anchor-gap)) !important;
}
section[id],
main [id]{
  scroll-margin-top:calc(var(--fixed-header-offset) + var(--title-anchor-gap)) !important;
}
@media (max-width:980px){
  :root{--title-anchor-gap:18px;}
}
@media (max-width:640px){
  :root{--title-anchor-gap:14px;}
}


/* Final hero image brightness fix:
   写真全体を暗くする黒系オーバーレイを弱め、海・空・プールの鮮やかさを残す。 */
.hero-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(0, 76, 130, .42) 0%,
      rgba(0, 120, 180, .22) 36%,
      rgba(0, 120, 180, .04) 65%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
}


/* Final hero readability fix:
   写真全体は明るく保ち、文字エリアの周りだけ暗いブルーのオーバーレイを戻す。 */
.hero-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(0, 76, 130, .20) 0%,
      rgba(0, 120, 180, .10) 38%,
      rgba(0, 120, 180, .02) 66%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
}

.hero-content{
  position:relative;
}

.hero-content::before{
  content:"";
  position:absolute;
  left:-42px;
  top:52%;
  transform:translateY(-46%);
  width:min(720px, calc(100% + 24px));
  height:560px;
  border-radius:44px;
  background:
    radial-gradient(
      ellipse at 36% 46%,
      rgba(0, 31, 56, .68) 0%,
      rgba(0, 45, 76, .56) 38%,
      rgba(0, 68, 105, .28) 62%,
      rgba(0, 0, 0, 0) 78%
    );
  pointer-events:none;
  z-index:0;
}

.hero-content > *{
  position:relative;
  z-index:1;
}

.hero h1,
.hero-subcopy,
.hero-eyebrow{
  text-shadow:
    0 3px 14px rgba(0, 20, 38, .64),
    0 10px 34px rgba(0, 20, 38, .42);
}

@media (max-width: 980px){
  .hero-content::before{
    left:-28px;
    width:min(680px, calc(100% + 32px));
    height:520px;
    border-radius:34px;
  }
}

@media (max-width: 640px){
  .hero-content::before{
    left:-18px;
    top:50%;
    width:calc(100% + 36px);
    height:500px;
    border-radius:28px;
    background:
      radial-gradient(
        ellipse at 34% 46%,
        rgba(0, 31, 56, .72) 0%,
        rgba(0, 45, 76, .58) 42%,
        rgba(0, 68, 105, .30) 66%,
        rgba(0, 0, 0, 0) 82%
      );
  }
}


/* Mobile-only hero brightness fix:
   PC版はそのまま。スマホ版だけ、写真全体と文字周りの暗いオーバーレイを弱めて、
   海・空・プールのブルーがきれいに見えるように調整。 */
@media (max-width: 768px){
  .hero-overlay{
    background:
      linear-gradient(
        90deg,
        rgba(0, 76, 130, .12) 0%,
        rgba(0, 120, 180, .06) 42%,
        rgba(0, 120, 180, .02) 68%,
        rgba(0, 0, 0, 0) 100%
      ) !important;
  }

  .hero-content::before{
    background:
      radial-gradient(
        ellipse at 34% 46%,
        rgba(0, 31, 56, .34) 0%,
        rgba(0, 45, 76, .24) 42%,
        rgba(0, 68, 105, .10) 66%,
        rgba(0, 0, 0, 0) 84%
      ) !important;
  }

  .hero h1,
  .hero-subcopy,
  .hero-eyebrow{
    text-shadow:
      0 3px 12px rgba(0, 18, 34, .72),
      0 8px 26px rgba(0, 18, 34, .52) !important;
  }
}

@media (max-width: 640px){
  .hero-content::before{
    left:-14px;
    top:49%;
    width:calc(100% + 28px);
    height:430px;
    border-radius:26px;
  }
}


/* =========================================================
   2026-07 Scroll motion enhancement
   Visual design/layout/content are unchanged; this block only
   controls entrance motion and motion accessibility.
   ========================================================= */

/* Hero entrance */
.motion-enabled .hero-motion-item{
  opacity:0;
  transform:translate3d(0,34px,0);
  filter:blur(5px);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform 1.05s cubic-bezier(.16,1,.3,1),
    filter .75s ease;
  transition-delay:var(--hero-delay,0ms);
  will-change:opacity,transform,filter;
}
.motion-enabled.is-page-ready .hero-motion-item{
  opacity:1;
  transform:translate3d(0,0,0);
  filter:blur(0);
}
.motion-enabled .hero-bg{
  will-change:transform;
  transition:transform 1.4s cubic-bezier(.16,1,.3,1),filter 1.4s ease;
  filter:saturate(.94) brightness(.96);
}
.motion-enabled.is-page-ready .hero-bg{
  filter:saturate(1) brightness(1);
}
.motion-enabled .site-header{
  opacity:0;
  transform:translate3d(0,-18px,0);
  transition:
    opacity .7s ease,
    transform .9s cubic-bezier(.16,1,.3,1),
    padding .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}
.motion-enabled.is-page-ready .site-header{
  opacity:1;
  transform:translate3d(0,0,0);
}

/* Scroll reveal base */
.motion-enabled .motion-reveal{
  opacity:0;
  transform:translate3d(0,48px,0) scale(.985);
  filter:blur(6px);
  transition:
    opacity .82s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.16,1,.3,1),
    filter .72s ease;
  transition-delay:var(--reveal-delay,0ms);
  will-change:opacity,transform,filter;
}
.motion-enabled .motion-reveal.motion-left{
  transform:translate3d(-52px,0,0) scale(.985);
}
.motion-enabled .motion-reveal.motion-right{
  transform:translate3d(52px,0,0) scale(.985);
}
.motion-enabled .motion-reveal.motion-card{
  transform:perspective(1100px) translate3d(0,58px,0) rotateX(4deg) scale(.97);
  transform-origin:50% 100%;
}
.motion-enabled .motion-reveal.motion-scale{
  transform:translate3d(0,28px,0) scale(.94);
}
.motion-enabled .motion-reveal.is-visible{
  opacity:1;
  transform:translate3d(0,0,0) scale(1);
  filter:blur(0);
}

/* Image mask reveal */
.motion-enabled .motion-image{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.motion-enabled .motion-image::after{
  content:"";
  position:absolute;
  z-index:5;
  inset:-2px;
  pointer-events:none;
  background:linear-gradient(120deg,var(--brand-blue-deep),var(--brand-blue) 62%,#59bde8);
  transform:scaleX(1);
  transform-origin:100% 50%;
  transition:transform 1.05s cubic-bezier(.77,0,.18,1);
  transition-delay:calc(var(--reveal-delay,0ms) + 80ms);
}
.motion-enabled .motion-image img,
.motion-enabled .motion-image iframe{
  transform:scale(1.055);
  transition:transform 1.35s cubic-bezier(.16,1,.3,1);
  transition-delay:var(--reveal-delay,0ms);
}
.motion-enabled .motion-image.is-visible::after{
  transform:scaleX(0);
}
.motion-enabled .motion-image.is-visible img,
.motion-enabled .motion-image.is-visible iframe{
  transform:scale(1);
}

/* Preserve existing service-card hover zoom after the entrance completes. */
.motion-enabled .service-card.motion-image img{
  transform:scale(1.055);
}
.motion-enabled .service-card.motion-image.is-visible img{
  transform:scale(1);
}
.motion-enabled .service-card.motion-image.is-visible:hover .service-image img{
  transform:scale(1.04);
}

/* Existing heading rules remain intact; only their underline motion changes. */
.motion-enabled .motion-title::after{
  transform:scaleX(0);
  transform-origin:0 50%;
  transition:transform .75s cubic-bezier(.16,1,.3,1);
  transition-delay:calc(var(--reveal-delay,0ms) + 280ms);
}
.motion-enabled .motion-title.is-visible::after{
  transform:scaleX(1);
}

/* Scroll cue motion */
.motion-enabled.is-page-ready .scroll-indicator{
  animation:leoScrollFloat 2.4s ease-in-out 1.25s infinite;
}
.motion-enabled.is-page-ready .scroll-indicator::after{
  animation:leoScrollLine 2.4s ease-in-out 1.25s infinite;
}
@keyframes leoScrollFloat{
  0%,100%{transform:translateX(-50%) translateY(0);opacity:.72;}
  50%{transform:translateX(-50%) translateY(7px);opacity:1;}
}
@keyframes leoScrollLine{
  0%,100%{transform:scaleY(.72);transform-origin:50% 0;opacity:.55;}
  50%{transform:scaleY(1);transform-origin:50% 0;opacity:1;}
}

/* Mobile motion is intentionally lighter and faster. */
@media (max-width:768px){
  .motion-enabled .motion-reveal{
    transform:translate3d(0,34px,0) scale(.99);
    filter:blur(3px);
    transition-duration:.7s,.82s,.6s;
  }
  .motion-enabled .motion-reveal.motion-left,
  .motion-enabled .motion-reveal.motion-right{
    transform:translate3d(0,34px,0) scale(.99);
  }
  .motion-enabled .motion-reveal.motion-card{
    transform:translate3d(0,40px,0) scale(.985);
  }
  .motion-enabled .motion-image img,
  .motion-enabled .motion-image iframe{
    transform:scale(1.035);
  }
  .motion-enabled .motion-image.is-visible img,
  .motion-enabled .motion-image.is-visible iframe{
    transform:scale(1);
  }
}

/* Accessibility: respect the user's reduced-motion preference. */
@media (prefers-reduced-motion:reduce){
  .motion-enabled .site-header,
  .motion-enabled .hero-motion-item,
  .motion-enabled .motion-reveal,
  .motion-enabled .motion-image img,
  .motion-enabled .motion-image iframe,
  .motion-enabled .motion-image::after,
  .motion-enabled .motion-title::after{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    transition:none !important;
    animation:none !important;
  }
  .motion-enabled .motion-image::after{display:none !important;}
  .motion-enabled.is-page-ready .scroll-indicator,
  .motion-enabled.is-page-ready .scroll-indicator::after{animation:none !important;}
}

/* Match the temporary reveal mask to the image's existing corner radius. */
.motion-enabled .detail-media.motion-image,
.motion-enabled .profile-photo.motion-image{
  border-radius:var(--radius);
}


/* Footer legal links: always visible and clickable (not dependent on scroll reveal). */
.site-footer .footer-legal,
.site-footer .copyright{
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
  filter:none !important;
  position:relative;
  z-index:2;
}
.site-footer .footer-legal a{
  pointer-events:auto;
}

/* 2026-07 contact form mail delivery / completion state */
.contact-form [hidden]{display:none !important}
.contact-form{position:relative}
.form-status{
  min-height:24px;
  margin:0 0 12px;
  border-radius:10px;
  font-size:14px;
  font-weight:800;
  line-height:1.6;
  white-space:pre-line;
}
.form-status:not(:empty){padding:10px 12px}
.form-status.is-error{
  color:#9f221b;
  background:#fff1f0;
  border:1px solid #ffd0cc;
}
.form-status.is-success{
  color:#00664f;
  background:#edfff8;
  border:1px solid #bdebdc;
}
.button-submit:disabled{
  cursor:not-allowed;
  opacity:.68;
  transform:none !important;
  box-shadow:none !important;
}
.contact-success{
  text-align:center;
  padding:10px 0 2px;
  outline:none;
}
.contact-success-icon{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  margin:0 auto 18px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--cta-green),var(--cta-green-dark));
  box-shadow:0 14px 34px rgba(0,94,76,.25);
  font-size:34px;
  font-weight:900;
}
.contact-success h3{
  margin:6px 0 10px;
  color:var(--brand-blue-dark);
  font-size:clamp(24px,3vw,34px);
  line-height:1.35;
}
.contact-success-lead{
  margin:0 auto;
  max-width:620px;
  color:#4f666d;
  font-weight:700;
  line-height:1.9;
}
.contact-success-summary{
  display:grid;
  gap:12px;
  margin:26px 0 22px;
  text-align:left;
}
.contact-success-summary > div{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#f7fcff;
}
.contact-success-summary strong{
  display:block;
  margin-bottom:6px;
  color:var(--brand-blue-dark);
  font-size:13px;
}
.contact-success-summary span{
  display:block;
  color:#26454b;
  font-weight:800;
  line-height:1.75;
  overflow-wrap:anywhere;
  white-space:pre-wrap;
}
.contact-reset-button{margin-top:4px}
@media (max-width:640px){
  .contact-success{padding-top:2px}
  .contact-success-summary > div{padding:14px}
}

/* 2026-07 desktop/mobile content parity fix
   Company information must never remain hidden by scroll-reveal timing. */
.company-table > div,
.company-table > div.motion-reveal,
.company-table > div.motion-reveal.is-visible{
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
  filter:none !important;
}
.company-table .company-business{
  display:block;
  white-space:normal;
  overflow-wrap:anywhere;
}
