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

:root {
  --black: #111111;
  --white: #fafaf8;
  --gray: #888;
  --light: #f0ede8;
  --border: #ddd;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
header {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 36px 24px 28px;
}
.header-eyebrow { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: #aaa; margin-bottom: 10px; }
.header-address { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; letter-spacing: 0.05em; line-height: 1.1; }
.header-meta { margin-top: 10px; font-size: 11px; letter-spacing: 0.25em; color: #999; text-transform: uppercase; }
.header-price { margin-top: 12px; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #fff; letter-spacing: 0.1em; }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
nav::-webkit-scrollbar { display: none; }
nav a {
  display: inline-block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 18px 20px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
nav a.active { color: var(--black); border-bottom-color: var(--black); }
nav a:hover { color: var(--black); }

/* ── Page content ── */
main { flex: 1; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.section { max-width: 1100px; margin: 0 auto; padding: 64px 32px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300; letter-spacing: 0.05em; margin-bottom: 12px; }
.section-rule { width: 48px; height: 1px; background: var(--black); margin-bottom: 36px; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 14px 40px; background: var(--black); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s; }
.btn:hover { background: #333; }
.btn-outline { background: transparent; border: 1px solid var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── Agent Footer ── */
.agent-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 32px;
  border-top: 1px solid #222;
}
.agent-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.agent-footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 180px;
  gap: 48px;
  align-items: center;
}
.af-photo-col, .af-champagne-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.af-agent-img {
  width: 100%;
  max-width: 240px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}
.af-champagne-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  opacity: 0.92;
}
.af-text-col {
  padding: 8px 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-left: 48px;
  padding-right: 48px;
}
.af-eyebrow {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.af-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.af-tagline {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.af-bio {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.af-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.af-contacts a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.af-contacts a:hover { color: var(--white); }
.af-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 10px;
  padding: 12px 32px;
  letter-spacing: 0.2em;
}
.af-btn:hover { background: var(--white); color: var(--black); }
@media (max-width: 820px) {
  .agent-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .af-text-col {
    border: none;
    padding: 0;
  }
  .af-contacts { align-items: center; }
  .af-agent-img { max-width: 280px; height: 220px; }
  .af-champagne-img { max-width: 120px; margin: 0 auto; }
}

/* ── Site Footer ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 40px;
  border-top: 1px solid #222;
}
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-text { flex: 1; }
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-bio {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}
@media (max-width: 640px) {
  .site-footer-inner { flex-direction: column; text-align: center; }
  .footer-photo { width: 180px; height: 180px; }
  .footer-bio { margin: 0 auto; }
}

/* ── Footer champagne image ── */
.footer-champagne {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

/* ── Footer contact links ── */
.footer-contacts {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-contacts a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--white); }

/* ── Footer contacts ── */
.footer-contacts {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contacts a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: #ffffff; }
.footer-contact-divider {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}
.footer-email {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* ── Home body text ── */
.home-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 40px;
}
.home-body p {
  font-size: 0.95rem;
  line-height: 2;
  color: #444;
  margin-bottom: 28px;
}
.home-body p:last-child { margin-bottom: 0; }

/* ── Header subtitle ── */
.header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
