
  :root {
    --black: #080808;
    --gold: #C8A45A;
    --gold-light: #e2c07e;
    --white: #f5f3ee;
    --gray: #8a8680;
    --red: #b8262e;
    --section-gap: clamp(80px, 12vw, 160px);
  }

  img {
    width: 100%;
    height: auto;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
    padding: 0 clamp(24px, 5vw, 80px);
  }

  .hero:after {
    content: "";
    width: 100%;
    height: 400px;
    display: block;
    position: absolute;
    bottom: 0;
    background-image: linear-gradient(0deg, #000000, transparent);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200,164,90,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,38,46,0.06) 0%, transparent 60%),
      linear-gradient(170deg, #0f0e0c 0%, #080808 50%, #0a0808 100%);
    background-image: url(../images/bg.webp);
    background-position: center;
    background-size: cover;
  }

  .hero-lines {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,164,90,0.04) 80px);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
  }

  .hero-eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(10px, 1.2vw, 13px);
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 9vw, 148px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
  }

  .hero-logo {
    width: 100%;
    max-width: 800px;
    margin: auto;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
  }

  .hero-logo-bg{
    width: 100%;
    max-width: 800px;
    margin: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    mix-blend-mode: screen;
  }
  .hero-logo-bg img{
    width: 100%;
  }

  .hero-title em {
    font-style: normal;
    color: var(--gold);
    display: block;
  }

  .hero-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 320px);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,164,90,0.2);
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-55%);
    pointer-events: none;
    z-index: 0;
    animation: fadeIn 1.5s ease 0.6s forwards;
    opacity: 0;
  }

  .hero-tagline {
    margin-bottom: clamp(24px, 4vw, 48px);
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.8vw, 22px);
    font-weight: 300;
    color: rgba(245,243,238,0.7);
    line-height: 1.8;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
  }

  .hero-tagline strong {
    color: var(--white);
    font-weight: 600;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: clamp(32px, 5vw, 64px) 0;
    opacity: 0;
    animation: expandWidth 1s ease 1s forwards;
  }

  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
  }

  .hero-bottom {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(32px, 5vw, 56px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(200,164,90,0.15);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-dates {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    font-size: clamp(11px, 1.3vw, 14px);
    color: var(--gray);
  }

  .hero-dates span {
    color: var(--gold);
    margin-left: 8px;
  }

  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-transform: uppercase;
  }

  .scroll-hint::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 2s ease-in-out infinite;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
  }

  .btn:hover::after { transform: translateX(0); }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
  }

  .btn-primary:hover { background: var(--gold-light); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245,243,238,0.3);
  }

  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .btn-ghost {
    background: transparent;
    color: var(--gray);
    border: 1px solid rgba(138,134,128,0.25);
    font-size: 12px;
  }

  .btn-ghost:hover { color: var(--white); border-color: rgba(245,243,238,0.4); }

  /* ── SECTIONS ── */
  section { padding: var(--section-gap) clamp(24px, 5vw, 80px); }

  .section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .section-title em {
    font-style: normal;
    color: var(--gold);
  }

  /* ── TURNING POINT ── */
  .turning-point {
    background: linear-gradient(135deg, #0d0c0a 0%, #0f0e0c 100%);
    position: relative;
    overflow: hidden;
  }

  .turning-point::before {
    content: '01';
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(180px, 30vw, 400px);
    position: absolute;
    right: -3vw;
    bottom: -0.1em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,164,90,0.07);
    line-height: 1;
    pointer-events: none;
  }

  .turning-point-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .turning-point-grid { grid-template-columns: 1fr; }
  }

  .turning-lead {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 2;
    color: rgba(245,243,238,0.8);
  }

  .debut-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .debut-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(200,164,90,0.1);
    font-size: clamp(13px, 1.2vw, 15px);
    color: rgba(245,243,238,0.75);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: color 0.2s ease;
  }

  .debut-list li:first-child { border-top: 1px solid rgba(200,164,90,0.1); }

  .debut-list li:hover { color: var(--white); }

  .debut-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .turning-statement {
    margin-top: 40px;
    padding: 28px 32px;
    border-left: 3px solid var(--gold);
    background: rgba(200,164,90,0.04);
  }

  .turning-statement p {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 600;
    line-height: 1.9;
    color: var(--white);
  }

  /* ── MODEL COMPARISON ── */
  .model-section {
    background: var(--black);
  }

  .model-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: clamp(40px, 6vw, 80px);
    position: relative;
  }

  @media (max-width: 640px) {
    .model-compare { grid-template-columns: 1fr; }
  }

  .model-col {
    padding: clamp(24px, 4vw, 48px);
    position: relative;
  }

  .model-col.old {
    background: rgba(138,134,128,0.07);
    opacity: 0.7;
  }

  .model-col.new {
    background: rgba(200,164,90,0.07);
    border: 1px solid rgba(200,164,90,0.2);
  }

  .model-col-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
    display: block;
  }

  .model-col.old .model-col-label { color: var(--gray); }
  .model-col.new .model-col-label { color: var(--gold); }

  .model-col h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.3;
  }

  .model-col.old h3 { color: rgba(245,243,238,0.5); text-decoration: line-through; text-decoration-color: rgba(138,134,128,0.5); }
  .model-col.new h3 { color: var(--white); }

  .model-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .model-points li {
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
  }

  .model-col.old .model-points li { color: rgba(245,243,238,0.4); }
  .model-col.old .model-points li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: rgba(138,134,128,0.5);
    font-size: 10px;
    top: 4px;
  }

  .model-col.new .model-points li { color: rgba(245,243,238,0.9); }
  .model-col.new .model-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: var(--gold);
  }

  .model-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
  }

  /* ── DEFINITION ── */
  .definition-section {
    background: linear-gradient(160deg, #0d0c0a 0%, #080808 100%);
    position: relative;
  }

  .definition-section::before {
    content: '03';
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(180px, 30vw, 400px);
    position: absolute;
    left: -3vw;
    top: -0.1em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,164,90,0.06);
    line-height: 1;
    pointer-events: none;
  }

  .definition-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
  }

  .tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
  }

  .tag {
    padding: 10px 22px;
    border: 1px solid rgba(200,164,90,0.4);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    letter-spacing: 0.15em;
    color: var(--gold);
    transition: all 0.2s ease;
  }

  .tag:hover {
    background: rgba(200,164,90,0.1);
  }

  .definition-body {
    margin-top: 48px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 300;
    line-height: 2.1;
    color: rgba(245,243,238,0.8);
    max-width: 600px;
  }

  .definition-body strong {
    color: var(--white);
    font-weight: 600;
  }

  /* ── DEBUT PATH ── */
  .debut-path {
    background: #060606;
  }

  .debut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    margin-top: clamp(40px, 6vw, 80px);
    background: rgba(200,164,90,0.08);
  }

  .debut-item {
    background: #060606;
    padding: clamp(24px, 3vw, 40px);
    transition: background 0.25s ease;
    position: relative;
    overflow: hidden;
  }

  .debut-item:hover {
    background: rgba(200,164,90,0.05);
  }

  .debut-item-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(200,164,90,0.15);
    line-height: 1;
    margin-bottom: 16px;
  }

  .debut-item h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
  }

  /* ── WHY NOW ── */
  .why-section {
    background: linear-gradient(150deg, #0e0d0b 0%, #080808 100%);
    position: relative;
  }

  .reasons {
    margin-top: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .reason {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: clamp(24px, 4vw, 48px) 0;
    border-bottom: 1px solid rgba(200,164,90,0.1);
    align-items: start;
  }

  .reason:first-child { border-top: 1px solid rgba(200,164,90,0.1); }

  @media (max-width: 560px) {
    .reason { grid-template-columns: 1fr; gap: 12px; }
  }

  .reason-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 80px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
  }

  .reason-content h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .reason-content p {
    font-size: clamp(13px, 1.2vw, 15px);
    color: rgba(245,243,238,0.6);
    line-height: 1.9;
  }

  /* ── OVERVIEW ── */
  .overview-section {
    background: var(--black);
  }

  .overview-table {
    margin-top: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
  }

  .overview-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    border-bottom: 1px solid rgba(200,164,90,0.1);
  }

  .overview-row:first-child { border-top: 1px solid rgba(200,164,90,0.1); }

  @media (max-width: 540px) {
    .overview-row { grid-template-columns: 1fr; }
  }

  .overview-label {
    padding: clamp(18px, 2.5vw, 28px) 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    border-right: 1px solid rgba(200,164,90,0.1);
    padding-right: 24px;
    display: flex;
    align-items: center;
  }

  @media (max-width: 540px) {
    .overview-label {
      border-right: none;
      border-bottom: 1px solid rgba(200,164,90,0.08);
      padding-bottom: 8px;
    }
  }

  .overview-value {
    padding: clamp(18px, 2.5vw, 28px) 0 clamp(18px, 2.5vw, 28px) 32px;
    font-size: clamp(14px, 1.4vw, 16px);
    color: rgba(245,243,238,0.9);
    line-height: 1.8;
  }

  @media (max-width: 540px) {
    .overview-value { padding-left: 0; }
  }

  .overview-value small {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
  }

  .overview-value .highlight-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  /* ── ECOSYSTEM ── */
  .eco-section {
    background: #0a0908;
    position: relative;
    overflow: hidden;
  }

  .eco-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,164,90,0.06) 0%, transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .eco-grid { grid-template-columns: 1fr; }
  }

  .eco-statement {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.5;
    color: var(--white);
  }

  .eco-statement em {
    font-style: normal;
    color: var(--gold);
  }

  .eco-partners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200,164,90,0.08);
  }

  .eco-partner {
    background: #0a0908;
    padding: 20px 24px;
    font-size: clamp(12px, 1.2vw, 14px);
    color: rgba(245,243,238,0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .eco-partner:hover {
    background: rgba(200,164,90,0.06);
    color: var(--white);
  }

  .eco-partner::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ── DECLARATION ── */
  .declaration-section {
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--section-gap) * 1.5);
    padding-bottom: calc(var(--section-gap) * 1.5);
  }

  .declaration-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,164,90,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .declaration-text {
    position: relative;
    z-index: 1;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(18px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.9;
    color: rgba(245,243,238,0.9);
    max-width: 700px;
    margin: 0 auto;
  }

  .declaration-text em {
    font-style: normal;
    color: var(--gold);
  }

  .declaration-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 48px auto;
  }

  .declaration-en {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    letter-spacing: 0.1em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200,164,90,0.4);
    margin-bottom: 48px;
    display: block;
  }

  /* ── CTA SECTION ── */

  .cta-section {
    background: rgba(200,164,90,0.06);
    border-top: 1px solid rgba(200,164,90,0.15);
    border-bottom: 1px solid rgba(200,164,90,0.15);
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }

  @media (max-width: 640px) {
    .cta-inner { grid-template-columns: 1fr; }
  }

  .cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 900;
    line-height: 1.4;
  }

  .cta-subtitle {
    margin-top: 16px;
    font-size: clamp(13px, 1.3vw, 15px);
    color: rgba(245,243,238,0.6);
    line-height: 1.9;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-lg {
    padding: 18px 36px;
    font-size: 14px;
    justify-content: space-between;
  }

  .btn-lg .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
  }

  .btn:hover .arrow { transform: translateX(4px); }

  /* ── FOOTER ── */
  footer {
    padding: clamp(32px, 4vw, 56px) clamp(24px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200,164,90,0.08);
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(12px, 1.3vw, 15px);
    letter-spacing: 0.2em;
    color: var(--gray);
  }

  .footer-logo span { color: var(--gold); }

  .footer-nav {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-nav a {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-nav a:hover { color: var(--gold); }

  #bottom-info {
    padding-bottom: 1em;
  }
  #bottom-info .bi-top {
    text-align: center;
  }
  #bottom-info p {
    margin-bottom: 1em;
  }
  #bottom-info .bnr-flex {
    display: flex;
    margin: 40px auto;
    max-width: 800px;
    margin: auto;
  }
  #bottom-info .bnr-flex a {
    width: 98%;
    margin: .5em auto;
    padding: 0 1%;
    display: block;
    max-width: 320px;
  }
  #bottom-info .company {
    margin-bottom: 2em;
  }

  @media (max-width: 640px){
    #bottom-info .bnr-flex {
      flex-direction: column;
    }
    
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to   { width: 60px; opacity: 1; }
  }

  @keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(0.6); opacity: 0.4; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE FIXES ── */
  @media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
  }

  /* form */

.contact-form {
  max-width: 680px;
  width: 100%;
  margin: auto; }
  .contact-form .label-box {
    display: none; }
  .contact-form .form-item {
    margin-bottom: 1em;
    text-align: left; }
    .contact-form .form-item .wpcf7-file {
      color: #fff; }
  .contact-form .form-head {
    display: flex;
    align-items: center;
    margin-bottom: .5em; }
  .contact-form .req {
    margin-left: 5px;
    padding: 5px;
    background: #ed1c1c;
    color: #fff;
    line-height: 1; }
  .contact-form .wpcf7-text,
  .contact-form .wpcf7-date,
  .contact-form .wpcf7-select {
    box-sizing: border-box;
    width: 100%;
    padding: 0.5em;
    margin-top: 0.2em;
    background: #fff;
    margin-bottom: 0; }
  .contact-form .wpcf7-select {
    border: none; }
  .contact-form .wpcf7-textarea {
    box-sizing: border-box;
    max-width: 680px;
    width: 100%;
    padding: 0.5em;
    margin-top: 0.2em;
    background: #fff; }
  .contact-form .cf7-checkbox {
    display: block;
    width: fit-content;
    margin: 20px auto; }
    .contact-form .cf7-checkbox input {
      appearance: auto;
      margin: auto;
      margin-right: 5px; }
    .contact-form .cf7-checkbox .personal-info {
      text-decoration: underline;
      color: #fff; }
      .contact-form .cf7-checkbox .personal-info:hover {
        text-decoration: none; }
  .contact-form .button-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 4em; }
  .contact-form #next-button,
  .contact-form #back-input,
  .contact-form #submit-button {
    padding: 1em 1em;
    border: solid 1px #fff;
    max-width: 280px;
    width: calc(100% - 2em);
    display: block;
    margin: 1em auto;
    position: relative;
    color: #fff; }
    .contact-form #next-button:hover,
    .contact-form #back-input:hover,
    .contact-form #submit-button:hover {
      opacity: 1;
      background: #000; }
  .contact-form .link-btn {
    max-width: calc(280px - 2em); }
  .contact-form .conf-heading {
    text-align: center;
    padding: 1em 0; }
  .contact-form #confirmation-screen,
  .contact-form #thanks-screen {
    display: none; }
  .contact-form #confirm-name,
  .contact-form #confirm-huri,
  .contact-form #confirm-gender,
  .contact-form #confirm-birth,
  .contact-form #confirm-email,
  .contact-form #confirm-address,
  .contact-form #confirm-job,
  .contact-form #confirm-message {
    display: block;
    box-sizing: border-box;
    width: 70%;
    padding: 0.5em;
    min-height: 2.6em;
    background: #fff;
    color: #000; }
  .contact-form #confirm-message {
    white-space: pre-wrap; }
  .contact-form .error-message {
    display: block;
    font-size: 0.9em;
    color: #ffe40e;
    margin-top: 5px;
    margin-left: 0;
    padding: 0 5px;
    font-weight: bold; }
  .contact-form #thanks-screen .thanks-heading {
    padding-bottom: 1em; }
  .contact-form .wpcf7cp-btns {
    display: flex;
    align-items: center; }
    .contact-form .wpcf7cp-btns .wpcf7-form-control {
      display: block;
      width: calc(48% - 2em);
      max-width: 250px;
      margin: 1em auto;
      padding: 1em;
      background: #000;
      color: #fff;
      margin-bottom: 1em;
      cursor: pointer;
      transition: 0.2s; }
      .contact-form .wpcf7cp-btns .wpcf7-form-control:hover {
        background: #fff;
        color: #000; }
  .contact-form #cf7-thanks {
    text-align: center; }
    .contact-form #cf7-thanks h2 {
      margin-bottom: 1em; }
  .contact-form #cf7-confirm {
    display: none; }
    .contact-form #cf7-confirm h2 {
      margin-bottom: 1em; }
    .contact-form #cf7-confirm ul {
      display: flex;
      border: solid 1px #fff;
      border-right: 0px; }
      .contact-form #cf7-confirm ul li {
        width: 6em;
        padding: .5em;
        text-align: left;
        border-right: solid 1px #fff; }
        .contact-form #cf7-confirm ul li:last-child {
          width: calc(100% - 6em); }


.line-entry {
  padding: 1em;
  border: solid 2px #06c755;
  background: #fff;
  width: calc(100% - 4px);
  margin: 2em auto 2em;
  cursor: pointer;
  position: relative;
  transition-duration: .3s;
  border-radius: 8px;
}
.line-entry a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
  .line-entry .line-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
    .line-entry .line-flex img {
      width: 50px;
      height: auto; }
    .line-entry .line-flex p {
      width: calc(100% - 100px - 2em);
      margin: 0 1em;
      color: #000;
      text-align: left; }
  .line-entry .line-min-link {
    display: block;
    width: 50px;
    height: 50px;
    background: #06c755;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px; }
    .line-entry .line-min-link img {
      transition-duration: .3s;
      width: 15px; }
  .line-entry:hover {
    opacity: .8; }
    .line-entry:hover .line-min-link img {
      transform: translateX(5px); }