/* ═══════════════════════════════════════
   DR. NEGIN RAJAIPOUR, MD
   Round 2 Visual Refinement
   Modeled on peterattiamd.com aesthetic
   ═══════════════════════════════════════ */

/* ═══ CSS VARIABLES ═══ */
:root {
  /* Colors - Attia-calibrated editorial palette */
  --off-white: #FAFAF7;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6B6B;
  --light-gray: #E5E0D8;
  --brass: #A8854B;
  --warm-tint: #F5F1E8;

  /* Typography - Playfair Display (serif) + Inter (sans) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-padding: 7.5rem;
  --section-padding-mobile: 4rem;
  --max-width: 1100px;
  --max-width-text: 680px;
}

/* ═══ RESET & BASE ═══ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

h3 {
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  max-width: var(--max-width-text);
}

p.lead {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--charcoal);
}

a {
  color: var(--brass);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

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

/* Underline grow effect on hover */
a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}

a:not(.btn):hover::after {
  width: 100%;
}

em {
  font-style: italic;
}

/* Small caps category labels */
.card-category,
.testimonial-attribution,
.credentials-small-caps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.credentials-small-caps {
  font-size: 11px !important;
  line-height: 1.8 !important;
  margin-top: 2rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid var(--light-gray);
  display: block;
  text-align: center;
}

/* ═══ HEADER & NAVIGATION ═══ */
header {
  background-color: rgba(250, 250, 247, 0.95);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  backdrop-filter: blur(10px);
}

header nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

header .nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

header .nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

header .nav-links a::after {
  bottom: -4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ═══ PHOTO-ANCHORED HORIZONTAL HERO ═══ */
.hero-horizontal {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background-color: var(--off-white);
}

.hero-photo-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.hero-photo-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to left, rgba(250, 250, 247, 0.15) 0%, transparent 5%),
    linear-gradient(to right, var(--off-white) 0%, rgba(250, 250, 247, 0.95) 40%, rgba(250, 250, 247, 0.6) 70%, transparent 100%);
}

.hero-content-overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem 2rem 2rem 80px;
}

.hero-text-container {
  width: 100%;
  max-width: 720px;
}

.hero-text-container h1 {
  margin-bottom: 2rem;
}

.hero-text-container .lead {
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scarcity {
  margin-top: 2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn::after {
  display: none;
}

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

.btn-primary-hero:hover {
  background-color: #977546;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 133, 75, 0.25);
}

.btn-secondary-hero {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary-hero:hover {
  background-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-large {
  background-color: var(--brass);
  color: var(--white);
  border-color: var(--brass);
  padding: 1.25rem 3rem;
  font-size: 0.95rem;
}

.btn-primary-large:hover {
  background-color: #977546;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 133, 75, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ═══ CREDIBILITY GRID (REFINED WITH DIVIDERS) ═══ */
.press-strip {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  background-color: var(--off-white);
}

.press-row {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.authority-credibility-strip {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--off-white);
}

.authority-row {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.positioning-section {
  padding: 4rem 2rem 3rem;
  background-color: var(--off-white);
}

.positioning-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.positioning-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.positioning-content p:last-child {
  margin-bottom: 0;
}

.premium-statement {
  padding: 80px 2rem 120px;
  background-color: var(--off-white);
  text-align: center;
}

.premium-statement-content {
  max-width: 900px;
  margin: 0 auto;
}

.statement-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  font-weight: 400;
}

.who-this-is-for {
  padding: 4rem 2rem 3rem;
  background-color: var(--off-white);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--warm-gold);
}

.who-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.who-item {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  position: relative;
  border: 1px solid var(--light-gray);
  background-color: white;
  transition: border-color 0.2s ease;
}

.who-item:hover {
  border-color: var(--warm-gold);
}

.who-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--warm-gold);
}

.what-we-help-build {
  padding: 3rem 2rem 4rem;
  background-color: var(--off-white);
}

.what-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.what-item {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  padding: 1.25rem 1.5rem;
  position: relative;
  border: 1px solid var(--light-gray);
  background-color: white;
  transition: border-color 0.2s ease;
}

.what-item:hover {
  border-color: var(--warm-gold);
}

.what-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--warm-gold);
}

.inquiry-cta-block {
  padding: 5rem 2rem 4rem;
  background-color: var(--off-white);
  text-align: center;
}

.inquiry-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.inquiry-cta-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.inquiry-cta-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.about-consolidated {
  padding: 4rem 2rem 5rem;
  background-color: var(--off-white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* ═══ SECTIONS ═══ */
section {
  padding: var(--section-padding) 2rem;
  background-color: var(--off-white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

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

/* ═══ ABOUT SECTION (TWO-COLUMN LAYOUT) ═══ */
.about-section-refined {
  padding: var(--section-padding) 2rem;
}

.about-two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

.about-text-col {
  max-width: var(--max-width-text);
}

.about-text-col p {
  margin-bottom: 1.75rem;
}

.about-portrait-col img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 4px;
}

/* ═══ ENGAGEMENTS SECTION (REFINED CARDS) ═══ */
.engagements-refined {
  padding: 2rem 2rem var(--section-padding);
}

.services-grid-refined {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card-refined {
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card-refined h3 {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-size: 22px;
}

.service-card-refined p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-card-refined .btn {
  align-self: flex-start;
  margin-top: auto;
}

.service-card-refined:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brass);
}

/* Retainer Block */
.retainer-block {
  text-align: center;
  max-width: 640px;
  margin: 4rem auto 4rem;
}

.retainer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.retainer-description {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.retainer-link {
  color: var(--brass);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.retainer-link:hover {
  opacity: 0.7;
}

/* ═══ TESTIMONIALS SECTION ═══ */
.testimonials-section {
  padding: var(--section-padding) 2rem;
  background-color: var(--warm-tint);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonial-attribution {
  display: block;
  margin-top: 1.5rem;
}

/* ═══ PEER ENDORSEMENT SECTION ═══ */
.peer-endorsement-section {
  padding: 2rem 2rem 5rem;
  background-color: var(--off-white);
}

.endorsement-list {
  max-width: 760px;
  margin: 0 auto;
}

.endorsement-item {
  margin-bottom: 4.5rem;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid var(--warm-gold);
  position: relative;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.endorsement-item:last-child {
  margin-bottom: 0;
}

.endorsement-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.endorsement-attribution {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--warm-gray);
}

.endorsement-attribution strong {
  color: var(--charcoal);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.endorsement-attribution em {
  font-style: italic;
  font-weight: 400;
}

.endorsement-footer {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-align: center;
  font-style: italic;
}

/* ═══ PRACTICE DIAGNOSTIC CALLOUT (ANCHORED) ═══ */
.diagnostic-callout-anchored {
  background: var(--warm-tint);
  padding: 6rem 2rem;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.diagnostic-callout-anchored h2 {
  margin-bottom: 1.5rem;
}

.diagnostic-callout-anchored .lead {
  max-width: 720px;
}

/* ═══ AREAS OF FOCUS (PHOTO-CARD GRID) ═══ */
.areas-focus-refined {
  padding: var(--section-padding) 2rem;
}

.photo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.photo-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.card-image {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(0.95) brightness(0.98);
  transition: filter 0.3s ease;
}

.photo-card:hover .card-image {
  filter: saturate(1) contrast(1) brightness(1);
}

.photo-card .card-category {
  display: block;
  margin: 1.5rem 1.5rem 0.5rem;
}

.photo-card h3 {
  margin: 0 1.5rem 1.5rem;
  font-size: 20px;
  line-height: 1.3;
}

/* ═══ FOOTER ═══ */
footer {
  background-color: #1F2A37;
  color: var(--off-white);
  padding: 5rem 2rem 3rem;
}

footer .footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

footer .footer-col h4 {
  color: var(--off-white);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

footer .footer-col ul {
  list-style: none;
}

footer .footer-col li {
  margin-bottom: 0.75rem;
}

footer .footer-col a {
  color: #B8B8B8;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

footer .footer-col a::after {
  display: none;
}

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

footer .footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-bottom p {
  color: #B8B8B8;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  max-width: 100%;
}

footer .copyright {
  font-size: 0.875rem;
  color: #B8B8B8;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #B8B8B8;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--brass);
}

/* ═══ PRIVATE INQUIRY PAGE HEADER ═══ */
.inquiry-page-header {
  padding: 5rem 2rem 3rem;
  background-color: var(--off-white);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.inquiry-header-content {
  max-width: 720px;
  margin: 0 auto;
}

.inquiry-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.inquiry-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--warm-gold);
}

.inquiry-h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 2rem 0;
}

.inquiry-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto;
}

/* ═══ FORMS ═══ */
form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-family: var(--font-body);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(168, 133, 75, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A1A1A' d='M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 2rem;
  line-height: 1.6;
  text-align: center;
}

/* ═══ FADE-IN ON SCROLL ANIMATIONS ═══ */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ═══ INQUIRY MODAL ═══ */
.inquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 45, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-content {
  background-color: var(--off-white);
  max-width: 600px;
  width: 100%;
  padding: 3rem;
  position: relative;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--charcoal);
}

.modal-content h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  background-color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
}

.form-group input[readonly] {
  background-color: #f5f5f5;
  color: var(--warm-gray);
}

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

#inquiry-form .cta-button {
  width: 100%;
  margin-top: 1rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  header .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-horizontal {
    height: 80vh;
  }

  .hero-photo-backdrop {
    width: 100%;
    height: 40vh;
    top: 0;
    left: 0;
  }

  .hero-gradient-overlay {
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, var(--off-white) 100%);
  }

  .hero-content-overlay {
    align-items: flex-end;
    padding: 2rem 1.5rem 2rem 24px;
  }

  .hero-text-container {
    background: var(--off-white);
    padding: 2rem 0 0;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-portrait-col {
    order: -1;
  }

  .about-portrait-col img {
    margin: 0 auto;
    display: block;
  }

  .services-grid-refined {
    grid-template-columns: 1fr;
  }

  .positioning-section {
    padding: 3rem 1.5rem 2rem;
  }

  .premium-statement {
    padding: 60px 1.5rem 80px;
  }

  .statement-text {
    font-size: 1.75rem;
  }

  .who-this-is-for {
    padding: 3rem 1.5rem 2rem;
  }

  .what-we-help-build {
    padding: 2rem 1.5rem 3rem;
  }

  .who-list,
  .what-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .inquiry-cta-block {
    padding: 3rem 1.5rem;
  }

  .about-consolidated {
    padding: 3rem 1.5rem 4rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-portrait {
    max-width: 200px;
    margin: 0 auto;
  }

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

  .photo-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .card-image {
    height: 280px;
  }

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

  .social-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  section {
    padding: var(--section-padding-mobile) 1.5rem;
  }

  .press-strip,
  .authority-credibility-strip,
  .testimonials-section,
  .peer-endorsement-section,
  .diagnostic-callout-anchored,
  .areas-focus-refined,
  .about-section-refined {
    padding: var(--section-padding-mobile) 1.5rem;
  }

  .endorsement-item {
    margin-bottom: 3rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }

  .endorsement-quote {
    font-size: 1.05rem;
  }

  .engagements-refined {
    padding: 3rem 1.5rem var(--section-padding-mobile);
  }

  .inquiry-page-header {
    padding: 4rem 1.5rem 2rem;
  }

  .inquiry-h1 {
    font-size: 2rem;
  }

  .inquiry-lead {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .photo-card-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }
}
