/* ============================================
   Kaneko Construction Co., Ltd.
   Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Primary Colors */
  --color-primary: #1a2a4a;
  --color-primary-light: #243661;
  --color-primary-dark: #0f1a30;

  /* Accent Colors */
  --color-accent: #e8871e;
  --color-accent-light: #f0a04b;
  --color-accent-dark: #c06e10;

  /* Neutrals */
  --color-white: #ffffff;
  --color-off-white: #f5f6f8;
  --color-light-gray: #e8eaef;
  --color-gray: #8a92a0;
  --color-dark-gray: #4a5568;
  --color-text: #2d3748;
  --color-text-light: #606a7b;
  --color-black: #111827;

  /* Functional */
  --color-success: #38a169;
  --color-error: #e53e3e;
  --color-overlay: rgba(15, 26, 48, 0.72);
  --color-overlay-light: rgba(15, 26, 48, 0.55);

  /* Typography */
  --font-primary: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-heading: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.8;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;
  --container-padding: 0 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-scroll: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Header */
  --header-height: 90px;
  --header-height-scrolled: 64px;

  /* Z-index */
  --z-back-to-top: 90;
  --z-header: 100;
  --z-hamburger: 110;
  --z-mobile-nav: 105;
  --z-overlay: 200;
}


/* ============================================
   Reset & Base
   ============================================ */

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: var(--line-height-base);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.page-loaded body {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}


/* ============================================
   Utility / Layout
   ============================================ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-header .en-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.section-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

.bg-light {
  background-color: var(--color-off-white);
}

.bg-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--color-white);
}

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


/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 30, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}


/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-light-gray);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: var(--z-hamburger);
}

.logo img {
  height: 48px;
  transition: height var(--transition-base);
}

.header.scrolled .logo img {
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.logo-text .company-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.logo-text .company-name-en {
  font-size: 0.65rem;
  color: var(--color-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list a {
  display: block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-primary);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-list .btn {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav-list .btn::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  z-index: var(--z-hamburger);
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all var(--transition-base);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  max-width: 860px;
}

.hero-content .sub-title {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

/* Hero animate – triggered by JS */
.hero.animate .hero-content .sub-title,
.hero.animate .hero-content h1,
.hero.animate .hero-content p,
.hero.animate .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-scroll-indicator span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}


/* ============================================
   Page Hero (Subpages)
   ============================================ */

.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero .hero-bg {
  background-attachment: fixed;
  transform: none !important;
}

.page-hero .hero-overlay {
  background: var(--color-overlay-light);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.page-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.page-hero-content .en-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================
   Scroll Fade Animation
   ============================================ */

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-scroll),
              transform var(--transition-scroll);
}

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

.scroll-fade.delay-1 {
  transition-delay: 0.1s;
}

.scroll-fade.delay-2 {
  transition-delay: 0.2s;
}

.scroll-fade.delay-3 {
  transition-delay: 0.3s;
}

.scroll-fade.delay-4 {
  transition-delay: 0.4s;
}


/* ============================================
   Feature Cards
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform var(--transition-base);
}

.feature-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}


/* ============================================
   Service Cards
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.service-card .card-image .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.service-card .card-body {
  padding: 28px;
}

.service-card .card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card .card-body p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card .card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}

.service-card .card-body .card-link:hover {
  gap: 12px;
}


/* ============================================
   Counter / Stats Section
   ============================================ */

.counter-section {
  background: var(--color-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5" x="0" y="0" width="20" height="20"/></svg>');
  background-size: 40px 40px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  color: var(--color-white);
}

.counter-item .counter-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-number .suffix {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 4px;
}

.counter-item .counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}


/* ============================================
   Company Info Table
   ============================================ */

.company-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.company-info-table th,
.company-info-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-light-gray);
  font-size: 0.95rem;
  vertical-align: top;
}

.company-info-table th {
  width: 200px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-off-white);
  white-space: nowrap;
}

.company-info-table td {
  color: var(--color-text);
  line-height: 1.8;
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
  border-bottom: none;
}


/* ============================================
   Contact Form
   ============================================ */

.contact-section {
  padding: var(--section-padding);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-gray);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.required-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-error);
  border-radius: 3px;
  line-height: 1.4;
}

.optional-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray);
  background: var(--color-light-gray);
  border-radius: 3px;
  line-height: 1.4;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-off-white);
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(232, 135, 30, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%238a92a0" d="M6 8L0 0h12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.form-submit {
  text-align: center;
  margin-top: 12px;
}

.form-submit .btn {
  min-width: 240px;
}

/* Contact Info Box */
.contact-info-box {
  padding: 0;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item .info-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-item .info-content p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
}

.contact-info-item .info-content a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-info-item .info-content a:hover {
  color: var(--color-accent-dark);
}


/* ============================================
   Google Maps
   ============================================ */

.map-section {
  padding: 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
  transition: filter var(--transition-base);
}

.map-container:hover iframe {
  filter: grayscale(0%);
}


/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.cta-section .hero-bg {
  background-attachment: fixed;
  transform: none !important;
}

.cta-section .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 42, 74, 0.9),
    rgba(15, 26, 48, 0.85)
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.cta-section h2,
.cta-section p,
.cta-section a {
  color: var(--color-white) !important;
}

.cta-section .btn {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
}

.cta-section .btn:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 135, 30, 0.35);
}

.cta-section .btn-outline {
  background: transparent;
  border-color: var(--color-white) !important;
}

.cta-section .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary) !important;
}

.cta-content h2 {
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-phone .phone-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1px;
}


/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-about .footer-logo img {
  height: 40px;
}

.footer-about .footer-logo .company-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-info .icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
}

.footer-social a.instagram:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-sns h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.footer-sns .sns-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-sns .sns-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-sns .sns-link .sns-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-sns .sns-link .sns-icon.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}


/* ============================================
   Back to Top
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: var(--z-back-to-top);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}


/* ============================================
   Responsive — Mobile (768px)
   ============================================ */

/* Mobile background-attachment fix (iOS doesn't support fixed) */
@media (max-width: 768px) {
  .page-hero .hero-bg,
  .cta-section .hero-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --header-height: 70px;
    --header-height-scrolled: 60px;
  }

  /* Typography Scale */
  h1 { font-size: 1.8rem !important; }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Header Mobile */
  .hamburger {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 20px) 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-mobile-nav);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-list a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-light-gray);
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list .btn {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
  }

  /* Mobile Menu Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-mobile-nav) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero Mobile */
  .hero {
    min-height: 500px;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Page Hero Mobile */
  .page-hero {
    height: 240px;
    margin-top: var(--header-height);
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  /* Grids Mobile */
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .feature-card {
    padding: 36px 28px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .counter-item .counter-number {
    font-size: 2.4rem;
  }

  /* Company Info Table */
  .company-info-table,
  .company-info-table tbody,
  .company-info-table tr,
  .company-info-table th,
  .company-info-table td {
    display: block;
  }

  .company-info-table tr {
    margin-bottom: 0;
  }

  .company-info-table th {
    width: 100%;
    padding: 14px 18px 6px;
    font-size: 0.85rem;
  }

  .company-info-table td {
    padding: 6px 18px 14px;
  }

  /* Contact */
  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
    background-attachment: scroll;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-phone .phone-number {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Map */
  .map-container {
    height: 280px;
  }

  /* Back to Top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}


/* ============================================
   Responsive — Small Mobile
   ============================================ */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .counter-item .counter-number {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}


/* ============================================
   Header Phone CTA Button
   ============================================ */

.header-tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-tel-btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 135, 30, 0.3);
}

.header-tel-btn::after {
  display: none;
}

/* ============================================
   Fixed Right Sidebar (TEL & Instagram)
   ============================================ */

.fixed-right-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 91;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fixed-right-bar a,
.fixed-right-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: default;
}

.fixed-right-bar .fixed-tel {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md) 0 0 0;
  cursor: default;
  pointer-events: none;
}

.fixed-right-bar .fixed-ig {
  background: linear-gradient(180deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
  border-radius: 0 0 0 var(--radius-md);
  cursor: pointer;
  pointer-events: auto;
}

.fixed-right-bar .fixed-ig:hover {
  opacity: 0.85;
  padding-right: 18px;
}

@media (max-width: 768px) {
  .fixed-right-bar {
    display: none;
  }
}


/* Header Instagram Link (deprecated - kept for compatibility) */
.header-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-ig-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.header-ig-btn::after {
  display: none;
}


/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card .quote-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-card .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-light-gray);
}

.testimonial-card .quote-author .author-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-card .quote-author .author-info .author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card .quote-author .author-info .author-detail {
  font-size: 0.8rem;
  color: var(--color-gray);
}


/* ============================================
   Flow Section
   ============================================ */

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.flow-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.flow-step .step-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.flow-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.flow-step:hover .step-icon {
  transform: scale(1.1);
}

.flow-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.flow-step .flow-arrow {
  position: absolute;
  top: 60px;
  right: -16px;
  color: var(--color-accent);
  font-size: 1.2rem;
  z-index: 2;
}


/* ============================================
   News List
   ============================================ */

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: background var(--transition-fast);
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item .news-date {
  font-size: 0.85rem;
  color: var(--color-gray);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100px;
}

.news-item .news-category {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-item .news-category.cat-info {
  background: var(--color-primary);
  color: var(--color-white);
}

.news-item .news-category.cat-works {
  background: var(--color-accent);
  color: var(--color-white);
}

.news-item .news-category.cat-recruit {
  background: var(--color-success);
  color: var(--color-white);
}

.news-item .news-title {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.news-item .news-title a {
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.news-item .news-title a:hover {
  color: var(--color-accent);
}


/* ============================================
   Floating CTA Bar (Mobile Only)
   ============================================ */

.floating-cta {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 12px 16px;
    align-items: center;
    justify-content: center;
    z-index: 89;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }

  .floating-cta a {
    display: block;
    text-align: center;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background var(--transition-fast);
  }

  .floating-cta a:hover {
    background: var(--color-accent-dark);
  }
}

.floating-cta-spacer {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta-spacer {
    display: block;
    height: 60px;
  }
}


/* ============================================
   Area Section
   ============================================ */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.area-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.area-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.area-tag.primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
}


/* ============================================
   Service Image Cards (index.html)
   ============================================ */

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  color: var(--color-accent-dark);
}


/* ============================================
   Works Grid (施工事例)
   ============================================ */

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.works-grid .service-card {
  cursor: default;
}


/* ============================================
   Responsive — New Components (Tablet)
   ============================================ */

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .flow-step .flow-arrow {
    display: none;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-tel-btn {
    display: none;
  }
}


/* ============================================
   Responsive — New Components (Mobile)
   ============================================ */

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

  .testimonial-card {
    padding: 28px 24px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 0;
  }

  .flow-step .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    margin: 0;
    flex-shrink: 0;
  }

  .flow-step .flow-arrow {
    display: none;
  }

  .flow-step .step-number {
    margin-bottom: 4px;
  }

  /* Flow content wrapper — takes remaining space on mobile flex */
  .flow-content {
    flex: 1;
    min-width: 0;
  }

  /* Improve feature-card (used for flow steps) on mobile */
  .feature-card {
    padding: 20px 16px !important;
  }

  .feature-card .icon {
    font-size: 2rem !important;
    margin-bottom: 10px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-item .news-date {
    min-width: auto;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
  }

  .area-tags {
    gap: 8px;
  }

  .area-tag {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}


/* ============================================
   Print Styles
   ============================================ */

@media print {
  .header,
  .hero,
  .page-hero,
  .back-to-top,
  .cta-section,
  .hamburger,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    opacity: 1 !important;
  }

  .section {
    padding: 20px 0;
  }

  .scroll-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}
