/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #faf6f1;
  --bg-soft: #f5f0eb;
  --bg-card: #efe9e2;
  --bg-pink: #f0e8df;
  --text: #3d2b1f;
  --text-muted: #7a6a5e;
  --accent: #b8956a;
  --accent-dark: #9a7b54;
  --accent-light: #d4b896;
  --blush: #ddd0c3;
  --rose: #c4a67e;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

ul { list-style: none; }

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--accent);
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== CUSTOM CURSOR (desktop) ===== */
.cursor {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.15s ease;
  transform: translate(-50%, -50%);
  display: none;
}

.cursor.active {
  transform: translate(-50%, -50%) scale(2.5);
  background: rgba(212, 160, 160, 0.15);
}

@media (pointer: fine) {
  .cursor { display: block; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled,
.nav-dark {
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 40px;
  box-shadow: 0 1px 20px rgba(61, 43, 31, 0.08);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #faf6f1;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 6px;
  color: rgba(250, 246, 241, 0.7);
  text-transform: uppercase;
  margin-top: 2px;
  transition: color var(--transition);
}

.nav.scrolled .nav-logo,
.nav-dark .nav-logo {
  color: var(--accent-dark);
}

.nav.scrolled .nav-logo span,
.nav-dark .nav-logo span {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a,
.nav-dark .nav-links a {
  color: var(--text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-light);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active,
.nav-dark .nav-links a:hover,
.nav-dark .nav-links a.active {
  color: var(--accent-dark);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #faf6f1;
  transition: var(--transition);
  transform-origin: center;
}

.nav.scrolled .hamburger span,
.nav-dark .hamburger span {
  background: var(--text);
}

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

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent-dark);
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 30, 15, 0.3) 0%,
    rgba(45, 30, 15, 0.45) 40%,
    rgba(45, 30, 15, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #faf6f1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.7s forwards;
}

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

.hero-description {
  font-size: 1rem;
  color: rgba(250, 246, 241, 0.85);
  max-width: 500px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250, 246, 241, 0.7);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--accent-light);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.btn:hover {
  color: var(--bg);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-filled {
  background: var(--accent);
  color: var(--bg);
}

.btn-filled::before {
  background: var(--accent-dark);
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 0;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text);
}

.section-description {
  color: var(--text-muted);
  max-width: 550px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--bg-soft);
}

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

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--accent-light);
  z-index: -1;
  opacity: 0.5;
}

.about-text .section-description {
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--blush);
}

.stat h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent-dark);
  font-weight: 400;
}

.stat p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== PORTFOLIO / GALLERIES ===== */
.portfolio-section {
  background: var(--bg);
}

.gallery-categories {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.gallery-tab {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
  font-family: var(--font-body);
}

.gallery-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
  color: var(--accent-dark);
}

.gallery-tab.active::after {
  width: 100%;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(2) { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-item:nth-child(3) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }
.gallery-item:nth-child(5) { aspect-ratio: 3/4; }
.gallery-item:nth-child(6) { aspect-ratio: 16/9; grid-column: span 2; }
.gallery-item:nth-child(7) { aspect-ratio: 3/4; }
.gallery-item:nth-child(8) { aspect-ratio: 4/3; }
.gallery-item:nth-child(9) { aspect-ratio: 3/4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 36, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
}

.gallery-item-overlay p {
  font-size: 0.7rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

.gallery-item.hidden {
  display: none;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  padding: 48px 36px;
  background: var(--bg);
  border: 1px solid var(--blush);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 160, 160, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-pink);
  border-radius: 50%;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-card .btn {
  padding: 10px 28px;
  font-size: 0.65rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-pink);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}

.testimonial {
  text-align: center;
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

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

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  color: var(--text);
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent);
}

/* ===== EXPERIENCE / MARQUEE ===== */
.experience-section {
  padding: 0;
  overflow: hidden;
}

.experience-marquee {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.experience-marquee img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.8);
  transition: filter var(--transition);
}

.experience-marquee img:hover {
  filter: saturate(1);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: var(--bg-soft);
  text-align: center;
}

.contact-cta .section-title {
  max-width: 600px;
  margin: 0 auto 20px;
}

.contact-cta .section-description {
  margin: 0 auto 40px;
  text-align: center;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding-top: 160px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--blush);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c7e7a' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding-top: 20px;
}

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-item h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info-item a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--accent-dark);
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.social-links a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--accent-dark);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--blush);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--accent-dark);
  text-transform: uppercase;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-dark);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 16px;
  transition: color var(--transition);
}

.lightbox-nav:hover {
  color: var(--accent);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== PAGE HEADER ===== */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center 20%;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 30, 15, 0.3) 0%,
    rgba(45, 30, 15, 0.55) 100%
  );
}

.page-header .section-label {
  color: var(--accent-light);
}

.page-header .section-title {
  color: #faf6f1;
}

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

/* ===== ABOUT PAGE ===== */
.about-full {
  padding-top: 40px;
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-full-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.about-full-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-image-collage img {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}

.about-image-collage img:nth-child(1) {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.about-image-collage img:nth-child(2) {
  aspect-ratio: 1;
}

.about-image-collage img:nth-child(3) {
  aspect-ratio: 4/3;
}

.about-image-collage img:hover {
  transform: scale(1.02);
}

/* ===== DIVIDER ===== */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
  opacity: 0.5;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .about-grid,
  .about-full-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item:nth-child(2) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }

  .nav { padding: 16px 20px; }
  .nav.scrolled, .nav-dark { padding: 12px 20px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item:nth-child(n) {
    aspect-ratio: 4/3;
    grid-column: span 1;
  }

  .about-stats { gap: 24px; }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-image-collage { grid-template-columns: 1fr; }
  .about-image-collage img:nth-child(1) { grid-row: span 1; }

  .experience-marquee img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .about-stats { flex-direction: column; gap: 20px; }
}
