/* The NeSmith Agency — shared styles
   Brand: navy #0A1F44 · gold #C9A227 · cream #F5F0E6 */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --navy: #0A1F44;
  --navy-deep: #061530;
  --navy-mid: #12305e;
  --gold: #C9A227;
  --gold-hover: #b8921f;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --cream: #F5F0E6;
  --cream-dark: #ebe4d6;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: rgba(10, 31, 68, 0.12);
  --shadow: 0 4px 24px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 31, 68, 0.14);
  --radius: 10px;
  --max: 1120px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", Times, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a:hover { color: var(--gold); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.section { padding: 4rem 0; }
.section--tight { padding: 2.75rem 0; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* ----- Header / Nav ----- */
.site-header {
  background: var(--navy);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}

.brand-lockup:hover { color: var(--gold); }

.brand-lockup .wordmark { display: none; }

.brand-lockup img {
  height: 52px;
  width: auto;
  max-width: min(240px, 48vw);
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  background: var(--cream);
}

.brand-lockup .wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.brand-lockup .wordmark span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(245, 240, 230, 0.35);
  border-radius: 4px;
  padding: 0.5rem 0.55rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
}

.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.65rem;
}

.site-nav.is-open { display: flex; }

.site-nav a {
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta { display: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.28);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
  border-color: var(--gold-hover);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn--full { width: 100%; }

/* ----- Hero ----- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--cream);
  padding: 3.75rem 0 4.25rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 16ch;
  letter-spacing: 0.01em;
}

.hero__tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.hero__lead {
  font-size: 1.08rem;
  opacity: 0.92;
  max-width: 34rem;
  margin-bottom: 1.85rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__lockup {
  justify-self: center;
  width: min(320px, 88vw);
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.hero__lockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.services-bar {
  background: var(--navy-deep);
  color: var(--gold);
  text-align: center;
  padding: 0.95rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ----- Cards / Grid ----- */
.section-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

.section--navy .section-header h2 { color: var(--cream); }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--navy .section-header p { color: rgba(245, 240, 230, 0.8); }

.grid { display: grid; gap: 1.35rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.35);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.card a.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.card a.card-link:hover { color: var(--navy); }

/* ----- Feature / split ----- */
.split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.split p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.split ul.check { margin: 1.1rem 0 1.6rem; }

.split ul.check li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 0.96rem;
}

.split ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.15rem 1.85rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.panel p {
  opacity: 0.92;
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
}

.panel .stat {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.panel .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

/* ----- CTA band ----- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(201, 162, 39, 0.15), transparent 55%),
    var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 1.25rem;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}

.cta-band p {
  opacity: 0.9;
  max-width: 34rem;
  margin: 0 auto 1.6rem;
}

.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 90% 40%, rgba(201, 162, 39, 0.1), transparent 50%),
    var(--navy);
  color: var(--cream);
  padding: 3rem 0 2.75rem;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

.page-hero p {
  opacity: 0.9;
  max-width: 38rem;
  font-size: 1.05rem;
}

/* ----- Contact ----- */
.contact-grid { display: grid; gap: 1.5rem; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-card a.phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
}

.contact-card a.phone:hover { color: var(--gold); }

.contact-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list strong {
  color: var(--navy);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

/* ----- About ----- */
.bio { max-width: 42rem; }

.bio h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.bio p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tradeline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.6rem 0;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 240, 230, 0.75);
  padding: 3rem 0 1.6rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.15rem;
}

.footer-brand .brand-lockup {
  margin-bottom: 0.9rem;
}

.footer-brand .brand-lockup img {
  height: 44px;
  box-shadow: none;
}

.footer-brand p {
  max-width: 24rem;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(245, 240, 230, 0.82);
  padding: 0.28rem 0;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-bottom .services-line {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
}

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }

/* ----- Quote form page ----- */
.quote-wrap { padding: 2.5rem 0 4rem; }

.quote-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.quote-intro .lockup-plate {
  width: min(280px, 70vw);
  margin: 0 auto 1.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.quote-intro .lockup-plate img { width: 100%; }

.quote-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.quote-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 740px;
  margin: 0 auto;
  overflow: hidden;
}

.quote-toggle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}

.quote-toggle button {
  padding: 0.95rem 0.4rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.45);
  transition: background 0.2s ease, color 0.2s ease;
}

.quote-toggle button.active {
  background: var(--gold);
  color: var(--navy);
}

.quote-toggle button:hover:not(.active) {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 560px) {
  .quote-toggle button {
    font-size: 0.66rem;
    padding: 0.8rem 0.2rem;
  }
}

.quote-form-body { padding: 1.85rem 1.85rem 2.35rem; }

@media (max-width: 540px) {
  .quote-form-body { padding: 1.35rem 1.05rem 1.85rem; }
}

.quote-panel { display: none; }
.quote-panel.active { display: block; }

.quote-section-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0.35rem 0 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.quote-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .quote-grid-2,
  .quote-grid-3 { grid-template-columns: 1fr; }
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.quote-field label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-field label .req { color: var(--gold); }

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font: 400 0.95rem var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.quote-field textarea {
  min-height: 88px;
  resize: vertical;
}

.quote-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-bottom: 1rem;
}

.quote-checks label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.quote-checks input { width: auto; }

.vehicle-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem;
  margin-bottom: 0.9rem;
  background: var(--cream);
}

.vehicle-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.linkish {
  background: none;
  border: none;
  color: var(--navy-mid);
  font: 600 0.85rem var(--font);
  cursor: pointer;
  text-decoration: underline;
}

.btn-add-vehicle {
  width: 100%;
  background: transparent;
  border: 1.5px dashed var(--gold);
  color: var(--navy);
  padding: 0.8rem;
  margin: 0.25rem 0 1.15rem;
  border-radius: var(--radius);
  font: 700 0.9rem var(--font);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.btn-add-vehicle:hover { background: var(--gold-soft); }

.btn-quote-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font: 700 0.95rem var(--font);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--cream);
  padding: 1.05rem;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.22);
}

.btn-quote-submit:hover { background: var(--navy-mid); }

.quote-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  line-height: 1.5;
}

.quote-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.5rem 0 1.3rem;
}

#quote-success {
  display: none;
  padding: 3.25rem 2rem;
  text-align: center;
}

#quote-success.show { display: block; }

#quote-success h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

#quote-success p { color: var(--text-muted); }
#quote-success a { color: var(--gold); font-weight: 700; }

/* ----- Desktop ----- */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .header-inner {
    flex-wrap: nowrap;
    padding: 0.65rem 0;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    align-items: center;
    gap: 0.1rem;
    padding-bottom: 0;
    margin-left: auto;
  }

  .site-nav a {
    padding: 0.4rem 0.6rem;
    font-size: 0.74rem;
  }

  .header-cta {
    display: inline-flex;
    padding: 0.55rem 1.15rem;
    font-size: 0.72rem;
    margin-left: 0.35rem;
  }

  .brand-lockup img { height: 56px; max-width: 260px; }

  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.25rem;
  }

  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    padding: 5.25rem 0 5.75rem;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
  .site-nav a { padding: 0.45rem 0.8rem; font-size: 0.78rem; }
  .container { padding: 0 1.5rem; }
}

@media (max-width: 420px) {
  .brand-lockup img { height: 44px; max-width: 200px; }
}


/* About family photo */
.about-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-photo figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--white);
}
@media (min-width: 900px) {
  .about-photo img {
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
  }
}
