/* ─── SnS Lens — Editorial Photography UI ─── */

:root {
  --bg-deep: #080808;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --text-primary: #f5f0e8;
  --text-muted: #9a9488;
  --text-faint: #5c574f;
  --accent: #c9a962;
  --accent-light: #e8d5a3;
  --accent-glow: rgba(201, 169, 98, 0.25);
  --border: rgba(245, 240, 232, 0.08);
  --border-accent: rgba(201, 169, 98, 0.3);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Syne", system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --header-height: 80px;
  --section-pad: clamp(4rem, 10vw, 8rem);
  --content-max: 1280px;
}

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

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

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

/* ─── Texture & Atmosphere ─── */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background 0.4s var(--ease-out-expo), backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-cta {
  padding: 0.65rem 1.25rem !important;
  border: 1px solid var(--border-accent) !important;
  color: var(--accent) !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  background: rgba(245, 240, 232, 0.05);
}

.btn-full {
  width: 100%;
}

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}

/* ─── Hero ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--header-height) clamp(1.5rem, 4vw, 3rem) 4rem;
  overflow: hidden;
}

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

.hero-image {
  width: 110%;
  height: 110%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.12) translate3d(-3%, -2%, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.12) translate3d(-3%, -2%, 0);
  }
  50% {
    transform: scale(1.2) translate3d(-5%, -3%, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-1%, -4%, 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.6) 50%, rgba(8, 8, 8, 0.85) 100%),
    linear-gradient(to top, var(--bg-deep) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero-line--accent {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 400;
}

.hero-sub {
  max-width: 480px;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  writing-mode: vertical-rl;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  padding: 1.5rem 2rem;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
}

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

.stat-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Marquee ─── */

.marquee {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-surface);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.marquee-dot {
  font-size: 0.5rem !important;
  color: var(--accent) !important;
  font-style: normal !important;
}

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

/* ─── Portfolio strip ─── */

.portfolio-strip {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.portfolio-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.portfolio-strip-set {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.portfolio-strip.is-paused .portfolio-strip-track {
  animation-play-state: paused;
}

.portfolio-strip-item {
  flex-shrink: 0;
  width: clamp(180px, 20vw, 280px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
}

.portfolio-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
}

.portfolio-strip-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* ─── Sections ─── */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── Gallery ─── */

.work {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  max-width: var(--content-max);
  margin: 0 auto;
}

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

.filter-btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active {
  color: var(--accent);
  border-color: var(--border-accent);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

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

.gallery-item--wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, transparent 60%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.gallery-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

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

/* ─── Services ─── */

.services {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.services-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.service-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ─── Quote ─── */

.quote {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.quote-block footer {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

/* ─── About ─── */

.about {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  max-width: var(--content-max);
  margin: 0 auto;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  background: var(--bg-elevated);
}

.about-image-frame {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border-accent);
  pointer-events: none;
  z-index: -1;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.value span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── Contact ─── */

.contact {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: color 0.3s;
}

a.contact-link:hover {
  color: var(--accent);
}

.contact-link-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.social-links a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-form {
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.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' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9488' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

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

.form-success {
  margin-top: 1rem;
  text-align: center;
  color: var(--accent);
  font-size: 0.9rem;
}

.form-error {
  margin-top: 1rem;
  text-align: center;
  color: #e8a0a0;
  font-size: 0.9rem;
}

.form-privacy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
}

.form-privacy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy a:hover {
  color: var(--accent);
}

/* ─── WhatsApp float ─── */

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 9000;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-float[hidden] {
  display: none;
}

/* ─── Legal pages ─── */

.legal-page .legal-main {
  padding: calc(var(--header-height) + 3rem) clamp(1.5rem, 4vw, 3rem) var(--section-pad);
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}

.legal-back {
  margin-top: 3rem;
}

.footer-legal {
  margin-bottom: 0.75rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

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

/* ─── Footer ─── */

.site-footer {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-mantra {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-social a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-social-dot {
  color: var(--text-faint);
}

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

/* ─── Reveal Animations ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.hero .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero .reveal:nth-child(2) { transition-delay: 0.2s; }
.hero .reveal:nth-child(3) { transition-delay: 0.35s; }
.hero .reveal:nth-child(4) { transition-delay: 0.5s; }
.hero .reveal:nth-child(5) { transition-delay: 0.65s; }

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 6;
  }

  .gallery-item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
  }

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

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

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

  .hero-scroll {
    display: none;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-image {
    animation: none;
    transform: scale(1.05);
    width: 100%;
    height: 100%;
  }

  html {
    scroll-behavior: auto;
  }
}
