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

:root {
  --cream: #f2faf4;
  --ink: #fff;
  --warm-mid: #3d8b5e;
  --gold: #52c97a;
  --rust: #27ae72;
  --light-brown: #b4e6c8;
  --off-white: #eaf7ef;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: #333;
  overflow-x: hidden;
  cursor: none;
}
img{
  max-width: 100%;
}

/* =============================
   Custom Cursor
============================= */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--warm-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.25s ease, width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* =============================
   Nav
============================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  mix-blend-mode: multiply;
}

.logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 1.6rem;
  /* letter-spacing: 0.3em; */
  color: #333;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 1; }

/* =============================
   Hero
============================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 8rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  color: #333;
}

.hero-title em {
  font-style: italic;
  color: var(--warm-mid);
}

.hero-subtitle {
  font-weight: 200;
  font-size: 1rem;
  line-height: 2;
  color: #555;
  max-width: 320px;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #333;
  color: var(--cream);
  border: none;
  padding: 1.2rem 2.5rem;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

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

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  cursor: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--ink); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeIn 1.5s 0.4s forwards;
}

/* Photo mosaic */
.photo-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
  padding: 4px;
}

.photo-block {
  position: relative;
  overflow: hidden;
  background: var(--light-brown);
  img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  }
}

.photo-block:nth-child(1) {
  grid-row: span 2;
  background: linear-gradient(135deg, #1a6b3c 0%, #27ae72 50%, #3dd68c 100%);
}
.photo-block:nth-child(2) {
  background: linear-gradient(160deg, #a8f0c6 0%, #27ae72 100%);
}
.photo-block:nth-child(3) {
  background: linear-gradient(200deg, #d0f5e0 0%, #1a6b3c 100%);
}
.photo-block:nth-child(4) {
  grid-column: span 2;
  background: linear-gradient(120deg, #27ae72 0%, #52c97a 60%, #1abc6e 100%);
}

/* Grain texture overlay */
.photo-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 150px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.photo-block:nth-child(1)::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}
.photo-block:nth-child(4)::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  top: 50%;
  left: 30%;
}

/* Hero label & scroll hint */
.hero-label {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1.5s 1.2s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--warm-mid);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rust);
  animation: slideRight 2s 2s infinite;
}

/* =============================
   Services
============================= */
.section-services {
  padding: 10rem 8rem 2rem;
  background: #fff;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: 'PHOTO';
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20vw;
  font-weight: 200;
  opacity: 0.04;
  top: -5%;
  right: -5%;
  color: var(--cream);
  pointer-events: none;
  line-height: 1;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: 1.3;
  /* margin-bottom: 5rem; */
  /* max-width: 600px; */
  color: #333;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4rem 0 0;
}

.service-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.5s;
  overflow: hidden;
}

.service-card:hover {
  /* background: #162618; */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s;
}

.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ddd;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.5s;
}

.service-card:hover .service-num {
  color: rgba(122,171,82,1);
}

.service-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  color: #333;
}

.service-desc {
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 2;
  color: #333;
}

/* =============================
   Gallery Marquee
============================= */
.section-gallery {
  padding: 6rem 0;
  background: var(--ink);
  overflow: hidden;
}

.gallery-label-row {
  padding: 0 8rem;
  margin-bottom: 3rem;
}

.marquee-wrap {
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 340px;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.marquee-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.marquee-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.marquee-item:hover .marquee-item-inner {
  transform: scale(1.04);
}

.marquee-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: opacity 0.4s;
}

.marquee-item:hover .marquee-item-label {
  opacity: 1;
}
/* 
.mi-1 { background: linear-gradient(135deg, #1a6b3c 0%, #3dd68c 100%); }
.mi-2 { background: linear-gradient(160deg, #0d4f2e 0%, #27ae72 100%); }
.mi-3 { background: linear-gradient(180deg, #52c97a 0%, #1a6b3c 100%); }
.mi-4 { background: linear-gradient(120deg, #27ae72 0%, #d0f5e0 100%); }
.mi-5 { background: linear-gradient(200deg, #1abc6e 0%, #0d4f2e 100%); }
.mi-6 { background: linear-gradient(150deg, #a8f0c6 0%, #27ae72 100%); }
.mi-7 { background: linear-gradient(135deg, #3dd68c 0%, #1c2e1e 100%); }
.mi-8 { background: linear-gradient(170deg, #0d4f2e 0%, #52c97a 100%); }

.mi-1 .marquee-item-inner::after,
.mi-2 .marquee-item-inner::after,
.mi-3 .marquee-item-inner::after,
.mi-4 .marquee-item-inner::after,
.mi-5 .marquee-item-inner::after,
.mi-6 .marquee-item-inner::after,
.mi-7 .marquee-item-inner::after,
.mi-8 .marquee-item-inner::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  inset: 15%;
}

.mi-2 .marquee-item-inner::after { inset: 20%; border-radius: 0; transform: rotate(20deg); }
.mi-4 .marquee-item-inner::after { inset: 25% 10%; border-radius: 4px; transform: rotate(-10deg); }
.mi-6 .marquee-item-inner::after { inset: 10% 30%; border-radius: 0; transform: rotate(45deg); } */

/* =============================
   Process
============================= */
.section-process {
  padding: 8rem 8rem;
  background: var(--off-white);
}

.process-header {
  /* margin-bottom: 4rem; */
}

.step-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.step {
  counter-increment: steps;
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-brown);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: padding-left 0.3s;
}

.step:hover { padding-left: 0.5rem; }

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--rust);
  padding-top: 0.4rem;
}

.step-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--warm-mid);
  font-weight: 300;
}

/* =============================
   Pricing
============================= */
.section-pricing {
  padding: 10rem 8rem;
  background: var(--cream);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* margin-bottom: 5rem; */
}

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

.pricing-card {
  background: var(--off-white);
  padding: 3.5rem 3rem;
  position: relative;
  transition: transform 0.4s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  /* background: var(--ink);
  color: var(--cream); */
}

.pricing-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.pricing-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Space Mono', monospace;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.5rem;
  color: var(--rust);
}

.pricing-card.featured .pricing-price {
  /* color: var(--gold); */
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.pricing-features li {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  /* color: var(--warm-mid); */
  padding-left: 1.2rem;
  position: relative;
}

.pricing-card.featured .pricing-features li {
  /* color: rgba(245,240,232,0.6); */
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =============================
   Testimonial
============================= */
.section-testimonial {
  padding: 8rem;
  background: var(--rust);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-testimonial::before {
  content: '"';
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40vw;
  font-weight: 200;
  opacity: 0.06;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

/* =============================
   CTA / Contact
============================= */
.section-cta {
  padding: 10rem 8rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta-title em {
  font-style: italic;
  color: var(--warm-mid);
  display: block;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  color: var(--warm-mid);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light-brown);
  padding: 0.8rem 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rust);
}

.form-field textarea {
  resize: none;
  height: 80px;
}

/* =============================
   Footer
============================= */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-decoration: none;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.3);
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.footer-social a {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}

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

/* =============================
   Scroll Effects — initial states
============================= */

/* Blur title: starts invisible, GSAP handles animation */
.js-blur-title {
  opacity: 0;
}

/* Mask reveal: clip-path closed at start */
.js-mask-reveal {
  clip-path: inset(0 50% 0 50%);
}

/* Parallax section */
.js-parallax-section {
  position: relative;
  overflow: hidden;
}

.js-parallax-bg {
  position: absolute;
  inset: -20% 0;
  background: inherit;
  z-index: 0;
  will-change: transform;
}

.js-parallax-section > *:not(.js-parallax-bg) {
  position: relative;
  z-index: 1;
}

/* Marquee items: mask reveal */
.marquee-item.js-mask-item {
  clip-path: inset(0 50% 0 50%);
}

/* =============================
   Animations & Keyframes
============================= */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

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

@keyframes slideRight {
  from { left: -100%; }
  to   { left: 100%; }
}

/* =============================
   Scroll Reveal
============================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.25s; }
.reveal-delay-3 { transition-delay: 0.4s; }


/* =============================
   Responsive — スマホ (max-width: 768px)
============================= */
@media (max-width: 768px) {

  /* カスタムカーソル非表示 */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .btn-primary, .btn-ghost,
  .form-field input,
  .form-field select,
  .form-field textarea { cursor: auto; }

  /* Nav */
  nav {
    padding: 1.5rem 1.5rem;
  }
  .nav-links { display: none; }
  .logo { font-size: 1.2rem; }

  /* Hero — 1カラム縦積み */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 50vw;
    min-height: auto;
  }
  .hero-left {
    padding: 7rem 1.5rem 2rem;
  }
  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: 1;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-right {
    position: relative;
    height: 50vw;
  }
  .hero-img-wrap { position: absolute; inset: 0; }
  .scroll-hint { display: none; }
  .hero-label { display: none; }

  /* Services */
  .section-services { padding: 4rem 1.5rem; }
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 3rem;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }
  .service-name { font-size: 1.2rem; }

  /* Gallery */
  .section-gallery { padding: 3rem 0; }
  .gallery-label-row { padding: 0 1.5rem; margin-bottom: 1.5rem; }
  .marquee-item { width: 240px; height: 170px; }

  /* Process */
  .section-process { padding: 4rem 1.5rem; }

  /* Pricing */
  .section-pricing { padding: 4rem 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2.5rem 2rem; }

  /* Testimonial */
  .section-testimonial { padding: 4rem 1.5rem; }
  .testimonial-text { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* CTA / Contact */
  .section-cta {
    padding: 4rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .footer-social { justify-content: center; }

  /* section-label margin */
  .section-label { margin-bottom: 1.5rem; }
}