/* =========================================================
   STYLE.CSS — Bahçeden Limonata
   Bölümler:
   1.  CSS Değişkenleri & Reset
   2.  Genel / Yardımcı
   3.  Header (Ana Sayfa)
   4.  Hero — Swiper
   5.  About Section (Ana Sayfa)
   6.  Yerli Üretim Section
   7.  Footer
   8.  Scroll-to-Top Butonu
   9.  About Sayfası
   10. Responsive (1400 → 400px)
========================================================= */


/* =========================================================
   1. CSS DEĞİŞKENLERİ & RESET
========================================================= */

:root {
  --font-main:         "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-primary:     #01673D;
  --color-accent:      #ABD271;
  --color-accent-dark: #3B896A;
  --color-text:        #27272F;
  --color-text-muted:  #8D8D99;
  --color-bg:          #F5FCF9;
  --color-white:       #FFFFFF;
  --transition-fast:   0.2s ease-out;
  --transition-base:   0.4s ease;
  --transition-slow:   0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max:     1200px;
  --container-px:      24px;
  --radius-sm:         8px;
  --radius-md:         16px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}


/* =========================================================
   2. GENEL / YARDIMCI
========================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.floating-item {
  pointer-events: none;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}


/* =========================================================
   3. HEADER (Ana Sayfa)
========================================================= */

.site-header {
  position: relative;
  width: 100%;
  height: 130px;
  z-index: 30;
}

.header-green-area {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  overflow: hidden;
  z-index: 1;
}

.header-green-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.header-inner {
  position: relative;
  z-index: 5;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-fast);
}

.main-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   4. HERO — SWIPER
========================================================= */

.hero {
  position: relative;
  z-index: 10;
  padding: 60px 0 100px;
  overflow-x: clip;
}

.hero::before {
  content: "";
  position: absolute;
  top: 200%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 125vh;
  background-image: url("../images/hero-about-bg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-left-lemons {
  position: absolute;
  left: -80px;
  top: -60px;
  width: 260px;
  pointer-events: none;
  z-index: 2;
}

.hero-right-lemons {
  position: absolute;
  right: -150px;
  top: 50px;
  width: 350px;
  pointer-events: none;
  z-index: 2;
}

.hero-swiper {
  width: 100%;
  overflow: hidden !important;
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Pasif slide — küçük, soluk, hafif bulanık */
.hero-swiper .swiper-slide {
  opacity: 0.5;
  transform: scale(0.7);
  transform-origin: center bottom;
  filter: blur(0.5px) brightness(0.9);
  transition:
    transform  var(--transition-slow),
    opacity    var(--transition-base),
    filter     var(--transition-base);
  will-change: transform, opacity, filter;
}

/* Aktif slide — öne çıkmış, gölgeli */
.hero-swiper .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1.05) !important;
  filter: none !important;
  z-index: 10 !important;
}

.bottle-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: auto;
}

.bottle-img {
  width: auto;
  height: 250px;
  margin: 0 auto 1.2rem;
  display: block;
  transition: height var(--transition-base);
  will-change: transform;
}

.hero-swiper .swiper-slide-active .bottle-img {
  height: 310px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.16));
}

.bottle-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-accent);
  margin-bottom: 4px;
  white-space: nowrap;
  transition: font-size var(--transition-base), color var(--transition-base);
}

.hero-swiper .swiper-slide-active .bottle-name {
  font-size: 28px;
  color: var(--color-accent);
}

.bottle-desc {
  font-size: 13px;
  color: #aaaaaa;
  display: block;
  transition: font-size var(--transition-base), color var(--transition-base);
}

.hero-swiper .swiper-slide-active .bottle-desc {
  font-size: 16px;
  color: var(--color-text-muted);
}


/* =========================================================
   5. ABOUT SECTION (Ana Sayfa)
========================================================= */

.about-section {
  position: relative;
  padding: 80px 0;
  z-index: 10;
  overflow-x: clip;
}

.about-lemons-right {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 210px;
  pointer-events: none;
  z-index: 1;
}

.about-leaf {
  position: absolute;
  right: 20%;
  top: 22%;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-graphic {
  max-width: 380px;
  margin-top: 20%;
  margin-inline: auto;
}

.about-circle-img {
  width: 100%;
}

.about-content {
  max-width: 440px;
  position: relative;
}

.about-decor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
}

.about-decor-line {
  display: block;
  width: 60px;
  height: 1.5px;
  background: rgba(93, 156, 73, 0.4);
}

.about-decor-icon {
  width: auto;
  height: auto;
}

.about-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6ea75a;
  margin-bottom: 0.4rem;
}

.about-title-main {
  font-size: 2.2rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.about-title-main span {
  display: block;
  font-size: 2rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.6rem;
  line-height: 1.75;
}


/* =========================================================
   6. YERLİ ÜRETİM SECTION
========================================================= */

.local-section {
  position: relative;
  z-index: 10;
  padding: 120px 0 160px;
  overflow-x: clip;
}

.local-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.local-heading {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}

.local-title {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-primary);
}

.local-title span {
  display: block;
  color: var(--color-accent);
}

.local-main-image {
  width: 100%;
  max-width: 100%;
}

.local-title-leaf {
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 2;
}

.local-title-leaf-left  { left: 70px;  top: -100px; }
.local-title-leaf-right { right: 20%;  top: -100px; }

.local-bottom-graphic {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.local-bottom-lemon  { left: 4%; }
.local-bottom-flower { right: 4%; }


/* =========================================================
   7. FOOTER
========================================================= */

.site-footer {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 3rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 2fr;
  gap: 3rem;
  align-items: flex-start;
}

.footer-col {
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.footer-underline {
  display: block;
  width: 36px;
  height: 3px;
  background-color: #94C747;
  margin-bottom: 1rem;
}

.footer-text {
  margin-bottom: 0.6rem;
  color: #8B8B99;
  line-height: 1.7;
}
.footer-text strong {
  color: #3B896A;
}


.footer-text a {
  color: #8B8B99;
  transition: opacity var(--transition-fast);
}

.footer-text a:hover {
  opacity: 0.75;
}

.footer-map-col {
  display: flex;
  flex-direction: column;
}

.map-box {
  margin-top: 0.4rem;
  width: 100%;
  height: 140px;
  background-color: #ececec;
  position: relative;
  border-radius: var(--radius-sm);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(59, 137, 106, 0.28);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker-inner {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #7bc776;
}

.footer-bottom {
  margin-top: 2.5rem;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  text-align: center;
  font-size: 0.8rem;
  padding: 0.85rem 1rem;
}


/* =========================================================
   8. SCROLL-TO-TOP BUTONU
========================================================= */

.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity      0.3s ease,
    visibility   0.3s ease,
    transform    0.3s ease,
    background-color var(--transition-fast);
  box-shadow: 0 4px 16px rgba(1, 103, 61, 0.25);
}

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

.scroll-top-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1, 103, 61, 0.35);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   9. ABOUT SAYFASI
========================================================= */

/* Bg wrapper — dalgalı arka plan */
.about-bg-wrapper {
  position: relative;
  width: 100%;
  background-image: url('../images/about-header-bg1.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}

/* Animasyonlu limon */
.about-header-lemons {
  position: absolute;
  right: 6%;
  top: 20%;
  width: 450px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  animation: lemonFloat 3.2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes lemonFloat {
  0%   { transform: translateY(0px)   rotate(0deg); }
  30%  { transform: translateY(-16px) rotate(4deg); }
  65%  { transform: translateY(-8px)  rotate(-3deg); }
  100% { transform: translateY(0px)   rotate(0deg); }
}

/* About Header — sadece nav */
.about-header {
  position: relative;
  z-index: 10;
  width: 100%;
}

.about-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-logo img {
  width: auto;
  height: auto;
  display: block;
  max-height: 80px;
}

.about-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

.about-nav a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 4px;
}

.about-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-dark);
  transition: width var(--transition-fast);
}

.about-nav a.active::after,
.about-nav a:hover::after {
  width: 100%;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  z-index: 5;
  margin-top: 20rem;
  padding-bottom: 4rem;
}

.about-hero-content {
  max-width: 100%;
}

.about-page-eyebrow {
  font-size: 30px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.about-page-title {
  font-size: 55px;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-page-decor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about-page-decor img {
  width: auto;
  height: auto;
}

.about-page-desc {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 900px;
}

.about-main {
  position: relative;
  z-index: 10;
  background-color: var(--color-white);
  padding-top: 60px;
}


/* =========================================================
   10. RESPONSIVE
========================================================= */

/* ── 1400px ─────────────────────────────────────────── */
@media (max-width: 1400px) {
  .hero-left-lemons  { left: -40px; width: 220px; }
  .hero-right-lemons { right: -60px; width: 220px; }
  .about-lemons-right { width: 180px; right: 3%; }
  .about-leaf         { width: 70px;  right: 18%; }
  .local-bottom-lemon  { width: 160px; }
  .local-bottom-flower { width: 160px; }
}

/* ── 1200px ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .header-green-area { width: 45%; }

  .hero-left-lemons  { left: -20px; width: 200px; top: -40px; }
  .hero-right-lemons { right: -20px; width: 200px; top: -30px; }

  .about-lemons-right { width: 160px; right: 2%; top: 10%; }
  .about-leaf         { width: 60px;  right: 15%; top: 18%; }

  .local-title-leaf-left  { left: 40px;  top: -80px; width: 50px; }
  .local-title-leaf-right { right: 15%;  top: -80px; width: 50px; }
  .local-bottom-lemon     { width: 140px; left: 2%; }
  .local-bottom-flower    { width: 140px; right: 2%; }

  .about-header-lemons { width: 360px; right: 4%; top: 18%; }
  .about-hero-section  { margin-top: 16rem; }
  .about-page-eyebrow  { font-size: 24px; }
  .about-page-title    { font-size: 48px; }

  .footer-top { gap: 2rem; }
}

/* ── 992px ──────────────────────────────────────────── */
@media (max-width: 992px) {
  /* Header */
  .site-header,
  .header-inner       { height: 110px; }
  .header-green-area  { width: 55%; }
  .main-nav a         { font-size: 16px; }
  .main-nav ul        { gap: 22px; }

  /* Hero */
  .hero               { padding: 50px 0 80px; }
  .hero-left-lemons   { width: 155px; left: 0; top: -25px; }
  .hero-right-lemons  { width: 155px; right: 0; top: -18px; }
  .bottle-img         { height: 210px; }
  .hero-swiper .swiper-slide-active .bottle-img  { height: 265px; }
  .hero-swiper .swiper-slide-active .bottle-name { font-size: 22px; }
  .bottle-slide       { min-height: 320px; }

  /* About section */
  .about-inner        { grid-template-columns: 1fr; text-align: center; }
  .about-content,
  .about-text         { margin-inline: auto; }
  .about-graphic      { margin-top: 0; }
  .about-lemons-right { width: 130px; right: 1%; top: 5%; opacity: 0.7; }
  .about-leaf         { width: 50px;  right: 12%; top: 12%; opacity: 0.7; }

  /* Local */
  .local-section          { padding: 80px 0 140px; }
  .local-title-leaf-left  { left: 20px;  top: -70px; width: 44px; }
  .local-title-leaf-right { right: 10%;  top: -70px; width: 44px; }
  .local-bottom-lemon     { width: 110px; left: 1%; }
  .local-bottom-flower    { width: 110px; right: 1%; }

  /* About sayfası */
  .about-header-lemons { width: 280px; right: 2%; top: 14%; }
  .about-hero-section  { margin-top: 12rem; }
  .about-page-eyebrow  { font-size: 20px; letter-spacing: 0.3em; }
  .about-page-title    { font-size: 42px; }
  .about-page-desc     { font-size: 14.5px; max-width: 100%; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }

  /* Scroll btn */
  .scroll-top-btn { width: 42px; height: 42px; bottom: 24px; right: 20px; }
}

/* ── 768px ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .site-header,
  .header-inner      { height: 90px; }
  .header-green-area { width: 60%; }
  .main-nav a        { font-size: 15px; }
  .main-nav ul       { gap: 18px; }

  /* Hero */
  .hero              { padding: 40px 0 70px; }
  .hero-left-lemons  { width: 115px; left: 0; top: -12px; opacity: 0.85; }
  .hero-right-lemons { width: 115px; right: 0; top: -10px; opacity: 0.85; }
  .bottle-img        { height: 175px; }
  .hero-swiper .swiper-slide-active .bottle-img  { height: 225px; }
  .hero-swiper .swiper-slide-active .bottle-name { font-size: 20px; }
  .hero-swiper .swiper-slide-active .bottle-desc { font-size: 14px; }
  .bottle-name       { font-size: 14px; }
  .bottle-desc       { font-size: 11px; }
  .bottle-slide      { min-height: 275px; }

  /* About section */
  .about-section          { padding: 60px 0; }
  .about-title-main       { font-size: 1.8rem; }
  .about-title-main span  { font-size: 1.6rem; }
  .about-content          { max-width: 100%; }
  .about-lemons-right     { width: 95px; right: 0; top: 2%; opacity: 0.5; }
  .about-leaf             { display: none; }

  /* Local */
  .local-section          { padding: 80px 0 120px; }
  .local-title            { font-size: 1.7rem; }
  .local-title-leaf-left  { left: 14px;  top: -52px; width: 34px; }
  .local-title-leaf-right { right: 7%;   top: -52px; width: 34px; }
  .local-bottom-lemon     { width: 85px; left: 0; }
  .local-bottom-flower    { width: 85px; right: 0; }

  /* About sayfası */
  .about-header-lemons { width: 180px; right: 0; top: 8%; }
  .about-hero-section  { margin-top: 8rem; }
  .about-page-eyebrow  { font-size: 15px; letter-spacing: 0.25em; }
  .about-page-title    { font-size: 36px; }
  .about-nav ul        { gap: 24px; padding-top: 28px; }
  .about-nav a         { font-size: 15px; }

  /* Footer */
  .footer-top { gap: 1.5rem; }
  .map-box    { height: 155px; }
}

/* ── 576px ──────────────────────────────────────────── */
@media (max-width: 576px) {
  /* Header */
  .site-header,
  .header-inner      { height: 74px; }
  .header-green-area { width: 68%; }
  .logo img          { max-height: 52px; }
  .main-nav a        { font-size: 14px; }
  .main-nav ul       { gap: 14px; }

  /* Hero */
  .hero              { padding: 28px 0 58px; }
  .hero-swiper       { padding-top: 28px; padding-bottom: 46px; }
  .hero-left-lemons  { width: 84px; left: 0; top: -4px; opacity: 0.7; }
  .hero-right-lemons { width: 84px; right: 0; top: -4px; opacity: 0.7; }
  .bottle-img        { height: 145px; }
  .hero-swiper .swiper-slide-active .bottle-img  { height: 185px; }
  .hero-swiper .swiper-slide-active .bottle-name { font-size: 18px; }
  .hero-swiper .swiper-slide-active .bottle-desc { font-size: 13px; }
  .bottle-name       { font-size: 12px; }
  .bottle-desc       { font-size: 10px; }
  .bottle-slide      { min-height: 230px; }

  /* About section */
  .about-section          { padding: 44px 0; }
  .about-title-main       { font-size: 1.55rem; }
  .about-title-main span  { font-size: 1.35rem; }
  .about-text             { font-size: 0.9rem; }
  .about-lemons-right     { display: none; }
  .about-leaf             { display: none; }

  /* Local */
  .local-section          { padding: 56px 0 90px; }
  .local-title            { font-size: 1.35rem; }
  .local-title span       { font-size: 1.15rem; }
  .local-title-leaf-left,
  .local-title-leaf-right { display: none; }
  .local-bottom-lemon     { width: 64px; left: 0; bottom: 8px; }
  .local-bottom-flower    { width: 64px; right: 0; bottom: 8px; }

  /* About sayfası */
  .about-header-lemons { width: 118px; right: 0; top: 5%; opacity: 0.85; }
  .about-hero-section  { margin-top: 4rem; padding-bottom: 2.5rem; }
  .about-page-eyebrow  { font-size: 12px; letter-spacing: 0.2em; }
  .about-page-title    { font-size: 30px; margin-bottom: 16px; }
  .about-page-desc     { font-size: 14px; line-height: 1.72; }
  .about-nav ul        { gap: 16px; padding-top: 20px; }
  .about-nav a         { font-size: 14px; }
  .about-page-decor img { width: 36px; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: 1.8rem; }
  .map-box       { height: 175px; }
  .footer-bottom { font-size: 0.74rem; }

  /* Scroll btn */
  .scroll-top-btn { width: 40px; height: 40px; bottom: 20px; right: 16px; }
  .scroll-top-btn svg { width: 17px; height: 17px; }
}

/* ── 400px ──────────────────────────────────────────── */
@media (max-width: 400px) {
  .site-header,
  .header-inner      { height: 64px; }
  .logo img          { max-height: 44px; }
  .main-nav a        { font-size: 13px; }
  .main-nav ul       { gap: 10px; }

  .hero-left-lemons  { width: 65px; opacity: 0.55; }
  .hero-right-lemons { width: 65px; opacity: 0.55; }
  .bottle-img        { height: 125px; }
  .hero-swiper .swiper-slide-active .bottle-img  { height: 158px; }
  .hero-swiper .swiper-slide-active .bottle-name { font-size: 16px; }

  .about-title-main       { font-size: 1.35rem; }
  .about-title-main span  { font-size: 1.15rem; }

  .local-bottom-lemon,
  .local-bottom-flower    { display: none; }

  .about-header-lemons { width: 88px; opacity: 0.7; }
  .about-page-eyebrow  { font-size: 10px; letter-spacing: 0.14em; }
  .about-page-title    { font-size: 26px; }
  .about-nav ul        { gap: 12px; }
  .about-nav a         { font-size: 13px; }

  .footer-top    { gap: 1.4rem; }
  .footer-bottom { font-size: 0.68rem; }

  .scroll-top-btn { width: 38px; height: 38px; bottom: 16px; right: 12px; }
}