@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --black: #0A0A0A;
  --dark: #141414;
  --dark-mid: #1E1E1E;
  --dark-card: #1A1A1A;
  --blue: #4A7FC1;
  --blue-light: #6B9FE4;
  --blue-dim: rgba(74, 127, 193, 0.15);
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #888;
  --white: #FFFFFF;
  --off-white: #E8E4DF;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(92, 61, 46, 0.15);
  --radius: 12px;
  --nav-height: 88px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center;
  padding: 0 2rem;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}

.nav-facebook {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  margin-left: 2rem;
}

.nav-facebook:hover { color: white; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.98);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-dark);
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--blue-light); }

.nav-mobile .nav-mobile-fb {
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  display: none;
}

.nav-logo img {
  height: 64px;
  max-width: 240px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue-light); }

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-height); min-height: 100vh; }

/* ── HERO ── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 3rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7FC1' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; max-width: 700px; margin: 0 auto; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-short {
  padding: 4rem 2rem 3rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-blue {
  background: var(--blue);
  color: white;
}
.btn-blue:hover { background: var(--blue-light); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  margin-left: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

/* ── SECTION ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0;
}

/* ── RATES TABLE ── */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.rates-table th {
  background: var(--black);
  color: white;
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rates-table th:first-child { border-radius: 8px 0 0 0; }
.rates-table th:last-child { border-radius: 0 8px 0 0; }

.rates-table td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:nth-child(even) td { background: var(--cream); }

/* ── HIGHLIGHT STRIP ── */
.highlight-strip {
  background: var(--blue-dim);
  border-left: 3px solid var(--blue);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* ── ABOUT BIO ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.bio-aside {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.bio-initials {
  width: 80px; height: 80px;
  background: var(--black);
  color: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.bio-aside h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.bio-aside p { color: var(--text-light); font-size: 0.875rem; }

.bio-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.bio-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-info a { color: var(--blue); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer a { color: var(--blue-light); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-facebook { display: none; }
  .nav-logo { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: flex-start; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
  .hero { padding: 1rem 1.5rem 8rem; }
  .hero img { height: 160px !important; margin-bottom: 0.75rem !important; }
  .hero h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 1rem; }
}
