/* ============================================================
   Nuthatch North — v5
   Clean rebuild. No patch layers.
   ============================================================ */

:root {
  --cream:      #F5EFE5;
  --paper:      #F1E9DC;
  --cream-deep: #E8DDD0;
  --cocoa:      #4F3D32;
  --cocoa-lt:   #7A6255;
  --copper:     #9C6B3D;
  --copper-2:   #B07A47;
  --dark:       #2D3433;
  --dark-2:     #252E2C;
  --warm-white: #FDFAF6;
  --sage:       #DCEBE6;

  --radius-sm:  12px;
  --radius:     20px;
  --radius-lg:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.16);

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.4;
  font-size: 21px;
  font-weight: 600;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── Skip link ── */
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 18px; top: 18px; width: auto; height: auto;
  padding: 10px 16px; background: var(--dark); color: var(--sage);
  border-radius: var(--radius-sm); z-index: 9999; font-size: 16px;
}

/* ── Container ── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  padding: 24px 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(79,61,50,.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 52px;
}
.brand .title {
  display: flex;
  flex-direction: column;
}
.brand .title strong {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--cocoa);
}
.brand .title span {
  font-size: 17px;
  opacity: .85;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navlinks a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  color: var(--cocoa-lt);
  transition: background var(--transition), color var(--transition);
}
.navlinks a:hover {
  background: rgba(79,61,50,.07);
  color: var(--cocoa);
  text-decoration: none;
}

/* ── CTA buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 21px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.3;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { text-decoration: none; }

.btn--outline {
  border-color: var(--copper);
  color: var(--cocoa);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(156,107,61,.06);
  border-color: var(--copper-2);
}
.btn--solid {
  background: var(--cocoa);
  color: var(--warm-white);
  border-color: var(--cocoa);
}
.btn--solid:hover {
  background: var(--dark);
  border-color: var(--dark);
}
.btn--copper {
  background: var(--copper);
  color: var(--warm-white);
  border-color: var(--copper);
}
.btn--copper:hover {
  background: var(--copper-2);
  border-color: var(--copper-2);
}

/* Nav CTA */
.navlinks .btn--outline {
  padding: 10px 18px;
  font-size: 19px;
}

/* ============================================================
   HERO  — open, airy, no card
   ============================================================ */
.hero {
  padding: 70px 0 80px;
  text-align: center;
  background: var(--cream);
}
.hero-logo {
  margin: 0 auto 32px;
  width: clamp(100px, 14vw, 160px);
}
.hero-eyebrow {
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 20px;
  opacity: .9;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--cocoa);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--cocoa);
  opacity: .92;
  max-width: 44ch;
  margin: 0 auto 14px;
  line-height: 1.5;
  font-weight: 700;
}
.hero-tagline {
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: .8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION RHYTHM  — alternating backgrounds
   ============================================================ */
.section--cream   { background: var(--cream); padding: 80px 0; }
.section--paper   { background: var(--paper); padding: 80px 0; }
.section--dark    { background: var(--dark);  padding: 80px 0; color: var(--warm-white); }

.section-label {
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
  opacity: 1;
}
.section--dark .section-label {
  color: var(--copper-2);
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-sub {
  font-size: clamp(21px, 2vw, 25px);
  opacity: .92;
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 48px;
}
.section--dark .section-title { color: var(--warm-white); }
.section--dark .section-sub   { color: rgba(253,250,246,.75); }

/* centered header block */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.section-tools {
  font-size: 19px;
  font-style: italic;
  opacity: .8;
  max-width: 58ch;
  margin: 16px auto 0;
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   SERVICES ACCORDION  — on paper background
   ============================================================ */
.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.acc-item {
  border-radius: var(--radius);
  border: 1px solid rgba(79,61,50,.14);
  background: var(--warm-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.acc-item[open] {
  box-shadow: var(--shadow);
}
.acc-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 23px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--cocoa);
  user-select: none;
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.acc-item[open] .acc-summary::after {
  content: "−";
}
.acc-body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(79,61,50,.08);
}
.acc-body p {
  font-size: 21px;
  line-height: 1.6;
  margin: 16px 0 12px;
  color: var(--cocoa-lt);
  text-align: left;
}
.acc-label {
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 10px;
  margin-top: 16px;
}
.acc-includes ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.acc-includes li {
  font-size: 20px;
  color: var(--cocoa);
  text-align: left;
}

/* ============================================================
   TIERS  — on dark background, cards lift off
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(79,61,50,.12);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--cocoa);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  background: var(--cream);
  border-color: rgba(79,61,50,.12);
  box-shadow: var(--shadow);
  color: var(--cocoa);
}
.card .tag {
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper-2);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(156,107,61,.35);
  padding-bottom: 12px;
}
.card--featured .tag {
  color: var(--copper);
}
.card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--cocoa);
}
.card--featured h3 {
  color: var(--cocoa);
}
.card p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: .92;
  text-align: left;
}
.card--featured p { opacity: 1; }
.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.card li {
  font-size: 19px;
  opacity: .9;
  text-align: left;
}
.card--featured li { opacity: 1; }

/* ============================================================
   CALLOUT  — bold dark strip
   ============================================================ */
.callout {
  background: var(--cocoa);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}
.callout h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.15;
}
.callout p {
  font-size: 21px;
  color: rgba(253,250,246,.90);
  text-align: left;
}
.callout-actions {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   SEPARATION SUPPORT  — quiet strip
   ============================================================ */
.sep-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(79,61,50,.10);
  text-align: center;
}
.sep-strip p {
  font-size: 20px;
  opacity: .8;
}
.sep-strip a {
  color: var(--copper);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(253,250,246,.7);
  padding: 48px 0 36px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer .brand img { width: 44px; opacity: .9; }
footer .brand .title strong { color: var(--warm-white); font-size: 21px; }
footer .brand .title span   { color: rgba(253,250,246,.7); }
footer p {
  font-size: 18px;
  opacity: .7;
  text-align: center;
}
footer small {
  font-size: 16px;
  opacity: .5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .callout { flex-direction: column; text-align: center; padding: 36px 28px; }
  .callout p { text-align: center; }
  .callout-actions { justify-content: center; }
}

/* Hero mobile action buttons — hidden on desktop */
.hero-mobile-actions {
  display: none;
}

@media (max-width: 640px) {
  /* Hide nav buttons on mobile */
  .navlinks { display: none; }

  /* Show hero buttons on mobile */
  .hero-mobile-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
  }
  .hero-mobile-actions .btn {
    font-size: 22px !important;
    padding: 14px 22px;
  }
  body {
    font-size: 26px !important;
  }
  .container { width: calc(100% - 28px); }
  header { padding: 16px 0 12px; }
  .brand img { width: 40px; }
  .brand .title strong { font-size: 22px !important; }
  .brand .title span { font-size: 16px !important; opacity: 1; }
  .navlinks a { font-size: 20px !important; padding: 6px 10px; }

  /* Hero */
  .hero { padding: 24px 0 28px; }
  .hero-logo { width: 60px !important; margin-bottom: 16px !important; }
  .hero-eyebrow { font-size: 18px !important; opacity: 1; }
  .hero-sub { font-size: 26px !important; opacity: 1; }
  .hero-tagline { font-size: 18px !important; opacity: 1; }

  /* Sections */
  .section--cream, .section--paper, .section--dark { padding: 48px 0; }
  .section-label { font-size: 19px !important; opacity: 1; }
  .section-sub { font-size: 24px !important; opacity: 1; }
  .section-title { font-size: 34px !important; }
  .section-tools { font-size: 23px !important; opacity: 1; }

  /* Accordion */
  .acc-summary { font-size: 26px !important; padding: 18px 18px; font-weight: 700; }
  .acc-summary::after { font-size: 30px !important; }
  .acc-body { padding: 0 18px 20px; }
  .acc-body p { font-size: 24px !important; opacity: 1; }
  .acc-label { font-size: 18px !important; opacity: 1; }
  .acc-includes li { font-size: 23px !important; opacity: 1; }

  /* Cards */
  .card h3 { font-size: 32px !important; }
  .card .tag { font-size: 18px !important; opacity: 1; }
  .card p { font-size: 24px !important; opacity: 1; }
  .card li { font-size: 23px !important; opacity: 1; }

  /* Callout */
  .callout { padding: 28px 20px; }
  .callout h3 { font-size: 28px !important; }
  .callout p { font-size: 24px !important; opacity: 1; }

  /* Buttons */
  .btn { font-size: 23px !important; }

  /* Sep strip */
  .sep-strip p { font-size: 23px !important; opacity: 1; }

  /* Footer */
  footer p { font-size: 22px !important; opacity: 1; }
  footer small { font-size: 19px !important; opacity: .8; }
  footer .brand .title strong { font-size: 22px !important; }

  /* About */
  .about-intro { font-size: 26px !important; }
  .about-heading { font-size: 20px !important; }
  .about-content p { font-size: 24px !important; opacity: 1; }

  /* Contact */
  .contact-heading { font-size: 30px !important; }
  .contact-form input,
  .contact-form textarea { font-size: 23px !important; }
  .contact-form label,
  .form-full { font-size: 21px !important; opacity: 1; }
  .contact-or { font-size: 23px !important; opacity: .8; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  border: 1px solid rgba(79,61,50,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder span {
  font-size: 16px;
  opacity: .4;
  font-style: italic;
  letter-spacing: .04em;
}
.about-content {
  display: grid;
  gap: 0;
}
.about-intro {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--cocoa);
  margin-bottom: 40px !important;
}
.about-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 36px 0 14px;
  opacity: .9;
}
.about-content p {
  font-size: 21px;
  line-height: 1.65;
  color: var(--cocoa);
  margin-bottom: 16px;
  text-align: left;
}
.about-cta {
  margin-top: 40px;
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo {
    position: static;
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cocoa);
  margin-bottom: 36px;
}
.contact-form {
  display: grid;
  gap: 14px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label,
.form-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--cocoa-lt);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 19px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79,61,50,.20);
  background: var(--warm-white);
  color: var(--cocoa);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  margin-top: 4px;
}
.contact-or {
  font-size: 18px;
  opacity: .45;
  font-style: italic;
  margin: 24px 0;
  text-align: center;
}
.contact-calendly {
  display: flex;
  justify-content: center;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Section divider bird ── */
.section-divider-bird {
  display: flex;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 0;
}
.section-divider-bird img {
  width: clamp(70px, 9vw, 110px);
  opacity: 0.7;
}
.section-divider-bird--dark img {
  opacity: 0.5;
}

/* ============================================================
   CALENDLY
   ============================================================ */
.calendly-trigger { cursor: pointer; }

/* ============================================================
   HAMBURGER MENU — WORKFLOW
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(79,61,50,.07); }
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 700px) {
  .hamburger { display: flex; }
  /* Hide desktop nav items */
  .navlinks a, .navlinks .btn { display: none; }

  .navlinks {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 40px 32px;
  }
  .navlinks.open {
    display: flex !important;
  }
  .navlinks.open a {
    display: block !important;
    font-size: 32px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(79,61,50,.12) !important;
    color: var(--cocoa) !important;
    background: none !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    text-align: center;
    width: 100%;
    text-decoration: none;
    font-weight: 600;
  }
  .navlinks.open a:last-child { border-bottom: none !important; }
  .hamburger[aria-expanded="true"] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  .hamburger[aria-expanded="true"] span { background: var(--cocoa); }
}

/* ── Form success message ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--cocoa);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 20px;
  color: var(--cocoa-lt);
  opacity: .85;
}

/* ── Headshot ── */
.about-headshot {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}
