/* ============================================
   G-FIT PILATES STUDIO — style.css
   Premium Boutique Studio Aesthetic
   Palette: Cream / Olive Green / Champagne Gold
   ============================================ */

:root {
  --green-dark:   #2C3E2D;
  --green-mid:    #3D5C3A;
  --green-light:  #5A7A55;
  --gold:         #BFA980;
  --gold-light:   #D4C4A0;
  --cream:        #F5F0EA;
  --cream-dark:   #EDE8E0;
  --ivory:        #FAF8F4;
  --charcoal:     #1A1A1A;
  --charcoal-60:  rgba(26,26,26,0.6);
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-shrink: 0;
}
.logo-g {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}
.logo-fit {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-left: 0.5rem;
  align-self: center;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--green-dark);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { right: 0; }

/* Nav transparent state — white links */
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-links a::after { background: white; }
#navbar:not(.scrolled) .nav-links a:hover { color: white; }
#navbar:not(.scrolled) .logo-g,
#navbar:not(.scrolled) .logo-fit { color: white; }
#navbar:not(.scrolled) .logo-sub { color: var(--gold-light); }
#navbar:not(.scrolled) .lang-toggle { color: white; border-color: rgba(255,255,255,0.4); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: var(--charcoal);
  transition: all var(--transition);
}
.lang-toggle:hover { border-color: var(--green-dark); color: var(--green-dark); }
.lang-tr, .lang-en { transition: color var(--transition); }
.lang-tr.active, .lang-en.active { color: var(--green-dark); font-weight: 700; }
.lang-sep { opacity: 0.4; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}
#navbar:not(.scrolled) .nav-hamburger span { background: white; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--cream-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--green-dark); padding-left: 0.5rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(44,62,45,0.25);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn-sm { padding: 0.65rem 1.6rem; font-size: 0.7rem; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '—';
  margin-right: 0.5rem;
  opacity: 0.6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
#hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 62, 45, 0.72) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(191, 169, 128, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 780px;
}
.hero-est {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-light); }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   MANIFESTO
   ============================================ */
#manifesto {
  background: var(--green-dark);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
#manifesto::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,169,128,0.12) 0%, transparent 70%);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-inner .section-label { color: var(--gold-light); }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.4;
  margin: 1.5rem 0 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  text-align: left;
}
.manifesto-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--gold);
  margin-top: 1.5rem;
  text-transform: uppercase;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  padding: 8rem 2rem;
  background: var(--ivory);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.5;
  transform: translate(12px, 12px);
}
.about-img {
  border-radius: 2px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}
.about-img-frame:hover .about-img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
}
.badge-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(44,62,45,0.3);
}
.badge-year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.badge-text {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}
.about-content { padding: 1rem 0; }
.about-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.1;
  margin: 0.5rem 0 0.25rem;
}
.about-name em { font-style: italic; color: var(--gold); }
.about-title-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 1.5rem;
}
.about-text {
  color: var(--charcoal-60);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.85;
}
.certs-inline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}
.cert-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--charcoal);
}
.cert-tag svg {
  width: 16px; height: 16px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  padding: 8rem 2rem;
  background: var(--cream);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.service-card {
  background: var(--ivory);
  padding: 3rem 2.25rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--green-dark);
  transition: right var(--transition);
}
.service-card:hover { background: white; }
.service-card:hover::after { right: 0; }
.service-icon {
  width: 48px; height: 48px;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover .service-icon {
  color: var(--green-dark);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--charcoal-60);
  line-height: 1.85;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
#certifications {
  padding: 8rem 2rem;
  background: var(--ivory);
}
.cert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.cert-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0.5rem 0 1.5rem;
}
.cert-text h2 em { font-style: italic; color: var(--gold); }
.cert-text p {
  font-size: 0.92rem;
  color: var(--charcoal-60);
  line-height: 1.85;
}
.cert-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: padding-left var(--transition);
}
.cert-item:first-child { border-top: 1px solid var(--cream-dark); }
.cert-item:hover { padding-left: 0.5rem; }
.cert-icon-wrap {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--green-light);
  margin-top: 2px;
}
.cert-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.cert-item p {
  font-size: 0.82rem;
  color: var(--charcoal-60);
}

/* ============================================
   GALLERY / MEDIA
   ============================================ */
#media {
  padding: 8rem 2rem;
  background: var(--cream);
}
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  aspect-ratio: 4/3;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery-item img {
  transition: transform 0.6s ease;
  object-position: center top;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(44,62,45,0.8));
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.media-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem 0;
}
.media-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.media-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  padding: 8rem 2rem;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,169,128,0.08) 0%, transparent 70%);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-label { color: var(--gold-light); }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  line-height: 1.5;
}
a.contact-value:hover { color: var(--gold); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(191,169,128,0.06);
}
.contact-map {
  position: relative;
}
.contact-map iframe {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4/3;
  border: none;
  border-radius: 4px;
  filter: grayscale(0.3) contrast(1.05);
  display: block;
}
.map-overlay-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.map-pin-icon { font-size: 1.4rem; }
.map-overlay-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}
.map-overlay-card span {
  font-size: 0.75rem;
  color: var(--charcoal-60);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #1A2419;
  padding: 5rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.footer-logo .logo-g,
.footer-logo .logo-fit { color: white; }
.footer-logo .logo-sub { color: var(--gold); }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
}
.footer-cols {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-col a, .footer-col span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sardunya-link {
  color: var(--gold);
  opacity: 0.6;
  font-weight: 500;
  transition: opacity var(--transition);
}
.sardunya-link:hover { opacity: 1; }

/* ============================================
   BACK TO TOP
   ============================================ */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(44,62,45,0.35);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--green-mid); }
#backToTop svg { width: 18px; height: 18px; color: white; }

/* ============================================
   AOS OVERRIDES
   ============================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 480px; margin: 0 auto; }
  .cert-inner { grid-template-columns: 1fr; gap: 4rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 2.5rem; }
  .footer-brand { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--tall { aspect-ratio: 4/3; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-cols { flex-direction: column; gap: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  #manifesto { padding: 5rem 1.5rem; }
  #about, #services, #certifications, #media, #contact { padding: 5rem 1.5rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
  .badge-circle { width: 80px; height: 80px; }
  .badge-year { font-size: 1.3rem; }
}
