@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400&display=swap');

:root {
  --bg-primary: #FBFBFB;
  --bg-alabaster: #F9F8F6;
  --text-charcoal: #1C1C1C;
  --text-muted: #252525;
  --accent-taupe: #D4C5B9;
  --border-fine: #E7DFD8;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-charcoal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Typography */
.text-huge {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

.text-large {
  font-size: clamp(2rem, 5vw, 4rem);
}

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

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

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

/* Header */
header {
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  mix-blend-mode: difference;
  color: #fff;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: inherit;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
  margin-left: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--bg-alabaster);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 5vw;
}

/* Sections */
section {
  padding: 10rem 0;
}

.section-editorial {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.section-editorial:nth-child(even) {
  flex-direction: row-reverse;
}

.editorial-img {
  flex: 1;
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.editorial-text {
  flex: 1;
  padding: 2rem;
}

.editorial-text h2 {
  margin-bottom: 2rem;
}

.editorial-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Buttons */
.btn-luxury {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--text-charcoal);
  color: var(--text-charcoal);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.btn-luxury:hover {
  background-color: var(--text-charcoal);
  color: var(--bg-primary);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border-fine);
}

.portfolio-item {
  aspect-ratio: 3/4;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.portfolio-item:hover img {
  filter: grayscale(0%);
}

/* Footer */
footer {
  padding: 5rem 5vw;
  background-color: var(--text-charcoal);
  color: var(--bg-primary);
  display: flex;
  justify-content: space-between;
}
