
:root {
  --bg: #f5f8f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --ink: #17251f;
  --muted: #65736c;
  --line: rgba(26, 64, 46, 0.13);
  --primary: #0a5f44;
  --primary-2: #16845f;
  --primary-deep: #063e2e;
  --gold: #c69b55;
  --gold-soft: #fff3d8;
  --navy: #102b3c;
  --shadow: 0 28px 80px rgba(14, 49, 35, 0.13);
  --shadow-soft: 0 14px 40px rgba(11, 57, 40, 0.09);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 155, 85, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 15%, rgba(22, 132, 95, 0.16), transparent 31rem),
    linear-gradient(180deg, #f8fbf7 0%, #eef6f1 52%, #f7f5ef 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(10, 95, 68, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 95, 68, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.skip-link { position: fixed; left: 18px; top: 12px; z-index: 2000; padding: 10px 14px; color: #fff; background: var(--primary); border-radius: 999px; transform: translateY(-160%); transition: transform .24s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; transition: .32s var(--ease); }
.site-header.is-scrolled { background: rgba(255,255,255,.9); box-shadow: 0 10px 35px rgba(9, 49, 35, .08); backdrop-filter: blur(18px); }
.nav-wrap { width: min(1220px, calc(100% - 32px)); margin: 16px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.66); box-shadow: 0 18px 50px rgba(16, 43, 60, .08); backdrop-filter: blur(20px); }
.site-header.is-scrolled .nav-wrap { margin-top: 10px; box-shadow: none; border-color: var(--line); background: rgba(255,255,255,.84); }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.brand { min-width: 220px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.38), transparent 26%), linear-gradient(135deg, var(--primary), var(--navy)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 14px 28px rgba(10, 95, 68, .22); font-weight: 800; letter-spacing: -0.07em; flex: 0 0 auto; }
.brand-text strong, .footer-brand strong { display: block; font-size: 15px; line-height: 1.2; letter-spacing: .04em; }
.brand-text span, .footer-brand small { display: block; margin-top: 2px; font-size: 10px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 13px; border-radius: 999px; color: #243b31; font-size: 14px; font-weight: 700; transition: .25s var(--ease); }
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--primary); background: rgba(10, 95, 68, .08); outline: none; }
.nav-chevron { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .55; }
.dropdown { position: absolute; left: 50%; top: calc(100% + 12px); width: max-content; min-width: 238px; transform: translateX(-50%) translateY(8px); padding: 12px; list-style: none; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transition: .24s var(--ease); backdrop-filter: blur(18px); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 12px; color: #28443a; font-size: 13px; font-weight: 700; white-space: nowrap; transition: .2s var(--ease); }
.dropdown a::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); transform: scale(.7); transition: .2s var(--ease); }
.dropdown a:hover, .dropdown a:focus-visible, .dropdown a.sub-active { background: rgba(10, 95, 68, .08); color: var(--primary); outline: none; }
.dropdown a:hover::before, .dropdown a.sub-active::before { transform: scale(1); }
.header-cta, .mobile-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 18px; color: #fff; border-radius: 999px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-size: 13px; font-weight: 800; box-shadow: 0 15px 35px rgba(10, 95, 68, .24); transition: .25s var(--ease); white-space: nowrap; }
.header-cta:hover, .header-cta:focus-visible, .mobile-cta:hover, .mobile-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(10, 95, 68, .3); outline: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; color: var(--ink); background: rgba(10, 95, 68, .08); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 99px; background: currentColor; transition: .25s var(--ease); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel { display: none; }
.hero { position: relative; min-height: 100svh; padding: 148px 0 72px; isolation: isolate; overflow: hidden; }
.hero::before, .hero::after, .page-hero::before, .page-hero::after { content: ""; position: absolute; z-index: -1; border-radius: 999px; filter: blur(2px); animation: floatShape 13s var(--ease) infinite alternate; }
.hero::before, .page-hero::before { width: 34vw; max-width: 470px; min-width: 260px; height: 34vw; max-height: 470px; min-height: 260px; right: -9vw; top: 14vh; background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.72), transparent 22%), linear-gradient(145deg, rgba(22,132,95,.22), rgba(198,155,85,.16)); }
.hero::after, .page-hero::after { width: 24vw; max-width: 340px; min-width: 210px; height: 24vw; max-height: 340px; min-height: 210px; left: -6vw; bottom: 6vh; background: linear-gradient(145deg, rgba(16,43,60,.14), rgba(10,95,68,.12)); animation-delay: -5s; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(34px, 6vw, 82px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; padding: 8px 13px; color: var(--primary-deep); border: 1px solid rgba(10, 95, 68, .16); border-radius: 999px; background: rgba(255,255,255,.72); box-shadow: 0 10px 28px rgba(10, 95, 68, .07); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(198,155,85,.14); }
h1, h2, h3, p { margin-top: 0; }
.hero-title { margin-bottom: 22px; font-size: clamp(38px, 6.2vw, 76px); line-height: 1.08; letter-spacing: -0.04em; }
.hero-title span, .gradient-text { color: transparent; background: linear-gradient(100deg, var(--primary), var(--navy) 48%, var(--gold)); background-clip: text; -webkit-background-clip: text; }
.hero-copy { max-width: 650px; margin-bottom: 30px; color: #34483f; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.95; font-weight: 600; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; line-height: 1.2; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); overflow: hidden; }
.btn::after { content: ""; position: absolute; inset: -1px auto -1px -80%; width: 46%; transform: skewX(-18deg); background: rgba(255,255,255,.24); transition: .55s var(--ease); }
.btn:hover::after { left: 120%; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #0c7756); box-shadow: 0 20px 42px rgba(10, 95, 68, .25); }
.btn-secondary { color: var(--primary-deep); border-color: rgba(10, 95, 68, .16); background: rgba(255,255,255,.78); box-shadow: 0 14px 34px rgba(10, 95, 68, .08); }
.btn:hover, .btn:focus-visible { transform: translateY(-3px); outline: none; }
.arrow { width: 18px; height: 18px; display: inline-block; border-radius: 50%; background: currentColor; mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7 5.3a1 1 0 0 0 0 1.4L18 11H4a1 1 0 1 0 0 2h14l-4.3 4.3a1 1 0 1 0 1.4 1.4l6-6a1 1 0 0 0 0-1.4l-6-6a1 1 0 0 0-1.4 0Z'/%3E%3C/svg%3E") center / contain no-repeat; }
.hero-panel { position: relative; min-height: 560px; }
.bridge-card { position: absolute; inset: 24px 0 auto auto; width: min(92%, 510px); padding: clamp(22px, 4vw, 34px); border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius-xl); background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.64)), radial-gradient(circle at top right, rgba(198,155,85,.22), transparent 18rem); box-shadow: var(--shadow); backdrop-filter: blur(18px); animation: cardIn .85s .2s var(--ease) both; }
.bridge-visual { position: relative; display: grid; place-items: center; aspect-ratio: 1.12; border-radius: 28px; overflow: hidden; background: linear-gradient(145deg, rgba(10,95,68,.1), rgba(16,43,60,.1)), radial-gradient(circle at 70% 20%, rgba(198,155,85,.26), transparent 13rem), #eef7f1; }
.bridge-visual::before { content: ""; position: absolute; inset: 20px; border: 1px dashed rgba(10, 95, 68, .28); border-radius: 24px; animation: rotateSlow 22s linear infinite; }
.bridge-line { position: absolute; width: 68%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: rotate(-12deg); }
.country-dot { position: absolute; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--primary), var(--navy)); box-shadow: 0 18px 40px rgba(11, 57, 40, .2); font-weight: 900; font-size: 22px; }
.country-dot.jp { left: 14%; top: 26%; }
.country-dot.cn { right: 14%; bottom: 27%; background: linear-gradient(135deg, var(--gold), #9f793c); }
.hero-badge { position: absolute; right: 28px; bottom: 30px; max-width: 230px; padding: 15px 17px; border-radius: 18px; background: rgba(255,255,255,.84); box-shadow: var(--shadow-soft); font-weight: 800; }
.hero-badge small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.hero-stat { padding: 16px 12px; border-radius: 18px; background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.75); box-shadow: 0 12px 28px rgba(10, 95, 68, .08); }
.hero-stat strong { display: block; color: var(--primary); font-size: 22px; line-height: 1.1; }
.hero-stat span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 700; }
.ticker { margin-top: 42px; overflow: hidden; border-block: 1px solid rgba(10, 95, 68, .1); background: rgba(255,255,255,.36); }
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; color: #2f463b; font-weight: 800; white-space: nowrap; }
.ticker-track span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.section { padding: clamp(74px, 9vw, 120px) 0; position: relative; }
.section.compact { padding-top: clamp(54px, 7vw, 88px); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { margin: 0 0 16px; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.14; letter-spacing: -0.03em; }
.section-lead { color: #40544b; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.95; }
.cards-grid, .field-grid, .works-grid, .summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .field-card, .work-card, .glass-card, .contact-card, .profile-card, .map-card, .page-hero-card, .flow-card { position: relative; border: 1px solid rgba(255,255,255,.82); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(255,255,255,.62)); box-shadow: var(--shadow-soft); backdrop-filter: blur(16px); overflow: hidden; }
.service-card, .field-card, .work-card, .glass-card, .contact-card, .profile-card, .flow-card { padding: 26px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.service-card:hover, .field-card:hover, .work-card:hover, .glass-card:hover, .contact-card:hover, .profile-card:hover, .flow-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(198,155,85,.28); }
.service-card::after, .field-card::after, .work-card::after, .glass-card::after, .flow-card::after { content: ""; position: absolute; inset: auto -30px -40px auto; width: 130px; height: 130px; border-radius: 50%; background: rgba(198,155,85,.12); }
.card-index { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 34px; margin-bottom: 20px; padding: 0 12px; border-radius: 999px; color: var(--primary-deep); background: var(--gold-soft); font-weight: 900; }
.service-card h3, .field-card h3, .work-card h3, .glass-card h3, .contact-card h3, .profile-card h3, .flow-card h3 { margin-bottom: 12px; font-size: 20px; line-height: 1.35; }
.service-card p, .field-card p, .work-card p, .glass-card p, .contact-card p, .profile-card p, .flow-card p { color: #52645b; margin-bottom: 0; }
.glass-panel { padding: clamp(26px, 4vw, 44px); border: 1px solid rgba(255,255,255,.84); border-radius: var(--radius-xl); background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.64)); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.split-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(24px, 4vw, 52px); align-items: start; }
.message-box { padding: clamp(28px, 4vw, 42px); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.68)); border: 1px solid rgba(255,255,255,.86); box-shadow: var(--shadow-soft); }
.message-box p { color: #384b42; font-weight: 560; }
.signature { display: flex; align-items: end; justify-content: flex-end; gap: 12px; margin-top: 24px; color: var(--primary-deep); font-weight: 900; font-size: 19px; }
.signature small { color: var(--muted); font-size: 13px; font-weight: 700; }
.info-table { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.68); }
.info-table div { display: grid; grid-template-columns: 170px 1fr; border-bottom: 1px solid var(--line); }
.info-table div:last-child { border-bottom: 0; }
.info-table dt, .info-table dd { padding: 16px 18px; margin: 0; }
.info-table dt { color: var(--primary-deep); font-weight: 900; background: rgba(10, 95, 68, .06); }
.info-table dd { color: #35493f; }
.info-table a { color: var(--primary); font-weight: 800; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(10, 95, 68, .12); color: #294338; font-weight: 800; box-shadow: 0 10px 22px rgba(10,95,68,.06); }
.chip-list span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: #40544b; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }
.area-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-list span { min-height: 110px; display: grid; place-items: center; text-align: center; padding: 18px; color: var(--primary-deep); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(255,255,255,.62)); border: 1px solid rgba(255,255,255,.86); box-shadow: var(--shadow-soft); font-weight: 900; }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: flow; }
.flow-card { min-height: 210px; }
.flow-card::before { counter-increment: flow; content: "0" counter(flow); display: inline-grid; place-items: center; width: 50px; height: 36px; margin-bottom: 18px; border-radius: 999px; color: var(--primary-deep); background: var(--gold-soft); font-weight: 900; }
.works-grid { grid-template-columns: repeat(2, 1fr); }
.work-card { min-height: 220px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 18px; align-items: stretch; }
.contact-card { display: flex; flex-direction: column; gap: 16px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 16px; background: rgba(10, 95, 68, .06); }
.contact-line strong { display: block; color: var(--primary-deep); }
.contact-line a { color: var(--primary); font-weight: 900; overflow-wrap: anywhere; }
.contact-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-weight: 900; }
.map-card { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 430px; }
.map-card.compact-map { min-height: 360px; margin-top: 22px; }
.map-info { padding: 28px; background: linear-gradient(145deg, rgba(10,95,68,.08), rgba(198,155,85,.08)); }
.mini-label { display: inline-flex; margin-bottom: 10px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.map-info h3 { margin-bottom: 10px; font-size: 24px; }
.map-info p { color: #3e5148; font-weight: 700; }
.map-frame { min-height: 100%; background: #e7eee9; }
.map-frame iframe { width: 100%; height: 100%; min-height: 430px; display: block; filter: saturate(.92) contrast(.98); }
.compact-map .map-frame iframe { min-height: 360px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 900; }
.text-link::after { content: "→"; transition: transform .2s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }
.page-hero { position: relative; padding: 152px 0 76px; isolation: isolate; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .58fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(36px, 5.4vw, 66px); line-height: 1.1; letter-spacing: -0.04em; }
.page-hero p { color: #3f5148; font-size: clamp(15px, 1.5vw, 18px); font-weight: 650; }
.page-hero-card { padding: 28px; }
.page-hero-card strong { display: block; color: var(--primary-deep); font-size: 28px; line-height: 1.18; margin-bottom: 14px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 800; }
.breadcrumb a { color: var(--primary); }
.policy-content { display: grid; gap: 18px; }
.policy-item { padding: 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.86); box-shadow: var(--shadow-soft); }
.policy-item h2 { margin-bottom: 10px; color: var(--primary-deep); font-size: 22px; }
.policy-item p { color: #40544b; }
.sitemap-tree { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sitemap-group { padding: 24px; border-radius: var(--radius-lg); background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.86); box-shadow: var(--shadow-soft); }
.sitemap-group h2 { margin-bottom: 12px; font-size: 22px; }
.sitemap-group h2 a { color: var(--primary-deep); }
.sitemap-group ul { margin: 0; padding-left: 20px; color: #44584d; font-weight: 700; }
.sitemap-group li + li { margin-top: 8px; }
.site-footer { padding: 64px 0 28px; color: rgba(255,255,255,.82); background: radial-gradient(circle at top left, rgba(198,155,85,.16), transparent 24rem), linear-gradient(135deg, #062c22, #102b3c); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .95fr .75fr; gap: 32px; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255,255,255,.62); }
.footer-copy { margin: 20px 0 14px; max-width: 390px; color: rgba(255,255,255,.72); }
.footer-domain { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; font-weight: 800; }
.footer-col h2 { margin-bottom: 16px; color: #fff; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); transition: .2s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.6); font-size: 13px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .28s; }
@keyframes floatShape { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(16px,-18px,0) scale(1.04); } }
@keyframes rotateSlow { to { transform: rotate(360deg); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1060px) {
  .global-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel { position: fixed; inset: 82px 16px auto 16px; display: grid; grid-template-rows: 0fr; opacity: 0; visibility: hidden; transition: .28s var(--ease); }
  .mobile-panel.is-open { grid-template-rows: 1fr; opacity: 1; visibility: visible; }
  .mobile-panel-inner { overflow: hidden; padding: 14px; border: 1px solid rgba(255,255,255,.82); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
  .mobile-panel .global-nav { display: block; }
  .mobile-panel .nav-links { display: grid; gap: 8px; }
  .mobile-panel .nav-link { display: flex; justify-content: space-between; padding: 12px 14px; background: rgba(10,95,68,.05); }
  .mobile-panel .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: 100%; min-width: 0; margin-top: 6px; border-radius: 16px; background: rgba(10,95,68,.04); }
  .mobile-panel .mobile-cta { width: 100%; margin-top: 12px; }
  .hero-grid, .page-hero-grid, .split-grid, .contact-grid, .map-card { grid-template-columns: 1fr; }
  .hero-panel { min-height: 500px; }
  .bridge-card { position: relative; width: 100%; inset: auto; }
  .cards-grid, .field-grid, .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .area-list, .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1160px); }
  .nav-wrap { width: calc(100% - 20px); margin-top: 10px; padding: 9px 10px; }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 13px; }
  .brand-text span { font-size: 9px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 126px; min-height: auto; }
  .page-hero { padding-top: 130px; }
  .hero-title, .page-hero h1 { letter-spacing: -0.035em; }
  .hero-actions .btn, .section-actions .btn { width: 100%; }
  .country-dot { width: 76px; height: 76px; }
  .hero-badge { position: relative; right: auto; bottom: auto; margin: 18px; }
  .hero-stats { grid-template-columns: 1fr; }
  .cards-grid, .field-grid, .works-grid, .summary-grid, .area-list, .flow-grid, .footer-grid, .sitemap-tree { grid-template-columns: 1fr; }
  .info-table div { grid-template-columns: 1fr; }
  .info-table dt { padding-bottom: 6px; }
  .info-table dd { padding-top: 6px; }
  .map-info { padding: 22px; }
  .map-frame iframe, .compact-map .map-frame iframe { min-height: 310px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
