/* ========================================
   Photographer Portfolio — Warm Editorial
   ======================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

/* ── Custom Properties ── */
:root {
  --walnut: #5c4033;
  --walnut-dark: #3e2a1e;
  --walnut-light: #7a5c4f;
  --gold: #b8860b;
  --gold-muted: #c9a84c;
  --gold-light: #d4af37;
  --beige: #f5f0eb;
  --beige-dark: #e8dfd5;
  --cream: #faf7f2;
  --sand: #ede5da;
  --charcoal: #2c2c2c;
  --brown-text: #3a2e28;
  --warm-gray: #8a7e76;
  --white: #ffffff;
  --overlay-dark: rgba(44, 34, 26, 0.55);
  --overlay-light: rgba(92, 64, 51, 0.15);

  --ff-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Lato", "Segoe UI", sans-serif;

  --fs-hero: clamp(2.8rem, 6vw, 5rem);
  --fs-section-title: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: clamp(1.3rem, 2.5vw, 1.8rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.75rem;

  --spacing-section: clamp(80px, 10vw, 140px);
  --max-width: 1240px;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  color: var(--brown-text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ── Typography Utilities ── */
.serif {
  font-family: var(--ff-serif);
}
.label-text {
  font-family: var(--ff-sans);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-section-title);
  font-weight: 500;
  color: var(--walnut-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label-text {
  margin-bottom: 12px;
  display: block;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Divider ── */
.divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

.divider-left {
  margin: 20px 0 0;
}

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

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(92, 64, 51, 0.08);
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 1px;
}

.navbar.scrolled .nav-logo {
  color: var(--walnut-dark);
}

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

.nav-links a {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

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

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

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--walnut-light);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--walnut-dark);
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(62, 42, 30, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--beige);
  letter-spacing: 2px;
  transition: color 0.3s;
}

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

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 34, 26, 0.55) 0%,
    rgba(44, 34, 26, 0.5) 40%,
    rgba(44, 34, 26, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--ff-sans);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: var(--fs-hero);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-family: var(--ff-sans);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-walnut {
  background: var(--walnut);
  color: var(--white);
}

.btn-walnut:hover {
  background: var(--walnut-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 64, 51, 0.25);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-label);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
  padding: var(--spacing-section) 0;
  background: var(--cream);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 24px;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--beige-dark);
  background: transparent;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--walnut);
  color: var(--white);
  border-color: var(--walnut);
}

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

.portfolio-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(62, 42, 30, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

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

.portfolio-overlay h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-overlay span {
  font-size: var(--fs-small);
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-overlay .view-project {
  margin-top: 12px;
  font-size: var(--fs-small);
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.15s;
}

.portfolio-item:hover .view-project {
  opacity: 1;
  transform: translateY(0);
}

.view-project svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-light);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: var(--spacing-section) 0;
  background: var(--beige);
}

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

.about-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  border-radius: 4px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-content .label-text {
  margin-bottom: 16px;
  display: block;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.skill-tag {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--walnut-dark);
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 134, 11, 0.05);
  transform: translateY(-2px);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--beige-dark);
}

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

.stat-number {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--walnut-dark);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--warm-gray);
  letter-spacing: 0.5px;
}

/* ========================================
   WORK EXPERIENCE SECTION
   ======================================== */
.work-experience {
  padding: var(--spacing-section) 0;
  background: var(--cream);
}

.experience-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--gold), var(--beige-dark));
}

.experience-item {
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-marker {
  position: absolute;
  left: -40px;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.experience-item:hover .experience-dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 134, 11, 0.15);
}

.experience-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 4px;
  padding: 32px 36px;
  transition: all var(--transition);
  position: relative;
}

.experience-card::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 26px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  transform: rotate(45deg);
  transition: border-color var(--transition);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(92, 64, 51, 0.08);
  border-color: transparent;
}

.experience-card:hover::before {
  border-color: transparent;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.experience-role {
  font-family: var(--ff-serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--walnut-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.experience-company {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.experience-date {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  color: var(--warm-gray);
  white-space: nowrap;
  padding: 6px 16px;
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.experience-desc {
  font-size: var(--fs-body);
  color: var(--warm-gray);
  line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: var(--spacing-section) 0;
  background: var(--cream);
}

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

.service-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.service-card:hover::after {
  width: 60px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(92, 64, 51, 0.1);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  stroke-width: 1.2;
  fill: none;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--walnut-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: var(--fs-small);
  color: var(--warm-gray);
  line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: var(--spacing-section) 0;
  background: var(--beige);
}

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

.testimonial-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--beige-dark);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(92, 64, 51, 0.08);
}

.testimonial-card::before {
  content: "\201C";
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial-quote {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--walnut);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--walnut-dark);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: var(--fs-small);
  color: var(--warm-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  position: relative;
  padding: var(--spacing-section) 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 42, 30, 0.88);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

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

.contact-info {
  color: var(--beige);
}

.contact-info .label-text {
  margin-bottom: 16px;
  display: block;
}

.contact-info .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info p {
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--beige);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 235, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
  fill: none;
}

.contact-detail-text {
  font-size: var(--fs-small);
  color: rgba(245, 240, 235, 0.8);
}

.contact-detail-text strong {
  display: block;
  font-size: var(--fs-body);
  color: var(--beige);
  margin-bottom: 2px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: var(--fs-small);
  color: rgba(245, 240, 235, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid rgba(245, 240, 235, 0.2);
  padding: 14px 16px;
  color: var(--beige);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  border-radius: 2px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 235, 0.35);
}

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

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

.contact-form .btn {
  align-self: flex-start;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--walnut-dark);
  padding: 48px 0;
}

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

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--beige);
  letter-spacing: 1px;
}

.footer-copyright {
  font-size: var(--fs-small);
  color: rgba(245, 240, 235, 0.5);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 240, 235, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(184, 134, 11, 0.15);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: var(--beige);
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    min-height: 350px;
  }

  .about-image-accent {
    display: none;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .experience-timeline {
    padding-left: 30px;
  }

  .experience-marker {
    left: -30px;
  }

  .experience-card {
    padding: 24px 20px;
  }

  .experience-header {
    flex-direction: column;
    gap: 8px;
  }

  .experience-date {
    align-self: flex-start;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}
