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

/* ============================================
   CSS Variables
   ============================================ */
   /*
Theme Name: Lightning Child
Template: lightning
*/
:root {
  /* Colors（子テーマ style.css と同一トークン名・値で整合） */
  --color-main: #004c9b;
  --color-logo-blue: #251f9d;
  --color-accent: #e6b422;
  --color-accent-deep: #ea580c;
  --color-bg: #f4f7fb;
  --color-text: #222222;
  --color-text-strong: #0f172a;
  --color-muted: #666666;
  --color-white: #ffffff;
  --color-black: #111928;
  --color-neutral-200: #e0e0e3;
  --color-neutral-400: #a1a1a1;
  --color-neutral-500: #808080;
  --color-neutral-600: #525252;
  --color-neutral-700: #3D3D3D;
  --color-neutral-800: #262626;
  
  /* Spacing */
  --spacing: 0.25rem;
  --header-height: 72px;
  --container-width: 1120px;
  
  /* Typography */
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
  --font-serif: "Zen Old Mincho", serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-4xl: 2.25rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions & motion */
  --transition-base: 0.15s ease;
  --transition-slow: 0.3s ease;
  --ease-motion-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fade-up: 0.92s;
  --section-padding-y: 36px;
  --section-padding-y-sp: 20px;
  --text-heading-page: clamp(1.5rem, 3vw, 1.875rem);
  --line-height-body: 1.75;
  --line-height-tight: 1.45;
  --radius-button: 18px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* 子テーマ style.css と揃え、ヘッダー分のスクロールオフセット（アンカー用） */
  scroll-padding-top: calc(var(--header-height) + 12px + env(safe-area-inset-top, 0px));
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: calc(64px + 12px + env(safe-area-inset-top, 0px));
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================
   Container
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-neutral-200);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  position: relative;
}

@media (max-width: 640px) {
  .header__inner {
    height: 64px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-main);
  z-index: 10;
}

@media (max-width: 640px) {
  .header__logo {
    font-size: 16px;
  }
  
  .header__logo-img {
    height: 36px;
  }
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.header__nav-link {
  position: relative;
  padding-bottom: 4px;
  color: var(--color-muted);
  font-weight: 500;
  transition: color var(--transition-base);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-main), var(--color-accent));
  transition: width var(--transition-base);
}

.header__nav-link:hover {
  color: var(--color-main);
}

.header__nav-link:hover::after {
  width: 100%;
}

/* Header Menu Button (Desktop) */
.header__menu-button {
  display: none;
}

@media (min-width: 961px) {
  .header__menu-button {
    display: block;
  }
}

/* Drawer Toggle Button (Mobile) */
.header__open-button {
  display: none;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-main);
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.header__open-button:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.header__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}

.header__icon-menu,
.header__icon-close {
  position: absolute;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.header__icon-menu[data-icon="closed"] {
  opacity: 1;
  transform: rotate(0deg);
}

.header__icon-close[data-icon="opened"] {
  opacity: 0;
  transform: rotate(90deg);
}

.header__open-button[aria-expanded="true"] .header__icon-menu[data-icon="closed"] {
  opacity: 0;
  transform: rotate(90deg);
}

.header__open-button[aria-expanded="true"] .header__icon-close[data-icon="opened"] {
  opacity: 1;
  transform: rotate(0deg);
}

/* Drawer Menu */
.header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--color-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-sizing: border-box;
}

.header__drawer[open] {
  transform: translateX(0);
}

.header__drawer::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.header__drawer-body {
  padding: calc(var(--header-height) + 20px) 24px 24px;
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .header__drawer-body {
    padding: calc(64px + 20px) 20px 20px;
  }
}

.header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__drawer-item {
  margin: 0;
}

.header__drawer-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base), color var(--transition-base);
}

@media (max-width: 640px) {
  .header__drawer-link {
    padding: 10px 14px;
    font-size: 15px;
  }
  
  .header__drawer-button .button {
    font-size: 13px;
    padding: 10px 18px;
  }
}

.header__drawer-link:hover,
.header__drawer-link:focus {
  background-color: var(--color-bg);
  color: var(--color-main);
}

.header__drawer-button {
  margin-top: 16px;
}

.header__drawer-button .button {
  width: 100%;
  justify-content: center;
}

@media (max-width: 960px) {
  .header__nav {
    display: none;
  }
  
  .header__menu-button {
    display: none;
  }
  
  .header__open-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .header {
    border-bottom-width: 1px;
  }
  
  .header__open-button {
    padding: 6px;
  }
  
  .header__toggle-icon {
    width: 20px;
    height: 20px;
  }
  
  .header__toggle-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 68vh;
  color: var(--color-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(0, 26, 77, 0.90), rgba(0, 76, 155, 0.65)),
    url("images/originals/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.025);
  transform-origin: center;
  z-index: -1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 16px 72px;
  width: 100%;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.hero__title {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.3;
  font-weight: 700;
}

.hero__subtitle {
  margin-bottom: 24px;
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
}

.hero__badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.55);
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__note {
  font-size: 11px;
  color: #cbd5f5;
  margin-top: 16px;
}

.hero__thumbs {
  position: absolute;
  right: max(16px, calc(50% - var(--container-width) / 2 + 16px));
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 360px;
}

.hero__thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.3);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
  background: #0f172a;
  transition: transform var(--transition-base);
}

.hero__thumb:hover {
  transform: translateY(-2px);
}

.hero__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.hero__thumb-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  font-size: 10px;
  color: #e5e7eb;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 960px) {
  .hero {
    min-height: 520px;
  }
  
  .hero__thumbs {
    position: static;
    margin-top: 28px;
    max-width: none;
  }
  
  .hero__content {
    max-width: 100%;
  }
  
  .hero__title {
    font-size: clamp(24px, 5vw, 36px);
  }
  
  .hero__subtitle {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 480px;
  }
  
  .hero__inner {
    padding-top: 64px;
    padding-bottom: 52px;
  }
  
  .hero__thumb img {
    height: 120px;
  }
  
  .hero__title {
    font-size: clamp(20px, 6vw, 28px);
    margin: 16px 0 10px;
  }
  
  .hero__subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .hero__badges {
    margin-bottom: 20px;
  }
  
  .hero__badge {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .hero__actions .button {
    width: 100%;
    justify-content: center;
  }
  
  .hero__note {
    font-size: 10px;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  .hero__thumbs {
    gap: 8px;
  }
  
  .hero__thumb {
    border-radius: 10px;
  }
  
  .hero__thumb-label {
    font-size: 9px;
    padding: 2px 6px;
  }
}

/* ============================================
   Buttons
   ============================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--color-main), #0077c8);
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.55);
  opacity: 1;
}

.button--outline {
  background: transparent;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #e5e7eb;
}

.button--outline:hover {
  background: rgba(15, 23, 42, 0.6);
  opacity: 1;
}

@media (max-width: 640px) {
  .button {
    font-size: 13px;
    padding: 10px 18px;
  }
  
  .button--primary {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
  }
  
  .button--primary:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.4);
  }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 72px 0;
}

.section--muted {
  background: var(--color-bg);
}

.section__header {
  margin-bottom: 32px;
  text-align: center;
}

.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-main);
  font-weight: 600;
  margin-bottom: 8px;
}

.section__title {
  margin: 8px 0;
  font-size: 22px;
  font-weight: 700;
}

.section__lead {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section__header {
    margin-bottom: 24px;
  }
  
  .section__eyebrow {
    font-size: 11px;
  }
  
  .section__title {
    font-size: 20px;
    margin: 6px 0;
  }
  
  .section__lead {
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.6;
  }
  
  .section__lead br {
    display: none;
  }
}

/* ============================================
   Business Section
   ============================================ */
.business__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-neutral-200);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__image {
  border-radius: 12px;
  overflow: hidden;
  margin: -4px -4px 6px;
}

.card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-muted);
}

.card__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-accent);
}

.card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
}

.card__body {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .business__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .business__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  
  .card {
    padding: 16px;
  }
  
  .card__image img {
    height: 160px;
  }
  
  .card__title {
    font-size: 15px;
  }
  
  .card__body {
    font-size: 12px;
  }
}

/* ============================================
   Works Section
   ============================================ */
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work {
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid var(--color-neutral-200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.work:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work__image {
  height: 150px;
  overflow: hidden;
}

.work__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.work:hover .work__image img {
  transform: scale(1.1);
}

.work__body {
  padding: 10px 12px 12px;
}

.work__title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--color-text);
}

.work__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
  font-size: 11px;
  margin-bottom: 8px;
}

.work__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--color-neutral-200);
  background: #f9fafb;
  font-size: 11px;
  color: #4b5563;
}

@media (max-width: 960px) {
  .works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .works__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  
  .work__image {
    height: 140px;
  }
  
  .work__body {
    padding: 8px 10px 10px;
  }
  
  .work__title {
    font-size: 12px;
  }
  
  .work__meta {
    font-size: 10px;
  }
  
  .badge {
    font-size: 10px;
    padding: 2px 6px;
  }
}

/* ============================================
   Company Section
   ============================================ */
.company__layout {
  display: block;
  max-width: 100%;
}

.company__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-neutral-200);
  font-size: 13px;
  box-shadow: var(--shadow-md);
}

.company__table th,
.company__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-neutral-200);
  vertical-align: top;
  text-align: left;
}

.company__table th {
  width: 26%;
  background: #f9fafb;
  font-weight: 600;
  white-space: nowrap;
}

.company__table tr:last-child th,
.company__table tr:last-child td {
  border-bottom: none;
}

.company__table td {
  color: var(--color-text);
  line-height: 1.6;
}

.company__note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .company__table th {
    width: 30%;
  }
}

@media (max-width: 640px) {
  .company__table {
    font-size: 12px;
    border-radius: 12px;
  }
  
  .company__table th,
  .company__table td {
    padding: 8px 10px;
  }
  
  .company__table th {
    width: 35%;
    font-size: 11px;
    padding-right: 8px;
  }
  
  .company__table td {
    font-size: 11px;
    line-height: 1.5;
  }
  
  .company__note {
    font-size: 10px;
    margin-top: 6px;
  }
}

/* ============================================
   Contact Section
   ============================================ */
.contact__grid {
  display: block;
  max-width: 640px;
  margin: 0 auto;
}

.contact__panel {
  background: var(--color-white);
  border-radius: 18px;
  padding: 20px 20px 22px;
  border: 1px solid var(--color-neutral-200);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 4px;
}

.contact__tel {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 4px;
  color: var(--color-main);
}

.contact__tel a {
  color: inherit;
}

.contact__time {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.contact__list {
  margin: 10px 0 0;
  padding-left: 16px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}

.contact__list li + li {
  margin-top: 2px;
}

@media (max-width: 640px) {
  .contact__panel {
    padding: 16px;
    border-radius: 12px;
  }
  
  .contact__label {
    font-size: 10px;
  }
  
  .contact__tel {
    font-size: 18px;
  }
  
  .contact__time {
    font-size: 10px;
  }
  
  .contact__list {
    font-size: 11px;
    padding-left: 14px;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  margin-top: 40px;
  padding: 18px 0 24px;
  background: var(--color-neutral-800);
  color: #9ca3af;
  font-size: 11px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .footer {
    margin-top: 32px;
    padding: 16px 0 20px;
    font-size: 10px;
  }
  
  .footer__copy {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-sm {
  font-size: var(--text-sm);
}

.text-muted {
  color: var(--color-muted);
}

.inline-block {
  display: inline-block;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .footer,
  .hero__actions,
  .button {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
}
