/* BestSavannahOBGYN.com — custom static site starter
   Built for readability (larger fonts), clear services navigation, and email-based consultation requests.
*/

:root{
  --bg: #F6FAFB;
  --surface: #ffffff;
  --text: #102A43;
  --muted: #52647a;
  --border: #E1E8ED;

  --brand: #2CA6A4;        /* teal */
  --brand-dark: #0B2B3A;   /* deep blue */
  --accent: #4CAF50;       /* green */

  --shadow: 0 10px 30px rgba(16, 42, 67, 0.10);
  --radius: 16px;

  --container: 1160px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;               /* Larger base font per request */
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 2 * var(--space-4)));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: var(--space-4);
  top: var(--space-4);
  width: auto;
  height: auto;
  padding: var(--space-2) var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-bar{
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(225,232,237,0.65);
}

.header-grid{
  display: grid;
  grid-template-columns: 1.2fr 1.3fr auto;
  gap: var(--space-4);
  align-items: center;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-photo-link{ text-decoration: none !important; line-height: 0; }
.brand-photo{ display: block; width: 80px; height: 80px; flex: 0 0 auto; }
.brand-photo img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.12);
}

.brand-text{ display: grid; gap: 6px; }

.brand a.brand-link{
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none !important;
}
.brand-name{
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: 24px;
  color: var(--brand-dark);
}
.brand-title{
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: #2f4d62;
}
.award-line{
  display: block;
  font-weight: 900;
  color: #1f3b4d;
  line-height: 1.2;
}
.award-main,
.award-sub{
  display: inline;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
}
.award-sub::before{ content: " "; }
.award-sub:empty{ display: none; }

.header-contact{
  display: grid;
  gap: 8px;
  justify-content: start;
}

.header-contact .address{
  font-size: 20px;               /* Bigger address per request */
  font-weight: 900;
  color: #173A52;
  line-height: 1.25;
}
.header-contact .phone{
  color: var(--muted);
  font-weight: 700;
}
.header-contact .phone a{
  font-weight: 900;
  color: var(--brand-dark);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(44, 166, 164, 0.25);
  cursor: pointer;
  text-decoration: none !important;
  font-size: 16px;
}
.btn:hover{ filter: brightness(0.97); }
.btn:active{ transform: translateY(1px); }

.btn.secondary{
  background: transparent;
  color: var(--brand-dark);
  border-color: rgba(11,43,58,0.25);
  box-shadow: none;
}
.btn.secondary:hover{ background: rgba(11,43,58,0.06); }

.navbar{
  padding: 10px 0;
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.nav-toggle{
  display: none;
  border: 1px solid rgba(11,43,58,0.25);
  background: white;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

.nav{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  flex-wrap: nowrap;
}

.nav > a,
.nav > .dropdown{
  flex: 1 1 0;
}

.nav > a:not(:first-child),
.nav > .dropdown:not(:first-child){
  border-left: 1px solid rgba(11,43,58,0.12);
}

.nav a,
.dropdown-toggle{
  width: 100%;
  padding: 14px 10px;
  border-radius: 0;
  font-weight: 900;
  color: #243B53;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}
.nav a:hover,
.dropdown-toggle:hover{
  background: rgba(11,43,58,0.04);
  text-decoration: none;
}
.nav a[data-active="true"],
.dropdown-toggle[data-active="true"]{
  background: rgba(44,166,164,0.16);
  color: var(--brand-dark);
}

.dropdown{
  position: relative;
}
.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}
.dropdown.open .dropdown-menu{ display: grid; }
.dropdown-menu a{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}
.dropdown-menu a:hover{
  background: rgba(44,166,164,0.10);
  text-decoration: none;
}

main{ display: block; }

.section{
  padding: var(--space-6) 0;
}
.section h1{
  margin: 0 0 var(--space-2);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.1;
}
.section h2{
  margin: 0 0 var(--space-2);
  font-size: 34px;
}
.section p.lead{
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 20px;               /* Larger lead text */
}

.kicker{
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13px;
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
.card h3{
  margin: 0 0 var(--space-2);
  font-size: 26px;               /* Bigger card titles */
  letter-spacing: 0.3px;
}
.card p{ margin: 0; color: var(--muted); font-size: 18px; }

/* Profile photo blocks */
.headshot{
  width: 100%;
  max-width: 280px;
  margin: 0 0 var(--space-3);
}
.headshot img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.14);
}

.profile-card{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-4);
  align-items: start;
}
.profile-card .headshot{
  max-width: 260px;
  margin: 0;
}

/* Testimonials */
.testimonial{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
.testimonial .stars{
  font-weight: 950;
  letter-spacing: 0.18em;
  color: #2F855A;
  font-size: 14px;
}
.testimonial blockquote{
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-style: italic;
  font-size: 18px;
}
.testimonial .author{
  margin-top: 12px;
  font-weight: 950;
  color: var(--brand-dark);
  font-size: 16px;
}

.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.span-all{ grid-column: 1 / -1; }

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
@media (min-width: 980px){
  .services-grid.primary{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.service-tile{
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow);
  text-decoration: none !important;
}
.service-tile:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.14);
}
.service-tile .title{
  font-weight: 950;
  font-size: 22px;               /* Bigger/bolder per request */
  letter-spacing: 0.3px;
  color: var(--brand-dark);
}
.service-tile .desc{
  color: var(--muted);
  font-size: 16px;
}

.chips{
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid rgba(98,125,152,0.28);
  background: rgba(246,250,251,0.65);
  color: #243B53;
  text-decoration: none !important;
}
.chip:hover{
  background: rgba(44,166,164,0.12);
}

.divider{
  height: 1px;
  background: var(--border);
  margin: var(--space-6) 0;
}

.cta-row{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.stack-section{
  margin-top: var(--space-6);
}

.list{
  margin: 0;
  padding-left: 20px;
  color: #243B53;
}
.list li{
  margin: 8px 0;
}

.callout{
  border-left: 6px solid var(--brand);
  padding: var(--space-4);
  background: rgba(44,166,164,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(44,166,164,0.18);
}
.callout p{ margin: 0; color: #243B53; }

.form{
  display: grid;
  gap: var(--space-3);
}
.field{
  display: grid;
  gap: 8px;
}
label{
  font-weight: 900;
  color: #243B53;
}
input, textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  font-size: 18px;
}
textarea{
  min-height: 140px;
  resize: vertical;
}

.note{
  font-size: 14px;
  color: var(--muted);
}

.footer{
  padding: var(--space-6) 0;
  background: #0D2E3D;
  color: rgba(255,255,255,0.92);
}
.footer a{ color: rgba(255,255,255,0.92); }
.footer .row{
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: var(--space-4);
}
.footer h4{ margin: 0 0 var(--space-2); }
.footer p, .footer li{ color: rgba(255,255,255,0.78); }
.footer ul{ list-style: none; padding: 0; margin: 0; }
.footer li{ margin: 8px 0; }
.legal{
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Modal */
.modal[hidden]{ display: none !important; }
.modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 30, 0.55);
}
.modal-dialog{
  position: relative;
  width: min(720px, 100%);
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(225,232,237,0.9);
  box-shadow: 0 30px 90px rgba(0,0,0,0.30);
  padding: var(--space-4);
}
.modal-dialog h2{
  margin: 0 0 6px;
  font-size: 30px;
}
.modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(11,43,58,0.25);
  background: white;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
}
.modal-close:hover{ background: rgba(11,43,58,0.06); }

/* Responsive */
@media (max-width: 980px){
  :root{
    --space-4: 18px;
    --space-5: 28px;
    --space-6: 42px;
  }

  .header-bar{ padding: var(--space-2) 0; }

  .divider{ margin: 30px 0; }

  .brand-photo{ width: 92px; height: 92px; }
  .brand-photo img{ width: 92px; height: 92px; }

  .brand-name{ font-size: 26px; }
  .brand-title{ font-size: 14px; }

  .header-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .header-contact .address{
    font-size: 20px;
  }

  .nav-row{
    flex-wrap: wrap;
  }

  .nav-toggle{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 18px;
  }
  .nav{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
  }
  .nav.open{ display: flex; }

  .nav > a:not(:first-child),
  .nav > .dropdown:not(:first-child){
    border-left: none;
  }

  .nav a, .dropdown-toggle{
    border-radius: 14px;
    text-align: left;
    padding: 16px 16px;
    font-size: 20px;
    border: 1px solid rgba(11,43,58,0.12);
    background: rgba(255,255,255,0.85);
  }

  .cta-row{
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn{ width: 100%; }

  .dropdown-menu{
    position: static;
    display: none;
    min-width: auto;
    box-shadow: none;
    border-radius: 12px;
    margin-left: 10px;
  }
  .dropdown.open .dropdown-menu{ display: grid; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }

  .profile-card{ grid-template-columns: 1fr; }
  .profile-card .headshot{ max-width: 340px; }

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