    /* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white:   #FFFFFF;
      --gray:    #F5F3F0;
      --beige:   #F0EBE3;
      --red:     #D94433;
      --yellow:  #F5D800;
      --black:   #111111;
      --muted:   #888888;
      --serif:   'Noto Serif JP', 'Yu Mincho', serif;
      --sans:    'Noto Sans JP', sans-serif;
      --display: 'DM Serif Display', serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── Utilities ── */
    .inner {
      max-width: 1240px;
      margin-inline: auto;
      padding-inline: clamp(24px, 5vw, 80px);
    }
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.is-visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ══════════════════════════════
       NAVIGATION
    ══════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px clamp(24px, 5vw, 80px);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,.06);
      transition: background .3s;
    }
    .nav__logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--serif); font-size: 18px; font-weight: 900;
      letter-spacing: .04em; line-height: 1.2;
    }
    .nav__logo img { height: 40px; width: auto; display: block; }
    .nav__logo-text { display: flex; flex-direction: column; }
    .nav__logo span {
      display: block; font-family: var(--display); font-size: 10px;
      font-weight: 400; letter-spacing: .18em; color: var(--muted); margin-top: 2px;
    }
    .nav__links { display: flex; align-items: center; gap: 32px; }
    .nav__links a {
      font-size: 13px; font-weight: 500; letter-spacing: .08em;
      color: var(--black); opacity: .7; transition: opacity .2s;
    }
    .nav__links a:hover { opacity: 1; }
    .nav__links a.is-current { opacity: 1; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
    .nav__tel { font-family: var(--display); font-size: 22px; letter-spacing: .02em; color: var(--red); }
    .nav__tel small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: .08em; text-align: center; }
    .nav__cta { background: var(--red); color: #fff !important; opacity: 1 !important; padding: 10px 20px; font-size: 13px; font-weight: 700; letter-spacing: .06em; }
    .nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav__hamburger span { display: block; width: 100%; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
    .nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer { display: none; position: fixed; inset: 0; z-index: 99; pointer-events: none; }
    .nav__drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity .3s ease; }
    .nav__drawer-panel { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: var(--white); transform: translateX(100%); transition: transform .35s ease; display: flex; flex-direction: column; padding: 80px 36px 40px; gap: 0; }
    .nav__drawer-links { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(0,0,0,.08); }
    .nav__drawer-links a { font-size: 16px; font-weight: 500; letter-spacing: .08em; color: var(--black); padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.08); transition: color .2s; }
    .nav__drawer-links a:hover { color: var(--red); }
    .nav__drawer-tel { margin-top: 32px; font-family: var(--display); font-size: 28px; color: var(--red); letter-spacing: .02em; }
    .nav__drawer-tel small { display: block; font-family: var(--sans); font-size: 11px; color: var(--muted); letter-spacing: .08em; margin-top: 4px; }
    .nav__drawer-cta { margin-top: 24px; display: block; background: var(--red); color: #fff; text-align: center; font-size: 15px; font-weight: 700; letter-spacing: .08em; padding: 16px; }
    .nav__drawer.is-open { display: block; pointer-events: auto; }
    .nav__drawer.is-open .nav__drawer-overlay { opacity: 1; }
    .nav__drawer.is-open .nav__drawer-panel { transform: translateX(0); }
    @media (max-width: 768px) {
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }
      .nav__drawer { display: none; }
      .nav__drawer.is-open { display: block; }
    }

    /* ══════════════════════════════
       PAGE HEADER
    ══════════════════════════════ */
    .page-hero {
      background: var(--black);
      padding-top: 70px;
      min-height: 36vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .page-hero__bg-text {
      position: absolute;
      bottom: -20px;
      right: -40px;
      font-family: var(--display);
      font-size: clamp(100px, 18vw, 240px);
      font-style: italic;
      color: rgba(255,255,255,.04);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -.02em;
      user-select: none;
    }
    .page-hero__left {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 80px) clamp(40px, 8vw, 100px);
    }
    .page-hero__breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .22em;
      color: rgba(255,255,255,.4);
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .page-hero__breadcrumb a { transition: color .2s; }
    .page-hero__breadcrumb a:hover { color: rgba(255,255,255,.7); }
    .page-hero__breadcrumb span { color: rgba(255,255,255,.3); }
    .page-hero__en {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .24em;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .page-hero__title {
      font-family: var(--serif);
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      letter-spacing: .04em;
    }
    .page-hero__title em {
      font-style: normal;
      color: var(--yellow);
    }
    .page-hero__sub {
      margin-top: 24px;
      font-size: clamp(13px, 1.4vw, 15px);
      color: rgba(255,255,255,.65);
      line-height: 2;
      letter-spacing: .08em;
      max-width: 340px;
    }
    .page-hero__right {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(40px, 8vw, 100px) clamp(24px, 5vw, 80px) clamp(40px, 8vw, 100px) 0;
    }
    .page-hero__nav {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .page-hero__nav-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-family: var(--serif);
      font-size: clamp(15px, 1.8vw, 18px);
      font-weight: 700;
      color: rgba(255,255,255,.6);
      letter-spacing: .06em;
      transition: color .2s;
    }
    .page-hero__nav-item:hover { color: #fff; }
    .page-hero__nav-item span {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .2em;
      color: rgba(255,255,255,.3);
    }
    .page-hero__nav-item.is-active { color: var(--yellow); }
    .page-hero__nav-item.is-active span { color: var(--yellow); opacity: .6; }
    @media (max-width: 768px) {
      .page-hero { grid-template-columns: 1fr; }
      .page-hero__right { display: none; }
    }

    /* ── Page-in anchor links ── */
    .page-anchor {
      display: flex;
      gap: 0;
      border-bottom: 1px solid rgba(0,0,0,.08);
      background: var(--white);
      position: sticky;
      top: 70px;
      z-index: 80;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .page-anchor::-webkit-scrollbar { display: none; }
    .page-anchor a {
      flex: 0 0 auto;
      padding: 16px 28px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--muted);
      border-bottom: 3px solid transparent;
      transition: color .2s, border-color .2s;
      white-space: nowrap;
    }
    .page-anchor a:hover { color: var(--black); }
    .page-anchor a.is-active { color: var(--red); border-bottom-color: var(--red); }

    /* ══════════════════════════════
       SECTION COMMON
    ══════════════════════════════ */
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: clamp(48px, 7vw, 96px);
      gap: 24px;
    }
    .section-header__label {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .22em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-header__title {
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: .02em;
    }
    .section-header__desc {
      max-width: 320px;
      font-size: 14px;
      line-height: 1.9;
      color: var(--muted);
      text-align: right;
    }
    @media (max-width: 560px) {
      .section-header { flex-direction: column; align-items: flex-start; }
      .section-header__desc { text-align: left; }
    }

    /* ══════════════════════════════
       01 ABOUT — アスリードについて
    ══════════════════════════════ */
    .about-intro {
      background: var(--gray);
      padding-block: clamp(80px, 12vw, 160px);
      overflow: hidden;
      position: relative;
    }
    .about-intro__bg-word {
      position: absolute;
      top: 50%;
      right: -60px;
      transform: translateY(-50%);
      font-family: var(--display);
      font-size: clamp(160px, 24vw, 360px);
      font-style: italic;
      color: rgba(0,0,0,.035);
      pointer-events: none;
      line-height: 1;
      white-space: nowrap;
    }
    .about-intro .inner {
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: clamp(40px, 8vw, 120px);
      align-items: start;
      position: relative;
    }
    .about-intro__eyebrow {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .22em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 32px;
    }
    .about-intro__catch {
      font-family: var(--serif);
      font-size: clamp(32px, 4.5vw, 64px);
      font-weight: 900;
      line-height: 1.4;
      letter-spacing: .04em;
      margin-bottom: 40px;
    }
    .about-intro__catch em {
      font-style: normal;
      color: var(--red);
    }
    .about-intro__body {
      font-size: clamp(15px, 1.5vw, 17px);
      line-height: 2.2;
      color: #444;
    }
    .about-intro__body p + p {
      margin-top: 24px;
    }
    .about-intro__sig {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 32px;
      border-top: 1px solid rgba(0,0,0,.1);
    }
    .about-intro__sig-img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--beige);
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }
    .about-intro__sig-title {
      font-size: 11px;
      letter-spacing: .12em;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .about-intro__sig-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 900;
      letter-spacing: .06em;
    }
    .about-intro__stats {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 60px;
    }
    .about-stat {
      background: var(--white);
      padding: 28px 32px;
      position: relative;
      overflow: hidden;
    }
    .about-stat::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: var(--yellow);
    }
    .about-stat__num {
      font-family: var(--display);
      font-size: clamp(48px, 6vw, 72px);
      line-height: 1;
      color: var(--black);
      letter-spacing: -.02em;
    }
    .about-stat__num sup {
      font-size: .45em;
      vertical-align: 0.15em;
      letter-spacing: 0;
    }
    .about-stat__label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--black);
      margin-top: 6px;
    }
    .about-stat__sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .about-intro .inner { grid-template-columns: 1fr; }
      .about-intro__stats { flex-direction: row; flex-wrap: wrap; }
      .about-stat { flex: 1 1 200px; }
    }

    /* ══════════════════════════════
       02 COMPANY — 会社概要
    ══════════════════════════════ */
    .company {
      background: var(--white);
      padding-block: clamp(80px, 12vw, 160px);
    }
    .company .inner {
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: clamp(40px, 8vw, 120px);
      align-items: start;
    }
    .company__table {
      width: 100%;
      border-collapse: collapse;
    }
    .company__table tr {
      border-bottom: 1px solid rgba(0,0,0,.07);
    }
    .company__table tr:first-child {
      border-top: 1px solid rgba(0,0,0,.07);
    }
    .company__table th {
      width: 36%;
      padding: 22px 0 22px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--muted);
      text-align: left;
      vertical-align: top;
    }
    .company__table td {
      padding: 22px 0 22px 20px;
      font-size: 14px;
      line-height: 1.9;
      color: var(--black);
      vertical-align: top;
    }
    .company__table td strong {
      display: block;
      font-weight: 700;
    }
    .company__visual {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 120px;
    }
    .company__photo {
      aspect-ratio: 4/3;
      background: var(--gray);
      overflow: hidden;
      position: relative;
    }
    .company__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .company__photo-caption {
      font-size: 11px;
      letter-spacing: .1em;
      color: var(--muted);
      margin-top: 12px;
      text-align: center;
    }
    .company__cert {
      background: var(--beige);
      padding: 28px 32px;
    }
    .company__cert-title {
      font-family: var(--display);
      font-size: 10px;
      letter-spacing: .2em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .company__cert-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .company__cert-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
    }
    .company__cert-item::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 4l3 3 7-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }
    @media (max-width: 900px) {
      .company .inner { grid-template-columns: 1fr; }
      .company__visual { position: static; }
    }

    /* ══════════════════════════════
       03 MAP — アクセスマップ
    ══════════════════════════════ */
    .map-section {
      background: var(--beige);
      padding-block: clamp(80px, 12vw, 160px);
      overflow: hidden;
      position: relative;
    }
    .map-section__bg-word {
      position: absolute;
      bottom: -40px;
      left: -30px;
      font-family: var(--display);
      font-size: clamp(120px, 20vw, 300px);
      font-style: italic;
      color: rgba(0,0,0,.03);
      pointer-events: none;
      line-height: 1;
    }
    .map-section .inner {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
      position: relative;
    }
    .map-embed {
      aspect-ratio: 4/3;
      background: rgba(0,0,0,.06);
      overflow: hidden;
      position: relative;
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .map-embed__overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .map-embed__frame {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(0,0,0,.08);
      pointer-events: none;
    }
    .map-info {}
    .map-info__label {
      font-family: var(--display);
      font-size: 11px;
      letter-spacing: .22em;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .map-info__heading {
      font-family: var(--serif);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.3;
      letter-spacing: .04em;
      margin-bottom: 8px;
    }
    .map-info__heading em {
      font-style: normal;
      color: var(--red);
    }
    .map-info__address {
      font-size: 15px;
      line-height: 2;
      color: #444;
      margin-bottom: 32px;
    }
    .map-info__rows {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(0,0,0,.1);
      margin-bottom: 32px;
    }
    .map-info__row {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,0,0,.07);
      font-size: 14px;
    }
    .map-info__row dt {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--muted);
      padding-top: 2px;
    }
    .map-info__row dd {
      color: var(--black);
      line-height: 1.8;
    }
    .map-info__row dd a {
      color: var(--red);
      font-weight: 700;
    }
    .map-info__btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 14px 28px;
      transition: background .2s;
    }
    .map-info__btn:hover { background: var(--red); }
    .map-info__btn::after { content: '→'; }
    @media (max-width: 900px) {
      .map-section .inner { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════
       CTA
    ══════════════════════════════ */
    .cta {
      background: var(--red);
      padding-block: clamp(80px, 12vw, 160px);
      position: relative;
      overflow: hidden;
    }
    .cta__bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--display);
      font-size: clamp(100px, 18vw, 240px);
      font-style: italic;
      color: rgba(255,255,255,.06);
      white-space: nowrap;
      pointer-events: none;
    }
    .cta .inner { position: relative; text-align: center; }
    .cta__label { font-family: var(--display); font-size: 11px; letter-spacing: .24em; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 24px; }
    .cta__heading { font-family: var(--serif); font-size: clamp(32px, 5vw, 64px); font-weight: 900; color: #fff; line-height: 1.3; letter-spacing: .04em; margin-bottom: 16px; }
    .cta__sub { font-size: clamp(14px, 1.5vw, 17px); color: rgba(255,255,255,.9); line-height: 2; margin-bottom: 56px; }
    .cta__actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--red); font-family: var(--sans); font-size: clamp(14px, 1.5vw, 16px); font-weight: 700; letter-spacing: .06em; padding: 18px 40px; transition: transform .2s, box-shadow .2s; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
    .btn-primary::after { content: '→'; font-size: 18px; }
    .btn-outline { display: inline-flex; align-items: center; gap: 12px; border: 2px solid rgba(255,255,255,.6); color: #fff; font-family: var(--sans); font-size: clamp(14px, 1.5vw, 16px); font-weight: 700; letter-spacing: .06em; padding: 18px 40px; transition: background .2s, border-color .2s; }
    .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
    .cta__tel-block { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .cta__tel-label { font-size: 13px; letter-spacing: .1em; color: rgba(255,255,255,.88); }
    .cta__tel-num { font-family: var(--display); font-size: clamp(36px, 5vw, 56px); color: #fff; letter-spacing: .02em; }
    .cta__tel-hours { font-size: 13px; color: rgba(255,255,255,.85); letter-spacing: .08em; }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer { background: var(--black); color: #fff; padding-block: clamp(60px, 8vw, 100px); }
    .footer .inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(40px, 5vw, 80px); }
    .footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .footer__brand-logo img { height: 40px; width: auto; display: block; }
    .footer__brand-name { font-family: var(--serif); font-size: 22px; font-weight: 900; letter-spacing: .04em; }
    .footer__brand-en { font-family: var(--display); font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.6); }
    .footer__brand-desc { font-size: 13px; line-height: 2; color: rgba(255,255,255,.65); max-width: 260px; margin-top: 24px; }
    .footer__col-title { font-family: var(--display); font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.55); text-transform: uppercase; margin-bottom: 20px; }
    .footer__col ul li { margin-bottom: 12px; }
    .footer__col ul li a { font-size: 13px; color: rgba(255,255,255,.75); letter-spacing: .06em; transition: color .2s; }
    .footer__col ul li a:hover { color: #fff; }
    .footer__info p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 2; letter-spacing: .04em; }
    .footer__bottom-wrap { max-width: 1240px; margin-inline: auto; padding-inline: clamp(24px, 5vw, 80px); }
    .footer__bottom { margin-top: clamp(40px, 5vw, 60px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; white-space: nowrap; }
    .footer__copy { font-family: var(--display); font-size: 11px; letter-spacing: .12em; color: rgba(255,255,255,.55); }
    .footer__bottom-nav { display: flex; gap: 24px; }
    .footer__bottom-nav a { font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.6); transition: color .2s; }
    .footer__bottom-nav a:hover { color: rgba(255,255,255,.7); }
    @media (max-width: 900px) { .footer .inner { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) {
      .footer .inner { grid-template-columns: 1fr 1fr; }
      .footer .inner > :nth-child(1) { grid-column: 1 / -1; }
      .footer .inner > :nth-child(4) { grid-column: 1 / -1; }
      .footer__bottom { flex-direction: row; align-items: center; flex-wrap: wrap; }
    }

    /* ══════════════════════════════
       FLOATING CTA
    ══════════════════════════════ */
    .float-cta { position: fixed; bottom: 32px; right: 32px; z-index: 90; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s; }
    .float-cta.is-visible { opacity: 1; transform: none; }
    .float-cta__btn { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 13px; font-weight: 700; letter-spacing: .06em; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: transform .2s; }
    .float-cta__btn:hover { transform: scale(1.04); }
    .float-cta__btn--contact { background: var(--red); color: #fff; }
    .float-cta__btn--tel { background: var(--black); color: #fff; }
    @media (max-width: 560px) { .float-cta { bottom: 16px; right: 16px; } }
