/* =========================================================
   Julie Lichty — julielichty.com
   Source of truth: _source_docs/julie-lichty-website-design.md
   Licensed fonts self-hosted from /assets/fonts/.
   Google-font fallbacks (Barlow, EB Garamond, Cormorant Garamond)
   kept in the <link> tag as a safety net.
   ========================================================= */

@font-face {
  font-family: "Tablet Gothic";
  src: url("/assets/fonts/TabletGothic-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tablet Gothic";
  src: url("/assets/fonts/TabletGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tablet Gothic";
  src: url("/assets/fonts/TabletGothic-SemiBold.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tablet Gothic";
  src: url("/assets/fonts/TabletGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garamond Premier Pro";
  src: url("/assets/fonts/GaramondPremierPro-Display.otf") format("opentype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garamond Premier Pro";
  src: url("/assets/fonts/GaramondPremierPro-ItalicDisplay.otf") format("opentype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ---- Fonts (self-hosted Adobe originals; Google fonts as fallbacks) ---- */
  --font-sans:         "Tablet Gothic", "Barlow", Helvetica, Arial, sans-serif;
  --font-serif:        "Garamond Premier Pro", "EB Garamond", Georgia, serif;
  --font-serif-italic: "Garamond Premier Pro", "Cormorant Garamond", Georgia, serif;
  --font-ui:           "Open Sans", Helvetica, Arial, sans-serif;

  /* ---- Colors ---- */
  --color-ink: #333333;              /* primary headlines */
  --color-body: #2D3644;             /* body + footer text */
  --color-muted: #666666;            /* captions, copyright */
  --color-accent: #2EA3F2;           /* brand blue */
  --color-accent-hover: #1a87d1;
  --color-inverse: #FFFFFF;
  --color-nav-inactive: rgba(0,0,0,0.6);
  --color-input-text: #4E4E4E;
  --color-link-hover-soft: #DCF0FD;
  --color-bg: #FFFFFF;
  --color-cream: #f4f2ed;
  --color-card: rgba(230, 230, 230, .72);
  --color-footer-bg: #15263F;
  --color-navy: #15263F;
  --color-card-contact: #C9CDD2;
  --color-button-border: #74B5AF;
  --color-teal: #74B5AF;

  /* ---- Layout ---- */
  --container: 1280px;
  --nav-h: 84px;
  --shadow-sm: 0 2px 8px rgba(45, 54, 68, .06);
  --shadow-md: 0 10px 30px rgba(45, 54, 68, .12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-muted);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-body); text-decoration: underline; transition: color .2s ease; }
a:hover { color: #74B5AF; }

/* ---------- Typography primitives ---------- */
h1, h2, h3, h4, h5 {
  color: var(--color-ink);
  margin: 0 0 .6em;
  line-height: 1.2;
}
p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 1em;
}
em { font-style: italic; }
strong { font-weight: 700; }

.serif { font-family: var(--font-serif); font-weight: 500; }
.serif-italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* ---------- Top nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid #eee;
  height: var(--nav-h);
  display: flex; align-items: center;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.brand-wordmark { display: inline-flex; align-items: center; }
.brand-wordmark img { height: 44px; width: auto; display: block; }
.brand-wordmark:hover { text-decoration: none; opacity: .85; }
@media (max-width: 700px) {
  .brand-wordmark img { height: 36px; }
  .container { padding: 0 12px; }
  .site-header .container { padding: 0 4px 0 4px; }
  .site-footer .container { padding: 0 24px; }
}
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  font-size: 1.6rem; color: var(--color-ink); padding: 8px;
}
.nav-list {
  display: flex; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-nav-inactive);
  padding: 10px 0;
  position: relative;
  text-decoration: none;
}
.nav-list a:hover { color: #74B5AF; text-decoration: none; }
.nav-list a[aria-current="page"] { color: #74B5AF; }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: #74B5AF;
}

/* ---------- Banner (signature block) ---------- */
.banner {
  position: relative;
  min-height: 540px;
  padding: 0;
  display: flex; align-items: center;
  background-size: cover;
  background-position: center;
}
.banner--flip-bg {
  background-image: none !important;
  overflow: hidden;
}
.banner--flip-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: inherit;
  background: var(--flip-bg) center/cover no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}
.banner--flip-bg > * { position: relative; z-index: 1; }
.banner-card {
  background: var(--color-card);
  backdrop-filter: blur(2px);
  padding: 44px 60px 44px clamp(24px, 7vw, 120px);
  max-width: 820px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  margin-left: 0;
}
.banner-card .line-1 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  color: var(--color-ink);
  line-height: 1.3;
  margin: 0 0 .35em;
}
.banner-card .line-2 {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  color: var(--color-ink);
  line-height: 1.05;
  margin: 0;
}

/* ---------- Buttons ---------- */
/* Primary CTA: "LET'S TALK" / "LET'S GET STARTED" — teal border + offset shadow */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
  background: transparent;
  border: 2px solid var(--color-button-border);
  border-radius: 12px;
  padding: 5px 49px;
  box-shadow: 3px 3px 0 0 var(--color-button-border);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.btn-primary::after {
  content: " \203A";
  display: inline-block;
  margin-left: 8px;
  color: var(--color-body);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  box-shadow: 5px 5px 0 0 var(--color-button-border);
  transform: translate(-1px, -1px);
  text-decoration: none;
  color: var(--color-body);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-primary:active {
  box-shadow: 1px 1px 0 0 var(--color-button-border);
  transform: translate(2px, 2px);
}

/* Form submit: "SUBMIT" — teal border, white fill, no shadow */
.btn-submit,
.contact-form button[type="submit"],
input[type="submit"] {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-body);
  background: #FFFFFF;
  border: 2px solid var(--color-button-border);
  border-radius: 6px;
  padding: 12px 44px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover,
.contact-form button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--color-button-border);
  color: #FFFFFF;
}

/* Text-style link CTA: footer "CONTACT ME »" etc. */
.link-cta {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-body);
  text-decoration: none;
}
.link-cta:hover { color: var(--color-accent); text-decoration: none; }

/* Legacy aliases so any remaining old classes still render as primary */
.btn, .btn-talk, .btn-arrow, .btn-accent, .btn-inverse, .btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
  background: transparent;
  border: 2px solid var(--color-button-border);
  border-radius: 12px;
  padding: 5px 49px;
  box-shadow: 3px 3px 0 0 var(--color-button-border);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn::after, .btn-talk::after, .btn-arrow::after { content: " \203A"; margin-left: 8px; font-weight: 700; }
.btn:hover, .btn-talk:hover, .btn-arrow:hover {
  box-shadow: 5px 5px 0 0 var(--color-button-border);
  transform: translate(-1px, -1px);
  text-decoration: none;
}

/* ---------- Intro / section blocks ---------- */
.intro {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.intro .eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin: 0 0 18px;
}
.section-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 53px);
  line-height: 1.1;
  color: var(--color-ink);
  text-align: center;
  margin-bottom: 24px;
}
.section-italic-serif {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 42px);
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0 0 .6em;
}
.page-hero-h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 36px);
  line-height: 1.3;
  color: var(--color-ink);
}
.page-title-italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 76px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--color-ink);
  margin: 0 0 .4em;
}
.section-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 30px);
  line-height: 1;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 24px;
}
.lede {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-body);
  max-width: 720px; margin: 0 auto 28px;
}
.intro .accent {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--color-ink);
}

/* ---------- Two-column feature ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.col-image img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ---------- Tripod ---------- */
.tripod {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.tripod-item {
  text-align: center;
  padding: 28px 20px;
  border-top: 2px solid var(--color-accent);
}
.tripod-item h3 {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--color-ink);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.tripod-item p { color: var(--color-body); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--color-cream);
  padding: 80px 48px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: .35;
  position: absolute;
  top: 24px; left: 44px;
}
.testimonial-header {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 46px);
  line-height: 1.1;
  color: var(--color-body);
  margin-bottom: 24px;
}
.testimonial-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--color-body);
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: #fff;
  color: var(--color-ink);
  text-align: center;
  padding: 80px 20px;
}
.cta-strip h2 { color: var(--color-ink); font-size: clamp(1.3rem, 1.8vw, 1.75rem); line-height: 1.3; margin-bottom: 24px; }
.cta-strip .accent {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--color-ink);
}
.cta-strip p { color: var(--color-body); max-width: 680px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,.85);
  padding: 0;
  font-family: var(--font-sans);
  font-size: 14px;
}
.site-footer a { color: rgba(255,255,255,.9); }
.site-footer a:hover { color: #fff; text-decoration: none; }

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  padding: 64px 0;
  gap: 48px;
}
.footer-left {
  padding: 0 48px 0 calc(50vw - 640px + 24px);
}
.footer-left h4 {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.footer-nav li {
  margin: 0;
  padding: 0;
  line-height: 1.9;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: none; color: #74B5AF; }
.footer-brand { margin: 0 0 24px; }
.footer-brand img { height: 38px; width: auto; display: block; }

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-right {
  background: #e3e3e3;
  color: var(--color-body);
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}
.footer-right strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-body);
  margin-bottom: 10px;
}
.footer-right p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-body);
  margin: 0 0 14px;
  line-height: 1.6;
}
.footer-right a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-ink);
  text-decoration: none;
}
.footer-right a:hover { color: #74B5AF; text-decoration: none; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-left { padding: 56px 24px 32px; }
  .footer-right { padding: 40px 24px; border-radius: 10px; }
}

/* ---------- FAQ list ---------- */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 26px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-ink);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 4px; top: -4px;
  font-size: 1.9rem; font-weight: 300;
  color: #3d7d78;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding-top: 14px;
  color: var(--color-body);
}
.faq-item .answer p {
  word-spacing: .05em;
  margin-bottom: 1em;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Page hero ---------- */
.page-hero {
  background: var(--color-cream);
  padding: 88px 0 64px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.page-hero .eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin: 0 0 18px;
}
.page-hero h1 { font-weight: 700; }
.page-hero .accent {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--color-ink);
}
.page-hero p { max-width: 680px; margin: 0 auto; color: var(--color-body); }

/* ---------- Contact form ---------- */
.contact-form-section {
  padding: 64px 24px 80px;
  background: #fff;
}
.contact-form {
  display: grid;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form .field { display: block; }
.contact-form label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  display: block;
}
.contact-form .req { color: #b00; font-weight: 700; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-input-text);
  background: #fff;
  line-height: 1.5;
}
.contact-form .field-short input {
  max-width: 460px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .sub-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11.38px;
  letter-spacing: .67px;
  color: var(--color-muted);
  margin-top: 4px;
}
.contact-form .pref-field {
  border: 0;
  padding: 0;
  margin: 0;
}
.contact-form .pref-field legend {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  padding: 0;
  margin-bottom: 12px;
}
.contact-form .pref-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.contact-form .pref-options label {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.contact-form .pref-options input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--color-accent);
  margin: 0;
}
.contact-form .submit-row { margin-top: 8px; }
.contact-form .btn-submit {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-body);
  background: transparent;
  border: 2px solid var(--color-button-border);
  border-radius: 6px;
  padding: 10px 44px;
  cursor: pointer;
  transition: all .3s ease;
}
.contact-form .btn-submit:hover {
  background: var(--color-button-border);
  color: #fff;
}

/* ---------- Homepage full-bleed banner (baked-in composite) ---------- */
.hero-full {
  display: block;
  line-height: 0;
  background: var(--color-navy);
}
.hero-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Testimonial slider (original live-site style) ---------- */
.testimonial-section {
  background: #e7e7e7;
  padding: 96px 24px;
  display: flex;
  justify-content: center;
}
.testimonial-slider {
  position: relative;
  max-width: 1000px;
  width: 100%;
}
.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  padding: 0 60px;
}
.testimonial-slide .testimonial-original {
  margin: 0;
  max-width: 760px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-body);
  cursor: pointer;
  padding: 0 12px;
  z-index: 2;
  opacity: .55;
  transition: opacity .2s ease;
}
.slider-btn:hover { opacity: 1; }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(116,181,175,.35);
  transition: background .2s ease;
}
.slider-dots .dot.is-active { background: #74B5AF; }
@media (max-width: 700px) {
  .testimonial-slide { padding: 0 8px; }
  .slider-btn { font-size: 2.2rem; padding: 0 4px; }
}
.testimonial-original {
  background: #fff;
  max-width: 760px;
  width: 100%;
  padding: 72px 72px 64px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.testimonial-original-header {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 42px);
  line-height: 1.15;
  color: var(--color-body);
  margin: 0 0 28px;
  font-style: italic;
}
.testimonial-original-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: var(--color-body);
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .testimonial-section { padding: 64px 8px; }
  .testimonial-original { padding: 48px 20px 40px; }
}

/* ---------- Legacy navy hero (kept in case other pages use it) ---------- */
.hero-navy {
  background: var(--color-navy) url('/assets/images/header-banner-background.png') center/cover no-repeat;
  color: #fff;
  min-height: 520px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}
.hero-navy .hero-text {
  align-self: center;
}
.hero-navy .hero-text {
  padding: 60px 40px 60px 80px;
}
.hero-navy .hero-eyebrow {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: rgba(255,255,255,.75);
  margin: 0 0 28px;
  letter-spacing: .02em;
}
.hero-navy .hero-stack {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 115px);
  line-height: 1.02;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
}
.hero-navy .hero-stack span { display: block; }
.hero-navy .hero-image {
  position: relative;
  width: 100%;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
}
.hero-navy .hero-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}
@media (max-width: 900px) and (min-width: 701px) {
  .hero-navy .hero-text { padding: 40px 28px 40px 40px; }
  .hero-navy .hero-stack { font-size: clamp(2.6rem, 9vw, 5rem); }
  .hero-navy { min-height: 400px; }
  .hero-navy .hero-image { min-height: 400px; }
}
@media (max-width: 700px) {
  .hero-navy {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }
  .hero-navy .hero-text { padding: 24px 12px 24px 20px; align-self: center; }
  .hero-navy .hero-stack { font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.35; }
  .hero-navy .hero-image { min-height: 260px; }
  .hero-navy .hero-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    height: auto;
    width: 130%;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}

/* ---------- Contact page navy hero ---------- */
.hero-contact {
  background: var(--color-navy) url('/assets/images/header-banner-background.png') center/cover no-repeat;
  padding: 80px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-contact-card {
  background: transparent;
  padding: 44px 72px 44px clamp(24px, 7vw, 120px);
  max-width: 820px;
  width: 100%;
  margin-left: 0;
}
.hero-contact-card h1 {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 76px);
  letter-spacing: 4px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

/* ---------- Clean navy title hero (FAQ, Contact — white italic h1, no card) ---------- */
.hero-page-title {
  background: var(--color-navy) url('/assets/images/header-banner-background.png') center/cover no-repeat;
  padding: 80px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-page-title h1 {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.1;
}

/* ---------- About page "About Me" card ---------- */
.about-me-card {
  background: #d5e4e5;
  color: var(--color-body);
  max-width: 1180px;
  margin: 150px auto 0;
  padding: 190px 56px 80px;
  text-align: center;
  position: relative;
}
.about-me-card .section-label { color: var(--color-ink); margin-bottom: 28px; }
.about-me-card p {
  color: var(--color-body);
  max-width: 680px;
  margin: 0 auto 1.2em;
  line-height: 1.9;
}
.about-me-card .portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  box-shadow: none;
}
@media (max-width: 700px) {
  .about-me-card {
    max-width: none;
    margin: 120px 16px 0;
    padding: 150px 24px 48px;
  }
  .about-me-card .portrait {
    width: 220px;
    height: 220px;
    top: -110px;
  }
}
.about-me-card .section-label {
  margin: 0 0 20px;
}
.about-me-card p {
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 1em;
}

/* ---------- Modernized testimonial ---------- */
.testimonial-modern {
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 40px;
  background: var(--color-cream);
  position: relative;
  border-left: 3px solid var(--color-accent);
}
.testimonial-modern .tm-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--color-accent);
  line-height: 1;
  position: absolute;
  top: 18px; left: 24px;
  opacity: .4;
}
.testimonial-modern .tm-header {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 38px);
  line-height: 1.2;
  color: var(--color-body);
  margin: 0 0 20px;
  text-align: center;
}
.testimonial-modern .tm-body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .5px;
  color: var(--color-body);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid .testimonial-modern {
  margin: 0;
  padding: 40px 36px;
}
@media (max-width: 800px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- "Let's connect" mini card (footer area, About/Contact pages) ---------- */
.connect-card {
  background: #eaeaea;
  padding: 28px 32px;
  color: var(--color-ink);
}
.connect-card strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--color-body);
  margin-bottom: 6px;
}
.connect-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-body);
  margin: 0 0 10px;
  line-height: 1.6;
}
.connect-card a {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-ink);
}

/* ---------- LET'S TALK outlined button (used on live site) ---------- */
.btn-talk {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: transparent;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
}
.btn-talk:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 56px 0; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-text { order: 0; }
  .tripod { grid-template-columns: 1fr; }
  .banner-card { max-width: 520px; padding: 34px 36px; }
  .banner { min-height: 420px; }
  .hero-contact { padding: 60px 0 72px; }
}
@media (max-width: 700px) {
  .nav-toggle { display: inline-block; }
  .site-header nav { display: contents; }
  .nav-list {
    display: none;
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid #eee;
    gap: 16px;
  }
  .nav-list.is-open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
  .banner-card { max-width: 86%; padding: 24px 20px; }
  .banner { min-height: 420px; background-position: right center; }
  .banner-about { background-position: 80% center; }
  .hero-contact-card { padding: 32px 24px; }
  .hero-page-title { padding: 60px 24px 72px; }
  .hero-page-title h1 { letter-spacing: 1px; }
}
@media (max-width: 600px) {
  .contact-form .name-row { grid-template-columns: 1fr; }
  .contact-form .field-short input { max-width: 100%; }
}
@media (max-width: 500px) {
  .banner { min-height: 380px; }
  .page-title-italic { letter-spacing: 2px; }
  .banner-card { max-width: 94%; }
  .faq-item summary { font-size: 17px; }
}
