/* ==========================================================================
   Carolynn & Co. — Lifestyle Concierge
   Design language: quiet, editorial layout (aligned to jabernathydesigns.com)
   with the brand's original brochure typography — Playfair Display for
   headings, EB Garamond for body copy, Montserrat for uppercase labels/nav,
   and italic Cormorant Garamond reserved for the wordmark and the personal
   sign-off lines. Light warm-white/tan ground, gold accents on interactive
   elements, hairline rules, no ornament.
   ========================================================================== */

:root {
  --paper:        #FFFEFC;   /* page ground — near-white */
  --paper-alt:    #FAF6EE;   /* soft light tan for alternating sections */
  --card:         #FFFFFF;
  --ink:          #2B2925;   /* soft charcoal — dark enough to read, never harsh black */
  --ink-soft:     #726A5C;   /* warm taupe for secondary text */
  --line:         #EFE9DD;   /* light hairline rule / divider color */
  --gold:         #C9A455;   /* warm gold fill — button backgrounds, active borders */
  --gold-deep:    #8A6A24;   /* deeper gold — link/hover text, holds 4.5:1 on paper */
  --shadow:       0 12px 28px rgba(60, 50, 30, 0.05);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "EB Garamond", Georgia, serif;
  --font-label:   "Montserrat", Arial, sans-serif;
  --font-script:  "Cormorant Garamond", Georgia, serif;

  --max-width: 1120px;
}

/* This site intentionally always renders the light palette above — no
   prefers-color-scheme: dark override — so the background never shifts
   to a dark tone based on the visitor's OS/browser setting. */

/* -------------------------------------------------------------------- */
/* Reset & base                                                          */
/* -------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.2;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* -------------------------------------------------------------------- */
/* Shared bits                                                           */
/* -------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.9em;
}
.eyebrow-small { font-size: 0.7rem; }

.divider {
  height: 1px;
  width: 56px;
  background: var(--ink);
  margin: 0.7em 0 1.7em;
}
.section-head .divider,
.relationships .divider,
.contact .divider {
  margin-left: auto;
  margin-right: auto;
}

.tagline-strip {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 1.1em;
  margin-top: 1.4em;
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 2.2em;
  border-radius: 0;
  border: 1.5px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.section {
  padding: 5.5rem 0;
}
.section-alt {
  background: var(--paper-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 { margin-bottom: 0.3em; }

.section-foot-tagline {
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3rem;
}

/* -------------------------------------------------------------------- */
/* Brand mark (script signature, used in header + footer)               */
/* -------------------------------------------------------------------- */
.brand-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
}
.brand-tag,
.brand-sub {
  display: block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

/* -------------------------------------------------------------------- */
/* Header                                                                */
/* -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 252, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.primary-nav a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2em;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-deep);
  border-color: var(--gold);
}
.primary-nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55em 1.2em;
  color: var(--gold-deep);
}
.primary-nav .nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 7.5rem 0 5.5rem;
  background: var(--paper);
}
.hero-inner { max-width: 720px; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-style: italic;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero .divider {
  margin-left: auto;
  margin-right: auto;
}
.hero .btn { margin-top: 1.2rem; }

/* -------------------------------------------------------------------- */
/* About / intro letter                                                 */
/* -------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.intro-letter h2 { font-size: 1.9rem; }

.meet-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 2.2rem 2.4rem;
  box-shadow: var(--shadow);
}
.signature-line {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  margin-top: 0.9em;
  margin-bottom: 0;
}

/* -------------------------------------------------------------------- */
/* Services                                                              */
/* -------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--card);
  padding: 2.2rem 1.7rem;
  text-align: left;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.1rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7em;
}

.service-card ul {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-card li {
  padding: 0.3em 0;
  border-bottom: 1px solid var(--line);
}
.service-card li:last-child { border-bottom: none; }

/* -------------------------------------------------------------------- */
/* Why us                                                                */
/* -------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.why-grid li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85em 0;
  border-bottom: 1px solid var(--line);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  color: var(--ink);
  font-size: 1rem;
}

/* -------------------------------------------------------------------- */
/* Relationships                                                        */
/* -------------------------------------------------------------------- */
.relationships-inner {
  max-width: 640px;
  text-align: center;
}
.relationships h2 { font-size: 1.8rem; }
.relationships p { color: var(--ink-soft); font-size: 1.1rem; }

/* -------------------------------------------------------------------- */
/* Contact                                                               */
/* -------------------------------------------------------------------- */
.contact-inner {
  max-width: 620px;
  text-align: center;
}
.script-line {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--ink);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.contact-list a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.contact-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.footer-brand .brand-script { font-size: 2rem; }

/* -------------------------------------------------------------------- */
/* Footer                                                                */
/* -------------------------------------------------------------------- */
.site-footer {
  background: var(--paper-alt);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}
.footer-inner {
  text-align: center;
  font-size: 0.9rem;
}
.footer-inner p { margin: 0.2em 0; opacity: 0.85; }
.footer-tagline {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .primary-nav.open { max-height: 320px; }
  .primary-nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav .nav-cta {
    margin: 0.9rem 0;
    text-align: center;
  }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 3.5rem; }
}
