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

:root {
  --bg: #f5f3ef;
  --fg: #1a1a1a;
  --muted: #888;
  --accent: #c8a96e;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  mix-blend-mode: multiply;
}

.nav-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity 0.2s;
}

nav ul a:hover { opacity: 1; }

/* ===== HERO ===== */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(10%);
  transition: filter 0.6s ease;
}

.hero-image-wrap:hover .hero-img {
  filter: grayscale(0%);
}

.hero-label {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.6;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 4rem;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.0;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

.hero-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 26ch;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--accent); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg);
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
#about {
  padding: 8rem 3rem;
  background: #fff;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 6rem;
  align-items: start;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}

.section-label.centered { text-align: center; }

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.4rem;
}

.about-body strong { font-weight: 500; color: var(--fg); }

.about-meta {
  padding-top: 0.5rem;
}

.meta-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.meta-item:first-child { border-top: 1px solid #eee; }

.meta-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.meta-value {
  font-size: 0.92rem;
  color: var(--fg);
}

/* ===== GALLERY ===== */
#gallery {
  padding: 8rem 3rem;
  background: var(--bg);
}

.gallery-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 3.5rem;
  font-style: italic;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  background: #ddd;
}

.gallery-item img {
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 3rem 0;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5rem;
  border-bottom: 1px solid #333;
}

.contact-heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.0;
  font-weight: 700;
}

.contact-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #333;
  width: 100%;
  justify-content: flex-end;
  transition: color 0.2s;
  min-width: 260px;
}

.contact-link:first-child { border-top: 1px solid #333; }
.contact-link:hover { color: var(--accent); }

.contact-link-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.contact-link:hover .contact-link-arrow { transform: translateX(6px); }

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.08em;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { gap: 1.5rem; }

  #hero { grid-template-columns: 1fr; min-height: auto; }

  .hero-image-wrap { height: 60vw; min-height: 300px; }

  .hero-content { padding: 4rem 1.5rem 3rem; }

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

  #about, #gallery, #contact { padding: 5rem 1.5rem 0; }

  #contact { padding-bottom: 0; }

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

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

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .contact-links { align-items: flex-start; width: 100%; }
  .contact-link { justify-content: space-between; min-width: unset; }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item.tall, .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}
