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

:root {
  --bg-color: #ffffff;
  --text-main: #111111;
  --text-muted: #888888;
  --accent: #d4af37; /* Pale Gold */
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Editorial Typography */
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; }
.text-gold { color: var(--accent); }

/* Header */
header {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-main);
}
.nav-btn {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 0.5rem;
}

/* Asymmetrical Hero */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.hero-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.hero-text {
  position: relative;
  z-index: 2;
  background: white;
  padding: 4rem;
  width: 50%;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.hero-text h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Trust Banner */
.editorial-trust {
  display: flex;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 4rem 0;
  margin: 6rem 0;
}
.trust-col {
  flex: 1;
  text-align: center;
  border-right: 1px solid #eee;
}
.trust-col:last-child { border-right: none; }
.trust-col h4 { font-size: 3rem; font-family: var(--font-display); color: var(--accent); }
.trust-col p { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* Asymmetrical Sections */
.asym-section {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 10rem;
}

.asym-section.reverse {
  grid-template-columns: 5fr 4fr;
}

.asym-img { width: 100%; height: 600px; object-fit: cover; }

.asym-content h2 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
.asym-content p { font-weight: 200; font-size: 1.1rem; margin-bottom: 2rem; color: #444; }

.editorial-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--text-main);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.editorial-btn:hover { background: var(--accent); }

/* Reviews */
.reviews-section { background: #fafafa; padding: 8rem 0; }
.review-card { padding: 3rem; background: white; border: 1px solid #eee; }

/* FAQ */
.faq-wrap { margin-top: 4rem; border-top: 1px solid #111; }
.faq-row { border-bottom: 1px solid #111; padding: 2rem 0; cursor: pointer; }
.faq-q { font-family: var(--font-display); font-size: 1.5rem; display: flex; justify-content: space-between; }
.faq-a { font-weight: 200; margin-top: 1rem; color: var(--text-muted); display: none; }
.faq-row.active .faq-a { display: block; }

/* Form */
.mag-form input, .mag-form select, .mag-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--text-main);
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  background: transparent;
}
.mag-form input:focus { outline: none; border-bottom-color: var(--accent); }
