*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scrollbar-gutter: stable;
}
body {
  background: #0a0a0a;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}
.text h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}

.brand {
  font-size: 38px;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.08em;
  color: #fff;
  
  text-decoration: none;
  font-style: italic;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Desktop — show links, hide hamburger */
.menu {
  display: flex;
  gap: 0;
  position: static;
  background: none;
  border: none;
  min-width: unset;
  padding: 0;
}

.menu a {
  border-left: none;
  border-bottom: 3px solid transparent;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
}

.menu a.active {
  border-bottom-color: #C9A84C;
  border-left: none;
  background: none;
}

.hamburger {
  display: none;
}

/* Mobile — hide links, show hamburger */
@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    background: #111;
    border-left: 0.5px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
    flex-direction: column;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    height: auto;
    padding: 14px 2rem;
    border-left: 3px solid transparent;
    border-bottom: none;
  }

  .menu a.active {
    border-left-color: #C9A84C;
    border-bottom: none;
    background: rgba(201, 168, 76, 0.06);
  }
}
.menu a {
  display: block;
  padding: 14px 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.menu a.active {
  color: #C9A84C;
  border-left-color: #C9A84C;
  background: rgba(201, 168, 76, 0.06);
}

/* ── Content ── */
.content {
  display: flex;
  align-items: center;
  gap: 18rem;
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 6rem 2rem;*/
  min-height: calc(100vh - 64px); /* 64px = nav height */
  padding: 2rem;
  opacity: 1;
}

.text {
    opacity: 0;
  animation: fadeUp 2s ease 0.1s forwards;
  flex: 1;
}

.text p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.945);
}

/* ── Photo placeholder — replace the div with an <img> tag ── */
.photo-placeholder {
  flex: 1;
  aspect-ratio: 4 / 5;
  max-width: 340px;
  background: #161616;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* To use a real photo, replace the .photo-placeholder div with:
   <img src="your-photo.jpg" alt="Description" class="photo" />
   and add this class: */
.photo {
  flex: none;
  width: 380px;
  aspect-ratio: unset;
  height: 100%;
  object-fit: contain;
    opacity: 0;
  animation: fadeDown 2s ease 0.4s forwards;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .content {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .photo-placeholder,
  .photo {
    max-width: 100%;
    width: 100%;
  }
  .brand {
    font-size: 20px;
  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}