/* Base reset & typography */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  color: var(--text-body);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 { font-family: "Lora", Georgia, serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  --navy:        #1A2D5A;
  --river:       #2E88BE;
  --river-light: #7DC3E0;
  --park:        #3D8A5C;
  --park-light:  #E8F5ED;
  --cream:       #FDFBF7;
  --white:       #FFFFFF;
  --warm:        #D4A574;
  --text-heading:#1A2D5A;
  --text-body:   #3A3A3A;
  --text-muted:  #6B7280;
  --text-on-dark:#E8EDF5;

  --panel-bg:    #FFFFFF;
  --panel-border:rgba(0, 0, 0, 0.08);
  --panel-shadow:0 2px 16px rgba(0, 0, 0, 0.06);

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 120px;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
}

/* ============================================================
   2. Fixed map background
   ============================================================ */
.map-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('assets/lancaster-map-light.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  pointer-events: none;
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ============================================================
   3. Utility classes
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: #1A2D5A;
  border-color: #1A2D5A;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

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

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

/* Keep white outline buttons on dark backgrounds (hero, footer) */
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

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

.badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   4. Glass panel — shared by section-container & hero-inner
   ============================================================ */
.section-container {
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  padding: var(--space-3xl) var(--space-2xl);
  margin: 0 auto;
  width: 100%;
}

/* Section title & subtitle — all on dark panels */
.section-title {
  font-family: "Lora", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  color: var(--text-muted);
}

/* ============================================================
   4a. site-header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-2xl);
  transition: background 0.3s ease, box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .logo-text {
  color: var(--navy);
}

.site-header.scrolled .nav-desktop a {
  color: var(--text-body);
}

.site-header.scrolled .nav-desktop a:hover {
  color: var(--navy);
}

.site-header.scrolled .hamburger span {
  background: var(--navy);
}

.site-header.scrolled .logo {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
}

.logo {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.nav-desktop {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav-desktop a {
  color: var(--text-on-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-phone {
  color: var(--white) !important;
  background: var(--navy);
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  white-space: nowrap;
  transition: background 0.2s ease !important;
}

.nav-phone:hover {
  background: #1A2D5A !important;
}

.nav-phone::after {
  display: none !important;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--white);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 0;
}

/* ============================================================
   5. Mobile nav overlay
   ============================================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--navy);
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--navy);
}

.mobile-nav-phone {
  background: var(--navy);
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif !important;
  font-size: 20px !important;
  margin-top: var(--space-md);
}

.site-header.menu-open .logo-text {
  color: var(--navy);
}

.site-header.menu-open .hamburger span {
  background: var(--navy);
}

.site-header.menu-open .logo {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ============================================================
   6. Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 80px;
  position: relative;
  z-index: 2;
  background-image: url('assets/zac1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-2xl);
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title {
  font-family: "Lora", Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-on-dark);
  line-height: 1.65;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-phone {
  display: inline-block;
}

.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   7. Photo frame
   ============================================================ */
.photo-frame {
  position: relative;
  display: inline-block;
  padding: 0 0 10px 0;
}

.photo-frame-clip {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.photo-frame-clip img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   8. Services
   ============================================================ */
.services {
  padding: 80px 24px;
}

.services .section-container {
  max-width: 1040px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  font-size: 15px;
}

.service-list {
  list-style: none;
  text-align: left;
}

.service-list li {
  padding: 6px 0;
  color: var(--text-body);
  font-size: 15px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.service-list li::before {
  content: "✓";
  color: var(--park);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   8a. Why Hire Me
   ============================================================ */
.why {
  padding: 80px 24px;
}

.why .section-container {
  max-width: 1040px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-card {
  background: var(--cream);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.why-number {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--warm);
  margin-bottom: var(--space-sm);
}

.why-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ============================================================
   8b. Start-Up application modal
   ============================================================ */
.startup-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  overflow-y: auto;
}

.startup-modal[hidden] {
  display: none;
}

body.startup-modal-open {
  overflow: hidden;
}

.startup-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 45, 90, 0.55);
}

.startup-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.24);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 560px;
  margin: auto;
}

.startup-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
}

.startup-modal-close:hover {
  color: var(--text-heading);
}

.startup-modal-panel h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.startup-modal-lead {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: var(--space-lg);
}

.startup-modal .contact-success .btn {
  margin-top: var(--space-lg);
}

/* Sliders */
.startup-modal .form-group label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
}

.startup-range-value {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.startup-range {
  width: 100%;
  accent-color: var(--river);
  cursor: pointer;
  margin: var(--space-xs) 0 2px;
}

.startup-range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* Choice groups */
.startup-choice {
  border: none;
  margin-bottom: var(--space-lg);
}

.startup-choice legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
  padding: 0;
}

.startup-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.startup-options-inline {
  flex-direction: row;
}

.startup-options-inline .startup-check {
  flex: 1;
}

.startup-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.startup-check:hover {
  border-color: var(--river);
}

.startup-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--park);
  flex-shrink: 0;
  cursor: pointer;
}

.startup-check:has(input:checked) {
  border-color: var(--park);
  background: var(--park-light);
}

/* Honeypot — hidden from people, visible to bots */
.startup-botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 480px) {
  .startup-modal {
    padding: var(--space-md);
  }

  .startup-modal-panel {
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ============================================================
   9. Pricing
   ============================================================ */
.pricing {
  padding: 80px 24px;
}

.pricing .section-container {
  max-width: 1200px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

/* Homepage has no pricing subtitle, so the grid supplies its own gap */
.pricing .section-container .pricing-grid {
  margin-top: var(--space-2xl);
}

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card-popular {
  border-color: var(--navy);
  background: var(--cream);
  transform: scale(1.03);
}

.pricing-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.price-display {
  margin: var(--space-md) 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-amount {
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
}

.price-period {
  color: var(--text-muted);
  font-size: 15px;
}

.pricing-card > p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  min-height: 44px;
  font-size: 15px;
}

.pricing-card > p.pricing-note {
  color: var(--text-body);
  font-weight: 500;
  min-height: 0;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-xl);
  flex: 1;
}

.pricing-list li {
  padding: 8px 0;
  color: var(--text-body);
  font-size: 15px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.pricing-list li::before {
  content: "✓";
  color: var(--park);
  font-weight: 700;
  flex-shrink: 0;
}

.popular-badge-wrap {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.pricing-startup-line {
  margin-top: var(--space-xl);
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--river);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

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

/* ============================================================
   10. About
   ============================================================ */
.about {
  padding: 80px 24px;
}

.about .section-container {
  max-width: 920px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text {
  max-width: 520px;
}

.about-title {
  color: var(--text-heading);
  text-align: left;
}

.about-title::after {
  margin: var(--space-md) 0 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
  margin-top: var(--space-lg);
}

.about-photo {
  flex-shrink: 0;
}

/* ============================================================
   11. Contact
   ============================================================ */
.contact {
  padding: 80px 24px;
}

.contact .section-container {
  max-width: 860px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--white);
  border: 1.5px solid var(--panel-border);
  border-radius: var(--radius-md);
  box-shadow: var(--panel-shadow);
  cursor: pointer;
  font-family: inherit;
  color: var(--text-body);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
  border-color: var(--river);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-option h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.contact-option p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.contact-option-hint {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-option-primary {
  background: var(--navy);
  border-color: var(--navy);
}

.contact-option-primary h3,
.contact-option-primary p {
  color: var(--white);
}

.contact-option-primary .contact-option-hint {
  color: var(--text-on-dark);
}

.contact-option-primary:hover {
  border-color: var(--river);
}

@media (max-width: 900px) {
  .contact-options {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.contact-form-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #F9FAFB;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #f87171;
  font-size: 14px;
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.contact-success-icon {
  font-size: 56px;
  margin-bottom: var(--space-md);
  color: var(--park);
  display: block;
}

.contact-success h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.contact-success p {
  color: var(--text-muted);
}

/* ============================================================
   12. Footer
   ============================================================ */
.footer {
  background: var(--navy);
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: var(--space-lg);
}

.footer-logo-img {
  height: 80px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-xs);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--river-light);
}

.copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ============================================================
   12a. Trust strip (between Services and Pricing)
   ============================================================ */
.trust-strip {
  padding: 80px 24px;
}

.trust-strip-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.trust-strip-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.trust-strip-text {
  padding: var(--space-3xl) var(--space-2xl);
}

.trust-strip-text h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-md);
}

.trust-strip-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   12b. Contact image accent
   ============================================================ */
.contact-image-accent {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-image-accent img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

/* ============================================================
   13. Scroll fade-in animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   14. Responsive — 768px
   ============================================================ */
/* Three pricing tiers still crowd below this width */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card-popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 var(--space-md);
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 72px 16px 60px;
    background-position: 42% center;
  }

  .hero-inner {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 17px;
    margin: 0 auto;
    max-width: 100%;
  }

  .services,
  .why,
  .pricing,
  .about,
  .contact {
    padding: 48px 16px;
  }

  .section-container {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-md);
  }

  .services-grid,
  .why-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-title {
    text-align: center;
  }

  .about-title::after {
    margin: var(--space-md) auto 0;
  }

  .about-photo {
    display: flex;
    justify-content: center;
  }

  .pricing-card-popular {
    transform: none;
  }

  .trust-strip {
    padding: 48px 16px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-photo img {
    min-height: 240px;
  }

  .trust-strip-text {
    padding: var(--space-2xl) var(--space-lg);
  }

  .trust-strip-text h2 {
    font-size: 28px;
  }

  .photo-frame-clip img {
    max-width: 300px;
  }

  .section-title {
    font-size: 28px;
  }

  .footer {
    padding: var(--space-lg) var(--space-md);
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }
}

/* ============================================================
   15. Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }
}

