:root {
  --bg: #fafaf7;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --line: #e8e6e1;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

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

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

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  animation: fadeInDown 1s ease-out 0.3s both;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 0.7s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--muted);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-weight: 300;
  animation: fadeInUp 1.2s ease-out 0.9s both;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease-out 1.1s both;
}

.hero-cta:hover {
  background: transparent;
  color: var(--text);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
}

/* ===== Section Base ===== */
section {
  padding: 8rem 2rem;
}

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

.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

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

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ===== About ===== */
.about {
  background: var(--bg);
  text-align: center;
}

.about .section-narrow {
  text-align: center;
}

.about-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.5;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 4rem;
  font-style: italic;
}

.about-text + p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Services ===== */
.services {
  background: #f4f2ed;
}

.services-header {
  text-align: center;
  margin-bottom: 6rem;
}

.services-header .section-intro {
  margin: 0 auto;
}

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 10rem;
}

.service:last-child {
  margin-bottom: 0;
}

.service-reverse {
  direction: rtl;
}

.service-reverse > * {
  direction: ltr;
}

.service-image {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--line);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.service:hover .service-image img {
  transform: scale(1.05);
}

.service-number {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.service h3 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.service p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.service-features li {
  padding: 0.8rem 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.service-features span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.gallery-item {
  overflow: hidden;
  background: var(--line);
  transition: opacity 0.6s ease;
}

.gallery-item:hover {
  opacity: 0.9;
}

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

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

.gallery-1 { grid-column: span 7; aspect-ratio: 4/3; }
.gallery-2 { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-3 { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-4 { grid-column: span 7; aspect-ratio: 16/9; }
.gallery-5 { grid-column: span 12; aspect-ratio: 21/9; }

/* ===== Approach / Process ===== */
.approach {
  background: #1a1a1a;
  color: #fafaf7;
}

.approach .section-label {
  color: rgba(250, 250, 247, 0.5);
}

.approach .section-title em {
  color: rgba(250, 250, 247, 0.5);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.approach-step {
  border-top: 1px solid rgba(250, 250, 247, 0.2);
  padding-top: 2rem;
}

.approach-number {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(250, 250, 247, 0.5);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.approach-step h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.approach-step p {
  color: rgba(250, 250, 247, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg);
  text-align: center;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.contact h2 em {
  font-style: italic;
  color: var(--muted);
}

.contact-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 4rem;
}

.contact-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  padding: 1.5rem 3rem;
  border: 1px solid var(--text);
  margin-bottom: 4rem;
  transition: all 0.4s ease;
}

.contact-email:hover {
  background: var(--text);
  color: var(--bg);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info div {
  text-align: center;
}

.contact-info strong {
  display: block;
  font-weight: 400;
  color: var(--text);
  margin-top: 0.3rem;
  text-transform: none;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
  background: #1a1a1a;
  color: rgba(250, 250, 247, 0.6);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

footer a {
  margin: 0 1rem;
  transition: color 0.3s;
}

footer a:hover {
  color: #fafaf7;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
    font-size: 0.75rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
  }

  .service-reverse {
    direction: ltr;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-1, .gallery-2, .gallery-3, .gallery-4, .gallery-5 {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

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