@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&display=swap");

:root {
  --color-primary: #4fa27a;
  --color-primary-dark: #33805e;
  --color-primary-soft: #e3f3ea;
  --color-accent: #2c6e8f;
  --color-accent-soft: #e5f1f6;
  --color-text: #1c2321;
  --color-muted: #5b6663;
  --color-line: #dfe5e2;
  --color-panel: #f5f8f6;
  --color-card: #ffffff;
  --color-gray: #eef2f0;
  --color-button: #2c6e8f;
  --color-button-hover: #235a74;
  --page-width: 1110px;
  --wide-width: 1180px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px rgba(28, 35, 33, 0.08);
  --shadow-card: 0 12px 30px rgba(28, 35, 33, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-text);
  font-family: "Manrope", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

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

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

a:hover,
a:focus-visible {
  color: var(--color-primary-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--wide-width);
  padding: 20px 22px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: max-content;
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand span {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── Mobile nav toggle button (hidden on desktop) ── */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  background: var(--color-text);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 24px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: #3b4441;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 9px 16px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.site-nav a[aria-current="page"] {
  background: var(--color-primary);
  color: #ffffff;
}

.site-nav a[aria-current="page"]:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.page-shell {
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 0 22px;
}

.hero-media {
  margin: 28px auto 0;
  max-width: var(--wide-width);
  padding: 0 22px;
}

.hero-media img {
  border-radius: var(--radius-lg);
  height: auto;
  width: 100%;
}

.section-title {
  margin: 84px auto 50px;
  text-align: center;
}

.section-title h1,
.section-title h2 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.script-subtitle {
  color: var(--color-accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  margin: 12px 0 0;
}

.locations-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.location-card {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.location-card img {
  aspect-ratio: 16 / 9;
  max-height: 170px;
  object-fit: cover;
  width: 100%;
}

.location-card-content {
  padding: 30px 28px 34px;
}

.location-card h3 {
  color: var(--color-primary-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.location-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.location-card strong {
  color: var(--color-text);
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.opening-banner {
  margin: 76px auto 70px;
  max-width: 640px;
  padding: 0 22px;
}

.opening-banner img {
  border-radius: var(--radius-md);
  max-height: 110px;
  object-fit: cover;
  width: 100%;
}

.contact-panel {
  background: var(--color-panel);
  border-radius: var(--radius-lg);
  display: grid;
  gap: clamp(3rem, 8vw, 7.4rem);
  grid-template-columns: minmax(230px, 0.85fr) minmax(320px, 1.15fr);
  margin: 0 auto;
  max-width: var(--wide-width);
  padding: clamp(3.2rem, 7vw, 5.6rem) clamp(2rem, 7vw, 6.5rem);
}

.contact-panel h1,
.contact-panel h2 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 36px;
  text-align: left;
}

.location-list {
  text-align: left;
}

.location-list address {
  border-left: 3px solid var(--color-primary);
  font-style: normal;
  margin: 0 0 26px;
  padding-left: 18px;
}

.location-list strong {
  color: var(--color-primary-dark);
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.location-list p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 20px 24px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: block;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--color-text);
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  appearance: none;
  background: #ffffff;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font: inherit;
  line-height: 1.4;
  outline: none;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #8a938f;
  opacity: 1;
}

.submit-button {
  background: var(--color-button);
  border: 1px solid var(--color-button);
  border-radius: var(--radius-sm);
  color: #ffffff;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 15px 24px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  transform: translateY(-1px);
}

/* Form feedback messages */
.form-success,
.form-error,
.newsletter-feedback {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 16px;
}

.form-success,
.newsletter-feedback {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.form-error {
  background: #fdecea;
  color: #b3261e;
}

.map-section {
  margin: 0 auto;
  max-width: 560px;
  padding: 0 22px;
  position: relative;
}

.map-section img,
.wide-map img {
  border-radius: var(--radius-md);
  height: auto;
  width: 100%;
}

.map-link {
  border-radius: 999px;
  height: 12%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 8%;
}

.map-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(79, 162, 122, 0.35);
  outline: 2px solid var(--color-primary);
}

.map-link-drumright {
  left: 18%;
  top: 36%;
}

.map-link-tulsa {
  left: 42%;
  top: 28%;
}

.map-link-wagoner {
  left: 53%;
  top: 44%;
}

.newsletter {
  background: var(--color-accent-soft);
  border-radius: var(--radius-lg);
  margin: 64px auto 90px;
  max-width: 620px;
  padding: 48px 32px;
  text-align: center;
}

.newsletter h2 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 22px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  max-width: 455px;
}

.newsletter-form label {
  flex: 1;
}

.newsletter-form input {
  background: #ffffff;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm);
  font: inherit;
  height: 50px;
  padding: 0 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.newsletter-form input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(44, 110, 143, 0.15);
  outline: none;
}

.newsletter-form button {
  background: var(--color-button);
  border: 1.5px solid var(--color-button);
  border-radius: var(--radius-sm);
  color: #ffffff;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 26px;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--color-button-hover);
}

.site-footer {
  background: var(--color-panel);
  margin-top: 20px;
  padding: 48px 22px 40px;
  text-align: center;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.footer-brand span {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer p {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

.about-main {
  margin-top: 36px;
}

.about-panel {
  align-items: center;
  background: var(--color-panel);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.8fr) minmax(180px, 0.55fr);
  margin: 0 auto 74px;
  max-width: var(--wide-width);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
}

.about-copy {
  padding: 0;
}

.about-copy h1 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 28px;
}

.about-copy h2 {
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 28px 0 8px;
  text-transform: uppercase;
}

.about-copy p {
  color: var(--color-muted);
  margin: 0 0 8px;
}

.about-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
  max-width: 220px;
  overflow: hidden;
}

.about-image img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.procedures-main {
  background: var(--color-gray);
  margin-top: 36px;
  padding: 55px 22px 70px;
}

.procedure-stack {
  display: grid;
  gap: 40px;
  margin: 0 auto;
  max-width: var(--page-width);
}

.procedure-section {
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 220px);
  min-height: 0;
  overflow: hidden;
}

.procedure-section.procedure-section-alt {
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
}

.procedure-section-alt .procedure-copy {
  order: 2;
}

.procedure-section-alt .procedure-photo {
  order: 1;
}

.procedure-copy {
  padding: clamp(3.2rem, 6vw, 5rem) clamp(2.4rem, 6vw, 5.5rem);
}

.procedure-copy h1,
.procedure-copy h2 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.procedure-copy h2::before {
  background: var(--color-primary);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 20px;
  width: 48px;
}

.procedure-copy h1::before {
  background: var(--color-primary);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 20px;
  width: 48px;
}

.procedure-copy h3 {
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 32px 0 6px;
}

.procedure-copy p {
  color: var(--color-muted);
  margin: 0 0 22px;
}

.procedure-copy ul {
  color: var(--color-muted);
  margin: 0 0 22px 1.15rem;
  padding: 0;
}

.procedure-copy li {
  margin: 0 0 6px;
}

.procedure-photo {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.procedure-photo img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.insurance-main {
  margin-top: 36px;
}

.insurance-hero {
  align-items: center;
  background-image: linear-gradient(rgba(28, 35, 33, 0.28), rgba(28, 35, 33, 0.28)), url("../assets/images/insurance-hero.jpg");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  margin: 0 auto 50px;
  max-width: var(--wide-width);
  min-height: 260px;
  padding: 40px 24px;
}

.insurance-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  padding: clamp(2.5rem, 5vw, 4.2rem) clamp(2.3rem, 6vw, 5.1rem);
}

.insurance-card h1 {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
}

.insurance-card h1::before {
  background: var(--color-primary);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-bottom: 20px;
  width: 48px;
}

.insurance-card p {
  color: var(--color-muted);
  margin: 0;
}

.contact-main {
  margin-top: 36px;
}

.contact-main .contact-panel {
  margin-bottom: 60px;
}

.map-caption {
  color: var(--color-text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto 44px;
  padding: 0 22px;
  text-align: center;
}

.wide-map {
  margin: 0 auto 70px;
  max-width: 560px;
  padding: 0 22px;
  position: relative;
}

.wide-map .map-link-drumright {
  left: 20%;
  top: 39%;
}

.wide-map .map-link-tulsa {
  left: 36.5%;
  top: 30%;
}

.wide-map .map-link-wagoner {
  left: 50%;
  top: 43.5%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .locations-grid,
  .contact-panel,
  .about-panel,
  .procedure-section,
  .procedure-section.procedure-section-alt {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: clamp(2rem, 6vw, 2.8rem);
  }

  .procedure-section-alt .procedure-copy,
  .procedure-section-alt .procedure-photo {
    order: initial;
  }

  .procedure-photo {
    max-width: 260px;
    margin: 0 auto;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .header-inner {
    /* keep brand + toggle on one row */
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px 18px;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  /* Full-width nav drawer, hidden by default */
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0 4px;
  }

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

  .site-nav a {
    padding: 10px 14px;
  }

  .brand img {
    height: 36px;
    width: 36px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .hero-media,
  .opening-banner,
  .page-shell,
  .map-section,
  .wide-map {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    margin: 56px auto 36px;
  }

  .contact-panel {
    border-radius: var(--radius-md);
    padding: 36px 22px;
  }

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

  .newsletter {
    border-radius: var(--radius-md);
    padding: 36px 22px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    height: 50px;
  }

  .about-panel,
  .procedures-main {
    margin-top: 14px;
  }

  .about-panel {
    border-radius: var(--radius-md);
  }

  .procedure-section {
    border-radius: var(--radius-md);
  }

  .procedure-copy {
    padding: 36px 24px;
  }

  .insurance-hero {
    border-radius: var(--radius-md);
    min-height: 220px;
  }

  .insurance-card {
    padding: 2rem 1.6rem;
  }

  .map-caption {
    margin-bottom: 30px;
  }
}
