/* === VARIABLES === */
:root {
  --color-black: #0a0a0a;
  --color-charcoal: #1a1a1a;
  --color-dark: #222;
  --color-warm: #c4a265;
  --color-warm-hover: #d4b275;
  --color-cream: #f5f0e8;
  --color-white: #fafaf8;
  --color-text: #333;
  --color-text-light: #777;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.03em;
}
.nav-brand span { color: var(--color-warm); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-warm); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.hero-btn:hover {
  background: var(--color-warm);
  border-color: var(--color-warm);
  color: var(--color-black);
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* === SECTIONS === */
.section { padding: 120px 48px; }
.section-dark { background: var(--color-charcoal); color: #fff; }
.section-cream { background: var(--color-cream); }
.section-white { background: var(--color-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-image:hover img { transform: scale(1.03); }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--color-dark);
}
.about-text .divider {
  width: 60px;
  height: 2px;
  background: var(--color-warm);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 1.02rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-detail {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.about-detail-item h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-warm);
  margin-bottom: 4px;
}
.about-detail-item span {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }
  .section { padding: 80px 24px; }
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 400;
}
.gallery-overlay span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-warm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Featured large item */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item.featured { grid-column: span 1; }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--color-warm); }
.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  cursor: pointer;
  padding: 20px;
  transition: color var(--transition);
  user-select: none;
}
.lightbox-nav:hover { color: #fff; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* === INSPIRATION === */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.inspiration-item {
  text-align: center;
}
.inspiration-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.inspiration-item p {
  font-size: 0.95rem;
  line-height: 1.8;
}
.section-dark .inspiration-item p { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .inspiration-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* === QUOTE === */
.quote-section {
  padding: 120px 48px;
  text-align: center;
  background: var(--color-cream);
}
.quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  color: var(--color-dark);
}
.quote-attr {
  font-size: 0.85rem;
  color: var(--color-warm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === CONTACT === */
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.form-group input,
.form-group textarea {
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-warm);
}
.btn-submit {
  padding: 16px 48px;
  background: var(--color-charcoal);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { background: var(--color-warm); }

/* === FOOTER === */
.footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.5);
  padding: 48px;
  text-align: center;
  font-size: 0.85rem;
}
.footer a { color: var(--color-warm); transition: opacity var(--transition); }
.footer a:hover { opacity: 0.7; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger:not(.visible) > * { opacity: 0; transform: translateY(30px); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }
