/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* RESET + BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #1a1a1a;
  color: #ebebeb;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ebebeb; }

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* DECORATIVE DIVIDER */
.divider {
  width: 60px;
  height: 1px;
  background: #C9A84C;
  margin: 0 auto 32px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: #0d0d0d;
}
.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 10px 30px rgba(0,0,0,0.4), 0 0 60px rgba(201,168,76,0.12);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.hero-cover img:hover {
  transform: rotate(0deg);
}
.hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #fff;
}
.hero-text .subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: #C9A84C;
  margin-bottom: 12px;
}
.hero-text .claim {
  font-size: 1rem;
  color: #999;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
.cta-button {
  display: inline-block;
  background: #C9A84C;
  color: #0d0d0d;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  background: #dbb85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.cta-meta {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.03em;
}

/* ABOUT */
.about {
  padding: 100px 0;
  background: #1a1a1a;
}
.about h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}
.about .lead {
  text-align: center;
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 60px;
  color: #d4d4d4;
}
.about-intro {
  text-align: center;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 48px;
  color: #bbb;
  line-height: 1.8;
}
.about-closing {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #C9A84C;
  margin-top: 56px;
  letter-spacing: 0.01em;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.feature {
  text-align: center;
  padding: 32px 16px;
  border-top: 1px solid #C9A84C;
}
.feature h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.feature p {
  color: #aaa;
  font-size: 0.95rem;
}

/* PREVIEWS */
.previews {
  padding: 100px 0;
  background: #0d0d0d;
}
.previews h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.preview-grid figure {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.preview-grid img {
  transition: transform 0.5s ease;
}
.preview-grid figure:hover img {
  transform: scale(1.04);
}

/* OVER ROBIN */
.over-robin {
  padding: 100px 0;
  background: #1a1a1a;
}
.robin-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.robin-photo {
  position: sticky;
  top: 60px;
}
.robin-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.1);
}
.robin-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: #fff;
}
.robin-text p {
  color: #bbb;
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  line-height: 1.85;
}
.robin-text em {
  color: #fff;
  font-style: italic;
}
.robin-close {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #fff;
  margin-top: 24px;
  font-size: 1.1rem;
}
.robin-sign {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #C9A84C;
  font-size: 1rem;
  margin-top: 4px;
}

/* FINAL CTA */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  background: #1a1a1a;
}
.final-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #fff;
}
.final-cta p {
  margin-bottom: 32px;
  color: #aaa;
}

/* PULLQUOTE */
.pullquote {
  padding: 80px 24px;
  background: #0d0d0d;
  text-align: center;
}
.pullquote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: #C9A84C;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.pullquote blockquote::before { content: '\201C'; }
.pullquote blockquote::after  { content: '\201D'; }

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

/* FOOTER */
.site-footer {
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  background: #0d0d0d;
  border-top: 1px solid #222;
}
.site-footer a { color: #888; }

/* SECONDARY CTA */
.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: #ebebeb;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #555;
  border-radius: 4px;
  margin-left: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.cta-button-secondary:hover {
  border-color: #C9A84C;
  color: #C9A84C;
  background: rgba(201,168,76,0.05);
}

/* FLIPBOOK MODAL */
.flipbook-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.flipbook-modal[hidden] { display: none; }
.flipbook-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  padding: 8px 16px;
  line-height: 1;
  z-index: 1001;
  transition: color 0.2s;
}
.flipbook-close:hover { color: #C9A84C; }
.flipbook-frame {
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  max-height: 800px;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.flipbook-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-cover img {
    max-width: 320px;
    margin: 0 auto;
    transform: rotate(-1.5deg);
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .about, .previews, .final-cta, .over-robin {
    padding: 60px 0;
  }
  .robin-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .robin-photo {
    position: static;
  }
  .robin-photo img {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }
  .cta-button-secondary {
    margin-left: 0;
    margin-top: 12px;
    display: block;
    text-align: center;
  }
  .flipbook-modal { padding: 20px 12px; }
  .flipbook-frame { height: 85vh; }
}
