/* Paige Curtis Photography – responsive homepage */
:root {
  --bg: #faf9f7;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --accent: #6b4e9e;
  --pink: #e8c4d0;
  --pink-underline: #d4a5b3;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, sans-serif;
  --script: 'Great Vibes', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Fluid base: text and spacing scale with viewport (min 16px, max 20px) */
  font-size: clamp(16px, 1.25vw + 12px, 20px);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.accent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #f5f0d9;
  z-index: 101;
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.logo-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--accent);
}

/* ----- Hero ----- */
.hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  background: var(--bg);
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 8px;
  overflow: hidden;
  background: #e0ddd9;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 50vh;
  object-fit: cover;
}

.hero-video-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}

.hero-tagline {
  font-family: var(--script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hero-underline {
  display: block;
  width: 120px;
  height: 3px;
  background: var(--pink-underline);
  margin: 0 auto 0.75rem;
}

.hero-location {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  font-weight: 400;
}

.hero-seo-intro {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Gallery (3×2 grid, scales with page) ----- */
.gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  aspect-ratio: 3 / 2;
  width: 100%;
  gap: 0;
  background: #e0ddd9;
}

.gallery-item {
  overflow: hidden;
  background: #e0ddd9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Meet Paige (pink section, two columns) ----- */
.meet-paige {
  background: var(--pink);
  padding: 3rem 1.5rem;
}

.meet-paige-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.meet-paige-content {
  text-align: left;
}

.meet-paige-title {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.meet-paige-subtitle {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.meet-paige-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.meet-paige-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.meet-paige-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.meet-paige-social a:hover {
  background: var(--text);
  color: var(--white);
}

.meet-paige-photo {
  min-height: 400px;
  background: rgba(255,255,255,0.5);
}

.meet-paige-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ----- What to Expect ----- */
.what-to-expect {
  padding: 4rem 1.5rem 5rem;
  background: #faf9f7;
}

.wte-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wte-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr 130px;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.wte-text {
  padding: 0.25rem 0;
}

.wte-text p {
  margin-bottom: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.wte-text p:last-child {
  margin-bottom: 0;
}

.wte-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wte-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e6e3;
  border-radius: 4px;
}

.wte-images-right img {
  height: 308px;
}

/* ----- Spreading God's love ----- */
.spreading-love {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.spreading-love-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5a8ab0 0%, #7ba3c9 50%, #9bb8d4 100%);
  background-size: cover;
  background-position: center;
}

.spreading-love-bg.bg-loaded {
  background-image: url('../images/spreading-love.jpg');
}

.spreading-love-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.spreading-love-text {
  position: relative;
  z-index: 1;
  font-family: var(--script);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  text-align: center;
  max-width: 520px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.spreading-love .btn {
  position: relative;
  z-index: 1;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* ----- Timeline: A glimpse to my life ----- */
.timeline-section {
  padding: 4rem 1.5rem 5rem;
  background: var(--white);
}

.timeline-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-image {
  border-radius: 8px;
  overflow: hidden;
  background: #e8e4df;
}

.timeline-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.timeline-content {
  padding: 0.5rem 0;
}

.timeline-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .timeline-item:nth-child(even) .timeline-image,
  .timeline-item:nth-child(even) .timeline-content {
    order: unset;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-image img {
    height: 180px;
  }
}

/* ----- Home contact section (bottom, two-col image + form) ----- */
.home-contact-section {
  padding: 3rem 1.5rem 4rem;
  background: var(--white);
}

.home-contact-heading {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.home-contact-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.home-contact-intro a {
  color: var(--accent);
  text-decoration: underline;
}

.home-contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  min-height: 400px;
}

.home-contact-image {
  background: #2a2a2a;
  min-height: 400px;
}

.home-contact-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.home-contact-form-wrap {
  background: #e8e6e3;
  padding: 2rem 2.5rem;
}

.home-contact-form-wrap .home-contact-details {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.home-contact-form .form-row {
  margin-bottom: 1rem;
}

.home-contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.home-contact-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid var(--text-muted);
  background: transparent;
  resize: vertical;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.home-contact-form .required { color: #c00; }

.home-contact-form .btn { margin-top: 0.5rem; }

/* ----- Footer ----- */
.site-footer {
  padding: 1.25rem 1.5rem;
  background: #e8e6e3;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ----- Chat FAB ----- */
.chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s, background 0.2s;
}

.chat-fab:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* ----- Responsive: phone ----- */
@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  .hero {
    padding: 6rem 1.25rem 3rem;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-location {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }

  .meet-paige-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .meet-paige-photo {
    order: -1;
    min-height: 320px;
  }

  .meet-paige-photo img {
    min-height: 320px;
  }

  .meet-paige {
    padding: 2rem 1.25rem;
  }

  .meet-paige-title {
    font-size: 1.75rem;
  }

  .meet-paige-content {
    text-align: center;
  }

  .meet-paige-social {
    justify-content: center;
  }

  .what-to-expect {
    padding: 3rem 1.25rem 4rem;
  }

  .wte-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  .wte-images-left,
  .wte-images-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .wte-images img {
    width: 140px;
    height: 180px;
    min-width: 140px;
  }

  .wte-images-right img {
    height: 180px;
  }

  .wte-title::before,
  .wte-title::after {
    max-width: 40px;
  }

  .spreading-love {
    min-height: 320px;
    padding: 3rem 1.25rem;
  }

  .spreading-love-text {
    font-size: 1.5rem;
  }

  .home-contact-layout {
    grid-template-columns: 1fr;
  }

  .home-contact-image {
    min-height: 280px;
  }

  .home-contact-image img {
    min-height: 280px;
  }

  .home-contact-form-wrap {
    padding: 1.5rem 1.25rem;
  }

  .home-contact-form .form-row-split {
    grid-template-columns: 1fr;
  }

  .chat-fab {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

/* ========== Page main (inner pages) ========== */
.page-main {
  padding-top: calc(6px + 70px);
  min-height: 100vh;
}

/* ========== About Me ========== */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 6rem;
}

.about-main-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  border: 2px solid var(--text);
  display: block;
}

.about-extras {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.about-extras img {
  display: block;
  width: 140px;
  min-width: 140px;
  max-width: 200px;
  height: 220px;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.about-extras img:first-child {
  transform: rotate(-3deg);
}

.about-extras img:first-child:hover {
  transform: rotate(-1deg) scale(1.02);
}

.about-extras img:last-child {
  transform: rotate(2.5deg);
}

.about-extras img:last-child:hover {
  transform: rotate(1deg) scale(1.02);
}

.about-content {
  padding-top: 0.5rem;
}

.about-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 700px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem 3rem;
  }
  .about-photo { position: static; }
  .about-extras {
    flex-direction: row;
    margin-top: 1.25rem;
    padding: 0;
  }
  .about-extras img {
    width: 120px;
    min-width: 120px;
    max-width: 140px;
    height: 180px;
  }
  .about-title { font-size: 1.75rem; }
}

/* ========== Services ========== */
.services-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
}

.services-hero-bg.bg-loaded {
  background-image: url('../images/services-hero.jpg');
}

.services-hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}

.services-seo-intro {
  max-width: 720px;
  margin: 0 auto 0.5rem;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

.services-subtitle {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  text-align: right;
  margin: 1.5rem 1.5rem 2rem auto;
  max-width: 1100px;
  color: var(--text);
}

.packages {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 0;
}

.package-reverse .package-content { order: 2; }
.package-reverse .package-image { order: 1; }

.package-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.package-content h2 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.package-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.package-price {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.package-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-content li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.package-content li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.package-image {
  min-height: 280px;
  background: #e0ddd9;
}

.package-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.btn-dark {
  background: var(--text);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent);
}

@media (max-width: 700px) {
  .services-hero { min-height: 220px; }
  .services-subtitle { text-align: center; margin: 1rem 1rem 1.5rem; }
  .package, .package-reverse {
    grid-template-columns: 1fr;
  }
  .package-reverse .package-content, .package-reverse .package-image { order: unset; }
  .package-content { padding: 1.5rem 1.25rem; }
  .package-image { min-height: 220px; }
}

/* ========== Portfolio ========== */
.portfolio-intro {
  padding: 3rem 1.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.portfolio-intro-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
}

.portfolio-category {
  padding: 2rem 1.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-category-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.portfolio-category-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.portfolio-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.portfolio-scroll-inner {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.portfolio-scroll-inner img {
  width: 280px;
  min-width: 280px;
  height: 320px;
  object-fit: cover;
  background: #e0ddd9;
}

@media (max-width: 700px) {
  .portfolio-scroll-inner img {
    width: 220px;
    min-width: 220px;
    height: 260px;
  }
}

/* ========== Book / Process ========== */
.process-section {
  position: relative;
  padding: 3rem 1.5rem;
  min-height: 60vh;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  background-size: cover;
  background-position: center;
}

.process-bg.bg-loaded {
  background-image: url('../images/process-bg.jpg');
}

.process-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.process-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.process-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}

.process-steps {
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
  counter-increment: step;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: var(--accent);
}

.process-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.process-steps p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

/* Three circular images in a row (replaces carousel) */
.process-three-images {
  background: #3a3a3a;
  padding: 2rem 1.5rem;
}

.process-three-images-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  justify-items: center;
}

.process-circle {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  border-radius: 50%;
  overflow: hidden;
  background: #2a2a2a;
}

.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.faq-image-col {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .faq-bg is used in HTML; keep .faq-image-bg for backwards compatibility */
.faq-bg,
.faq-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a6fa5 0%, #3a5a8a 100%);
  background-size: cover;
  background-position: center;
}

.faq-bg.bg-loaded,
.faq-image-bg.bg-loaded {
  background-image: url('../images/faq-bg.JPG');
}

.faq-bg::after,
.faq-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.faq-title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: -3rem;
}

.faq-content-col {
  padding: 2rem 2.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.faq-content-col .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

@media (max-width: 700px) {
  .process-card { padding: 1.5rem 1.25rem; margin: 0 1rem; }
  .process-three-images-inner {
    gap: 1rem;
  }
  .process-circle {
    max-width: 200px;
  }
  .faq-section { grid-template-columns: 1fr; }
  .faq-image-col { min-height: 200px; }
  .faq-content-col { padding: 1.5rem 1.25rem; }
}

/* ========== Contact ========== */
.thank-you-section {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
}

.thank-you-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-intro {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.contact-page-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.contact-intro-text {
  font-size: 1rem;
  color: var(--text);
}

.contact-intro-text a {
  text-decoration: underline;
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1200px;
  margin: 0 auto 4rem;
  min-height: 500px;
}

.contact-image-col {
  background: #2a2a2a;
  min-height: 400px;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.contact-form-col {
  background: #e8e6e3;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.contact-details {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-form .form-row {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form .required { color: #c00; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid var(--text-muted);
  background: transparent;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.btn-send {
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-image-col { min-height: 280px; }
  .contact-hero-img { min-height: 280px; }
  .contact-form-col { padding: 1.5rem 1.25rem; }
}

/* ========== Inquiry form (not in nav) ========== */
.inquiry-page .page-main { padding-top: calc(6px + 70px); }

.inquiry-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1200px;
  margin: 0 auto 4rem;
  min-height: 500px;
}

.inquiry-image-col {
  background: #2a2a2a;
  min-height: 400px;
}

.inquiry-hero-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.inquiry-form-col {
  background: #e8e6e3;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.inquiry-details {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.inquiry-required-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.inquiry-form .form-row {
  margin-bottom: 1.25rem;
}

.inquiry-form label,
.inquiry-form .form-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.inquiry-form input:not([type="radio"]),
.inquiry-form textarea {
  width: 100%;
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid var(--text-muted);
  background: transparent;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

.inquiry-form .form-label { margin-bottom: 0.5rem; }

.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  cursor: pointer;
}

.radio-label input { width: auto; }

.inquiry-form .form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.inquiry-form .form-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form .form-group label {
  margin-bottom: 0.35rem;
}

.inquiry-form .optional {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-image-col { min-height: 280px; }
  .inquiry-hero-img { min-height: 280px; }
  .inquiry-form-col { padding: 1.5rem 1.25rem; }
  .inquiry-form .form-date-row { grid-template-columns: 1fr; }
}
