html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ffffff;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");

  .gida-lp {
    --background: #ffffff;
    --primary: #1f3a2f;
    --accent: #b89b5e;
    --light: #f7f8f5;
    --text: #222222;
    margin: 0;
    overflow: hidden;
    background: var(--background);
    color: var(--text);
    font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
  }

  .gida-lp *,
  .gida-lp *::before,
  .gida-lp *::after {
    box-sizing: border-box;
  }

  .gida-lp a {
    color: inherit;
    text-decoration: none;
  }

  .gida-lp img {
    display: block;
    max-width: 100%;
  }

  .gg-container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
  }

  .gg-section {
    padding-block: clamp(128px, 15vw, 220px);
  }

  .gg-eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .gg-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 900ms ease, transform 900ms ease;
  }

  .gg-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .gg-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(31, 58, 47, 0.1);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
  }

  .gg-header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 80px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gg-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .gg-brand-text {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .gg-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 4px;
    overflow: hidden;
    border: 1px solid rgba(184, 155, 94, 0.35);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(31, 58, 47, 0.08);
  }

  .gg-logo-mark.gg-logo-large {
    width: 96px;
    height: 96px;
    padding: 8px;
  }

  .gg-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .gg-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(34, 34, 34, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
  }

  .gg-nav a {
    transition: color 200ms ease;
  }

  .gg-nav a:hover {
    color: var(--primary);
  }

  .gg-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding-top: 80px;
    background: #fff;
    background-image:
      linear-gradient(115deg, transparent 0%, transparent 45%, rgba(184, 155, 94, 0.16) 45.1%, rgba(184, 155, 94, 0.16) 45.22%, transparent 45.32%),
      linear-gradient(65deg, transparent 0%, transparent 70%, rgba(184, 155, 94, 0.12) 70.1%, rgba(184, 155, 94, 0.12) 70.22%, transparent 70.32%);
  }

  .gg-hero-art {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(1060px, 118vw);
    transform: translate(-50%, -50%);
    opacity: 0.16;
    pointer-events: none;
  }

  .gg-hero-inner {
    position: relative;
    z-index: 1;
    padding-block: 56px;
    text-align: center;
  }

  .gg-hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .gg-hero h1 {
    max-width: 896px;
    margin: 0 auto;
    color: var(--primary);
    font-size: clamp(2.5rem, 6.2vw, 4.5rem);
    font-weight: 600;
    line-height: 1.16;
  }

  .gg-hero-copy {
    max-width: 672px;
    margin: 24px auto 0;
    color: rgba(34, 34, 34, 0.7);
    font-size: 1.125rem;
    line-height: 2.05;
  }

  .gg-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }

  .gg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding-inline: 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
  }

  .gg-button-primary {
    background: var(--primary);
    color: #fff !important;
  }

  .gg-button-primary:visited,
  .gg-button-primary:hover,
  .gg-button-primary:focus {
    color: #fff !important;
  }

  .gg-button-primary:hover {
    background: #172c24;
  }

  .gg-button-outline {
    border-color: rgba(31, 58, 47, 0.25);
    background: #fff;
    color: var(--primary);
  }

  .gg-button-outline:hover {
    border-color: var(--accent);
  }

  .gg-button-gold {
    height: 64px;
    padding-inline: 48px;
    background: var(--accent);
    color: #fff !important;
    font-size: 1rem;
  }

  .gg-button-gold:visited,
  .gg-button-gold:hover,
  .gg-button-gold:focus {
    color: #fff !important;
  }

  .gg-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1024px;
    margin: 40px auto 0;
  }

  .gg-luxury-card {
    padding: 20px 24px;
    border: 1px solid rgba(31, 58, 47, 0.1);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
      radial-gradient(circle at top left, rgba(184, 155, 94, 0.14), transparent 34%);
    box-shadow: 0 28px 80px rgba(31, 58, 47, 0.1);
    backdrop-filter: blur(4px);
  }

  .gg-stat-label {
    margin: 0;
    color: rgba(34, 34, 34, 0.58);
    font-size: 0.875rem;
    font-weight: 600;
  }

  .gg-stat-value {
    margin: 8px 0 0;
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 600;
  }

  .gg-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
  }

  .gg-philosophy {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
  }

  .gg-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.045);
    font-size: clamp(11rem, 34vw, 30rem);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }

  .gg-center {
    text-align: center;
  }

  .gg-section-title {
    margin: 20px 0 0;
    color: var(--primary);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.35;
  }

  .gg-philosophy .gg-section-title,
  .gg-recruit .gg-section-title {
    color: #fff;
  }

  .gg-philosophy-panel {
    max-width: 896px;
    margin: 64px auto 0;
    padding: 56px 64px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    text-align: left;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(4px);
  }

  .gg-rich-text {
    display: grid;
    gap: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 2.35;
  }

  .gg-rich-text p,
  .gg-body-copy,
  .gg-card p,
  .gg-message-copy p {
    margin: 0;
  }

  .gg-philosophy-closing {
    max-width: 768px;
    margin: 64px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.7;
  }

  .gg-card {
    height: 100%;
    border: 1px solid rgba(31, 58, 47, 0.1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(31, 58, 47, 0.09);
  }

  .gg-card-content {
    padding: 28px;
  }

  .gg-number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 80px;
  }

  .gg-number-card {
    position: relative;
    overflow: hidden;
    padding-block: 48px;
    text-align: center;
    transition: transform 500ms ease, box-shadow 500ms ease;
  }

  .gg-number-card:hover,
  .gg-business-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 38px 100px rgba(31, 58, 47, 0.16);
  }

  .gg-number-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 96px;
    height: 1px;
    transform: translateX(-50%);
    background: rgba(184, 155, 94, 0.6);
  }

  .gg-number-value {
    margin: 0;
    color: var(--primary);
    font-size: clamp(3.75rem, 7vw, 4.5rem);
    font-weight: 600;
  }

  .gg-number-label {
    margin: 24px 0 0;
    color: rgba(34, 34, 34, 0.58);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .gg-numbers-note {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    max-width: 1024px;
    margin: 96px auto 0;
    padding: 48px;
    border-radius: 10px;
    background: var(--light);
  }

  .gg-numbers-note-title {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    line-height: 1.8;
  }

  .gg-body-copy {
    color: rgba(34, 34, 34, 0.7);
    font-size: 1rem;
    line-height: 2.2;
  }

  .gg-business-intro {
    max-width: 768px;
    margin-inline: auto;
    text-align: center;
  }

  .gg-business-lead {
    margin: 32px 0 0;
    color: rgba(34, 34, 34, 0.62);
    line-height: 2;
  }

  .gg-business-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 80px;
  }

  .gg-business-card {
    transition: transform 500ms ease, box-shadow 500ms ease;
  }

  .gg-business-card .gg-card-content {
    min-height: 520px;
    display: flex;
    flex-direction: column;
  }

  .gg-business-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gg-business-index {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .gg-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--light);
    color: var(--primary);
    transition: color 300ms ease, background 300ms ease;
  }

  .gg-business-card:hover .gg-icon-box {
    background: var(--primary);
    color: #fff;
  }

  .gg-business-card h3 {
    margin: 40px 0 0;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .gg-business-brand {
    display: inline-flex;
    width: fit-content;
    margin: 16px 0 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(184, 155, 94, 0.5);
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
  }

  .gg-business-body {
    margin-top: 28px;
    color: rgba(34, 34, 34, 0.66);
    line-height: 2;
  }

  .gg-area-list {
    display: grid;
    gap: 8px;
    margin-top: 32px;
    color: rgba(34, 34, 34, 0.58);
    font-size: 0.75rem;
  }

  .gg-area-list span {
    padding-left: 12px;
    border-left: 1px solid rgba(184, 155, 94, 0.55);
  }

  .gg-business-closing {
    max-width: 768px;
    margin: 80px auto 0;
    text-align: center;
  }

  .gg-business-closing-title {
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.9;
  }

  .gg-business-closing p:last-child {
    margin-top: 32px;
    color: rgba(34, 34, 34, 0.68);
    line-height: 2;
  }

  .gg-light {
    background: var(--light);
  }

  .gg-timeline {
    position: relative;
    max-width: 1024px;
    margin: 96px auto 0;
  }

  .gg-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    background: rgba(184, 155, 94, 0.35);
  }

  .gg-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 88px 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }

  .gg-timeline-item:nth-child(odd) .gg-history-card {
    grid-column: 1;
    text-align: right;
  }

  .gg-timeline-item:nth-child(even) .gg-history-card {
    grid-column: 3;
  }

  .gg-history-card {
    padding: 24px;
    border: 1px solid rgba(31, 58, 47, 0.1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(31, 58, 47, 0.08);
  }

  .gg-history-year {
    margin: 0;
    color: var(--accent);
    font-size: 1.875rem;
    font-weight: 600;
  }

  .gg-history-text {
    margin: 16px 0 0;
    color: rgba(34, 34, 34, 0.78);
    font-size: 1.125rem;
    line-height: 1.65;
  }

  .gg-timeline-dot {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 16px;
    height: 16px;
    transform: translateX(-50%);
    border: 4px solid var(--light);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(184, 155, 94, 0.4);
  }

  .gg-history-closing {
    max-width: 896px;
    margin: 96px auto 0;
    padding: 48px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(31, 58, 47, 0.09);
  }

  .gg-message-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 48px;
  }

  .gg-representative-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 10px;
    background: var(--light);
    box-shadow: 0 36px 100px rgba(31, 58, 47, 0.14);
  }

  .gg-representative-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .gg-message-panel {
    padding: 48px;
    border-radius: 10px;
    background: var(--light);
  }

  .gg-message-title {
    margin: 20px 0 0;
    color: var(--primary);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.55;
  }

  .gg-message-copy {
    display: grid;
    gap: 24px;
    margin-top: 40px;
    color: rgba(34, 34, 34, 0.7);
    font-size: 1rem;
    line-height: 2.15;
  }

  .gg-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 58, 47, 0.12);
    color: rgba(34, 34, 34, 0.78);
    line-height: 2;
  }

  .gg-signature p {
    margin: 0;
  }

  .gg-signature-name {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .gg-store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 80px;
  }

  .gg-store-card {
    overflow: hidden;
  }

  .gg-store-head {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(31, 58, 47, 0.1);
    background: #fff;
  }

  .gg-store-head p {
    margin: 0;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .gg-store-head h3 {
    margin: 12px 0 0;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
  }

  .gg-store-list {
    display: grid;
    gap: 16px;
    padding: 20px;
  }

  .gg-store-link {
    display: block;
    padding: 20px;
    border: 1px solid rgba(31, 58, 47, 0.1);
    border-radius: 8px;
    background: var(--light);
    transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
  }

  .gg-store-link:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 18px 50px rgba(31, 58, 47, 0.1);
  }

  .gg-store-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .gg-store-name {
    margin: 0;
    color: var(--text);
    font-weight: 500;
  }

  .gg-store-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    color: rgba(34, 34, 34, 0.55);
    font-size: 0.875rem;
  }

  .gg-arrow {
    color: var(--accent);
    transition: transform 300ms ease;
  }

  .gg-store-link:hover .gg-arrow {
    transform: translate(2px, -2px);
  }

  .gg-recruit {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
  }

  .gg-recruit::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: rgba(184, 155, 94, 0.45);
  }

  .gg-recruit::after {
    content: "";
    position: absolute;
    right: -96px;
    top: 96px;
    width: 288px;
    height: 288px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    pointer-events: none;
  }

  .gg-recruit-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    max-width: 1152px;
    margin-inline: auto;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
  }

  .gg-recruit-copy {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 2.2;
  }

  .gg-recruit-copy p {
    margin: 0;
  }

  .gg-recruit-copy p + p {
    margin-top: 24px;
  }

  .gg-recruit-cta {
    grid-column: 1 / -1;
  }

  .gg-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .gg-company-table {
    margin-top: 48px;
    border-block: 1px solid rgba(31, 58, 47, 0.12);
  }

  .gg-company-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    padding-block: 20px;
    border-top: 1px solid rgba(31, 58, 47, 0.12);
  }

  .gg-company-row:first-child {
    border-top: 0;
  }

  .gg-company-row dt {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
  }

  .gg-company-row dd {
    margin: 0;
    color: rgba(34, 34, 34, 0.68);
    line-height: 1.7;
  }

  .gg-form-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    color: var(--primary);
  }

  .gg-form-head h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .gg-form {
    display: grid;
    gap: 20px;
  }

  .gg-input,
  .gg-textarea {
    width: 100%;
    border: 1px solid rgba(31, 58, 47, 0.15);
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 200ms ease;
  }

  .gg-input {
    height: 48px;
    padding-inline: 16px;
  }

  .gg-textarea {
    min-height: 144px;
    padding: 12px 16px;
    resize: vertical;
  }

  .gg-input:focus,
  .gg-textarea:focus {
    border-color: var(--accent);
  }

  .gg-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
  }

  .gg-footer {
    background: #111815;
    color: #fff;
  }

  .gg-footer-inner {
    padding-block: 56px;
  }

  .gg-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .gg-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .gg-footer-brand span {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .gg-footer-message {
    margin: 24px 0 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.7;
  }

  .gg-footer-nav {
    display: grid;
    gap: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.875rem;
  }

  .gg-footer-nav a:hover {
    color: #fff;
  }

  .gg-copyright {
    margin: 48px 0 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
  }

  .gg-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
  }

  @media (min-width: 1024px) {
    .gg-hero {
      height: 100svh;
      min-height: 0;
    }
  }

  @media (max-width: 1199px) {
    .gg-business-grid,
    .gg-store-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 900px) {
    .gg-nav {
      display: none;
    }

    .gg-number-grid,
    .gg-stats,
    .gg-business-grid,
    .gg-store-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-numbers-note,
    .gg-message-grid,
    .gg-recruit-panel,
    .gg-contact-grid {
      grid-template-columns: 1fr;
    }

    .gg-recruit-cta {
      grid-column: auto;
    }
  }

  @media (max-width: 767px) {
    .gg-container {
      width: min(100% - 40px, 1240px);
    }

    .gg-section {
      padding-block: 104px;
    }

    .gg-header-inner {
      height: 80px;
    }

    .gg-hero {
      min-height: 100svh;
    }

    .gg-hero-copy {
      font-size: 1rem;
    }

    .gg-button {
      padding-inline: 16px;
    }

    .gg-stats {
      gap: 12px;
    }

    .gg-luxury-card {
      padding: 16px;
    }

    .gg-stat-value {
      font-size: 1.875rem;
    }

    .gg-number-grid,
    .gg-business-grid,
    .gg-store-grid {
      grid-template-columns: 1fr;
    }

    .gg-philosophy-panel,
    .gg-message-panel,
    .gg-history-closing,
    .gg-recruit-panel {
      padding: 32px 24px;
    }

    .gg-numbers-note {
      padding: 32px;
    }

    .gg-timeline {
      margin-top: 80px;
    }

    .gg-timeline-line,
    .gg-timeline-dot {
      left: 20px;
    }

    .gg-timeline-item {
      display: block;
      padding-left: 56px;
    }

    .gg-timeline-item:nth-child(odd) .gg-history-card {
      text-align: left;
    }

    .gg-company-row {
      grid-template-columns: 1fr;
    }

    .gg-footer-top {
      flex-direction: column;
    }

    .gg-footer-nav {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 32px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gg-fade {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

/* Image fallback guard */
.gida-lp img {
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.gida-lp .gg-logo-mark,
.gida-lp .gg-hero-art,
.gida-lp .gg-representative-photo {
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
