/* ============================================================
   ACADEMIA LUMIÈRE — Stylesheet
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --cream:    #faf7f4;
  --warm-50:  #f5ede5;
  --gold:     #c4956a;
  --gold-dark:#a07548;
  --bronze:   #8b6144;
  --sand:     #d4b896;
  --brown:    #4a3020;
  --dark:     #1a1008;
  --dark-2:   #251608;
  --text:     #3d2b1f;
  --muted:    #7a6151;
  --white:    #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(74,48,32,.10);
  --shadow-md: 0 8px 32px rgba(74,48,32,.15);
  --shadow-lg: 0 20px 60px rgba(74,48,32,.20);

  --transition: all .35s cubic-bezier(.4,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-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------- TYPOGRAPHY ---------- */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}

.section-tag--light { color: var(--sand); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}

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

.section-desc {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 540px;
  font-size: 1.05rem;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin-inline: auto; }
.section-header--light .section-title { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,149,106,.40);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,149,106,.55);
}

.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,16,8,.92);
  backdrop-filter: blur(16px);
  padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-container {
  width: min(1160px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  animation: spin-slow 8s linear infinite;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

@keyframes spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: .55rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  box-shadow: 0 4px 16px rgba(196,149,106,.4);
}

.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(196,149,106,.55); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,16,8,.75) 0%,
    rgba(74,48,32,.45) 50%,
    rgba(15,8,4,.80) 100%
  );
}

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

.hero-subtitle {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
  opacity: .9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-suffix { font-size: 1.5rem; color: var(--sand); }

.stat-label {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.25);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.75); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--warm-50);
}

.about-badge i {
  font-size: 1.6rem;
  color: var(--gold);
}

.about-badge strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.about-badge span {
  font-size: .75rem;
  color: var(--muted);
}

.about-accent-card {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--brown) 0%, #2a1a0e 100%);
  color: var(--sand);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }

.about-text { color: var(--muted); font-size: 1.02rem; line-height: 1.85; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}

.about-features li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   COURSES
   ============================================================ */
.courses {
  padding: 7rem 0;
  background: var(--warm-50);
}

.course-filters {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .55rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  border: 1.5px solid var(--sand);
  transition: var(--transition);
  background: var(--white);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196,149,106,.35);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,184,150,.25);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sand));
  transform: scaleX(0);
  transition: var(--transition);
}

.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.course-card:hover::before { transform: scaleX(1); }

.course-card.hidden { display: none; }

.course-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.course-level {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-xl);
}

.level-beginner     { background: #e8f5e9; color: #2e7d32; }
.level-intermediate { background: #fff8e1; color: #f57f17; }
.level-advanced     { background: #fce4ec; color: #c62828; }

.course-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
}

.course-desc {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
  flex: 1;
}

.course-meta {
  display: flex;
  gap: 1.2rem;
}

.course-meta span {
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.course-meta i { color: var(--gold); }

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--warm-50);
}

.course-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.course-btn {
  padding: .5rem 1.2rem;
  background: var(--warm-50);
  color: var(--brown);
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}

.course-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 7rem 0;
  background: var(--cream);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-main:hover .gallery-hero-img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-tag {
  background: var(--gold);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: var(--radius-xl);
}

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card:hover { transform: scale(1.04); }

.gallery-card-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: var(--white);
}

.gallery-card-inner i  { font-size: 2rem; opacity: .9; }
.gallery-card-inner h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: center;
  padding: 0 1rem;
}

/* ============================================================
   INSTRUCTORS
   ============================================================ */
.instructors {
  padding: 7rem 0;
  background: var(--warm-50);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.instructor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

.instructor-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.instructor-info {
  padding: 1.5rem;
}

.instructor-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: .3rem;
}

.instructor-role {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.instructor-bio {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark-2) 100%);
  overflow: hidden;
}

.testimonials-slider { position: relative; }

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-slide {
  flex: 0 0 100%;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
  max-width: 820px;
  margin-inline: auto;
}

.t-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.t-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.t-name {
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}

.t-title {
  font-size: .8rem;
  color: var(--sand);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}

.t-btn:hover { background: var(--gold); border-color: var(--gold); }

.t-dots {
  display: flex;
  gap: .5rem;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--sand) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: .85rem;
}

.cta-banner h2 em { font-style: italic; }

.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.cta-actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.3); }

.cta-deco { position: absolute; inset: 0; pointer-events: none; }

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.deco-c1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.deco-c2 { width: 300px; height: 300px; bottom: -150px; right: 100px; }
.deco-c3 { width: 200px; height: 200px; top: 50%; right: -80px; transform: translateY(-50%); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: .5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--warm-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: .15rem;
}

.contact-item span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--warm-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,184,150,.2);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1.1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,149,106,.15);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-success.visible { display: flex; }
.form-success i { font-size: 1.4rem; }
.form-success p { font-size: .9rem; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}

.footer-col h4 {
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li + li { margin-top: .65rem; }

.footer-col a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  gap: .65rem;
  margin-bottom: 1.25rem;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-socials a:hover { background: var(--gold); color: var(--white); }

.footer-contact-mini {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}

.footer-contact-mini i { color: var(--gold); font-size: .85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(196,149,106,.5);
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-top:hover { transform: translateY(-3px); }

/* ============================================================
   SCROLL-REVEAL ANIMATION [data-aos]
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="150"] { transition-delay: .15s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; max-width: 560px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,16,8,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .hamburger { display: flex; position: relative; z-index: 1000; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats   { gap: 1rem; }
  .stat-divider { height: 35px; }

  .gallery-showcase { grid-template-columns: 1fr; }
  .gallery-side     { grid-template-columns: repeat(4,1fr); }

  .about-badge { top: 1rem; right: 1rem; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .gallery-side { grid-template-columns: 1fr 1fr; }
  .hero-stats   { flex-direction: column; gap: .75rem; }
  .stat-divider { display: none; }
}
