/* ── VICKY LANGFORD – SHARED STYLES ── */

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

:root {
  --white:  #FFFFFF;
  --light:  #F8F7F5;
  --dark:   #2C2C2C;
  --teal:   #0F756D;
  --cream:  #FBFBF9;
  --black:  #000000;
  --radius: 6.4px;
  --max:    1100px;
  --pad:    4vw;
}

body { font-family: 'Lato', sans-serif; font-weight: 400; color: var(--black); background: var(--white); }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 252, 249, 0.75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(234, 230, 222, 0.8);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--pad);
}

.site-title a {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.75rem; color: var(--black); text-decoration: none;
}

nav { display: flex; gap: 3.5rem; }
nav a {
  font-family: 'Lato', sans-serif; font-size: 0.95rem;
  color: var(--black); text-decoration: none;
  letter-spacing: 0.04em;
}
nav a:hover { text-decoration: underline; text-underline-offset: 6px; }
nav a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 1px; background: var(--black); }

.mobile-nav { display: none; flex-direction: column; background: var(--white); padding: 1.5rem var(--pad); border-top: 1px solid #e0e0e0; }
.mobile-nav a { font-family: 'Lato', sans-serif; font-size: 1.2rem; color: var(--black); text-decoration: none; padding: 0.75rem 0; border-bottom: 1px solid #e8e8e8; }
.mobile-nav.open { display: flex; }

/* ── SECTIONS ── */
section { width: 100%; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6vw var(--pad);
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15; margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2; margin-bottom: 1rem;
}

p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.subheading {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--black);
}

ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
ul li { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal); color: var(--cream);
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 400;
  padding: 1.1rem 4rem; min-width: 320px; text-align: center;
  border-radius: var(--radius);
  text-decoration: none; border: none; cursor: pointer;
}

.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--teal);
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 400;
  padding: 0.9rem 3rem; min-width: 220px; text-align: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--teal);
  text-decoration: none; cursor: pointer;
}

/* ── HERO (centered) ── */
.hero { background: var(--white); }
.hero .container {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 2rem; padding-top: 14vw; padding-bottom: 10vw;
  max-width: var(--max);
}

.body-large {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.7;
  letter-spacing: 0.015em;
  max-width: 1100px;
}

/* ── SECTION BACKGROUNDS ── */
.bg-white { background: var(--white); }
.bg-light  { background: var(--light); }

/* ── CENTERED SECTION ── */
.section-centered .container {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1.75rem;
  max-width: var(--max);
}


.section-centered ul {
  text-align: left;
  align-self: flex-start;
}

.section-centered p strong,
.section-centered strong {
  text-align: left;
  align-self: flex-start;
}

.section-centered .container h3 + ul {
  margin-top: -0.5rem;
}

/* ── LEFT-ALIGNED SECTION ── */
.section-left .container {
  display: flex; flex-direction: column;
  align-items: flex-start; text-align: left;
  gap: 1.5rem;
  margin-left: 0;
  max-width: 1100px;
}

a.teal-link {
  color: var(--teal);
  text-decoration: none;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
a.teal-link:visited { color: var(--teal); }
a.teal-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 3rem var(--pad); text-align: center; }
footer p { color: var(--cream); font-size: 0.875rem; line-height: 2; max-width: none; }
footer a { color: var(--cream); text-decoration: underline; }
footer a:hover { opacity: 0.8; }
footer .sep { margin: 0 0.75rem; opacity: 0.5; text-decoration: none; display: inline-block; }

/* ── MOBILE ── */
@media (max-width: 767px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  nav { display: none; }
  .burger { display: flex; }
  .btn-primary { min-width: unset; width: 100%; }
  .btn-secondary { min-width: unset; width: 100%; }
  .hero .container { padding-top: 14vw; padding-bottom: 10vw; }
}
