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

:root {
  --navy:     #0b0f1c;
  --navy-mid: #101627;
  --gold:     #c9a050;
  --gold-lt:  #e2c07a;
  --white:    #f5f0e8;
  --muted:    #7a7a90;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 6rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PG monogram */
.monogram {
  position: relative;
  width: 130px;
  height: 140px;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 18px rgba(201,160,80,0.25));
}

.monogram span {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 115px;
  line-height: 1;
  color: var(--gold);
  font-style: italic;
  user-select: none;
  pointer-events: none;
}

.letter-p { top: 0; left: 0; }
.letter-g { top: 38px; left: 44px; color: var(--gold-lt); mix-blend-mode: screen; }

/* Brand lockup */
.brand-name { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }

h1.name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.55rem;
}

.divider .line { display: block; width: 55px; height: 1px; background: var(--gold); }

.subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

.tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--muted);
  font-weight: 300;
  max-width: 460px;
  margin-top: 0.25rem;
}

/* ── Shared ────────────────────────────────────────── */
.container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* ── About ─────────────────────────────────────────── */
.about {
  padding: 7rem 1.5rem;
  background: var(--navy-mid);
  text-align: center;
}

.about-text {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #a8a4b8;
  font-weight: 300;
  line-height: 1.95;
  max-width: 660px;
  margin: 0 auto;
}

/* ── Contact ───────────────────────────────────────── */
.contact { padding: 7rem 1.5rem; text-align: center; }

.contact-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--gold); }

.contact-icon {
  color: var(--gold);
  font-size: 1.05rem;
  width: 1.4rem;
  text-align: center;
  flex-shrink: 0;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(201,160,80,0.12);
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 480px) {
  .monogram { width: 100px; height: 110px; }
  .monogram span { font-size: 90px; }
  .letter-g { top: 30px; left: 34px; }
}
