:root {
  color-scheme: light;
  /* Load Poppins for UI and Rye for display headings (Google Fonts) */
  /* Imported via CSS @import below */
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
    margin: 0 0 0.95rem;
  color: #102a43;
  background: #f6f8fb;
  --bg: #ffffff;
  --muted: #6b7280;
  --border: #d9e2ef;
  --brand-teal-1: #9ac9c2;
  --brand-yellow: #fecc66;
  --brand-teal-2: #60b3b9;
  --brand-peach: #fce3b3;
  --brand-yellow-dark: #e6b347;
  --muted-gray: #efefef;
  --primary: var(--brand-teal-2);
  --primary-light: #def6ff;
  --accent: var(--brand-yellow);
  --shadow: 0 24px 80px rgba(18, 52, 84, 0.08);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Rye&display=swap');

/* Headline font */
h1, h2, h3, h4, h5, h6 {
  font-family: Rye, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(236, 248, 255, 0.9), transparent 36%),
              radial-gradient(circle at bottom right, rgba(255, 244, 200, 0.7), transparent 28%),
              var(--bg);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-logo {
  width: 11.8125rem;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav .button.button-primary {
  margin-left: 0;
}

.button.button-primary {
  color: white;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-yellow-dark);
  font-weight: 700;
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

.phone-link:hover {
  color: var(--primary);
}

.phone-icon {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
  margin: 0.28rem 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-copy {
  max-width: 620px;
}

/* Hero typography colors */
.hero h1 {
  color: #fce3b3;
}

.hero-copy p,
.hero-copy .lead {
  color: #ffffff;
}

.hero::before {
  /* full-section background image (flipped horizontally) - local copy */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/sfc-hero.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  transform: scaleX(-1);
  will-change: transform;
}

.hero::after {
  /* white gradient reduced so max opacity is 25% */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.18) 55%, rgba(255,255,255,0.12) 70%, rgba(255,255,255,0.05) 85%);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: none; /* hero visual removed per request */
}

.hero-visual.flip {
  transform: scaleX(-1);
}

.hero-visual {
  display: none; /* hide the right-side visual per request */
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 42rem;
  color: #ffffff;
  margin-top: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 30px rgba(11, 110, 133, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 1);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  color: #ffffff;
}

.hero-meta a {
  color: #fecc66;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-card {
  width: 100%;
  max-width: 540px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 5rem 0;
}

.section-gray {
  background: #f6f8fb;
}

.section-light {
  background: #fff;
}

.section-primary {
  background: linear-gradient(135deg, #0b6e85 0%, #0f82a2 100%);
  color: white;
}

#contact.section-primary {
  padding: 2.25rem 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-primary .section-header span {
  color: rgba(255, 255, 255, 0.75);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
}

.locations-title-single-line {
  white-space: nowrap;
}

.contact-title-single-line {
  white-space: nowrap;
}

.about-grid,
.cards-grid,
.locations-grid {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.locations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.locations-grid-four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.locations-intro {
  margin: 0 0 0.65rem;
  color: var(--muted);
  max-width: 56rem;
}

.locations-section-header {
  margin-bottom: 0.3rem;
}

.locations-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 0 0 0.2rem;
}

.locations-contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-icon-phone {
  color: #0b6e85;
  background: #d8f0f4;
  border: 1px solid rgba(11, 110, 133, 0.25);
}

.contact-icon-email {
  color: #0b6e85;
  background: #d8f0f4;
  border: 1px solid rgba(11, 110, 133, 0.25);
  position: relative;
  font-size: 0;
}

.contact-icon-fax {
  color: #0b6e85;
  background: #d8f0f4;
  border: 1px solid rgba(11, 110, 133, 0.25);
  position: relative;
  font-size: 0;
}

.contact-icon-fax::before {
  content: "FAX";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.contact-icon-email::before {
  content: "✉";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.73rem;
  line-height: 1;
  transform: translateY(-10%);
}

.location-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}

.map-card {
  background: #ffffff;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(18, 52, 84, 0.05);
}

.map-card h3 {
  margin: 0 0 0.75rem;
}

.map-card-meta {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.map-card-meta a {
  color: var(--primary);
  font-weight: 600;
}

.map-card iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 0.75rem;
}

#locations .locations-grid.locations-grid-four-up,
.section .locations-grid.locations-grid-four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-grid h3,
.feature-card h3,
.location-card h3 {
  margin-top: 0;
}

.about-grid p,
.feature-card p,
.location-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.staff-group-title {
  margin: 2rem 0 0.9rem;
  color: #0b6e85;
}

.owners-title {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 2.34rem;
}

.owners-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.owner-card {
  padding: 0;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 2.5rem;
}

.owner-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 4.6px solid var(--brand-yellow-dark);
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 1;
}

.owner-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.owner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.owner-card:hover .owner-image-wrapper img {
  transform: scale(1.25);
}

.owner-read-more {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-teal-2);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: 2px solid white;
}

.owner-card:hover .owner-read-more {
  opacity: 1;
}

.owner-card h3 {
  margin: 0.75rem 1rem 0.25rem;
  text-align: center;
}

.owner-card p {
  text-align: center;
  margin: 0.25rem 1rem 0.75rem;
}

.owner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 2.5rem;
  transition: background 0.3s ease;
}

.owner-logo-card:hover {
  background: radial-gradient(circle, var(--brand-teal-2) 0%, var(--brand-teal-2) 100%);
}

.owner-logo-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 4.6px solid var(--brand-teal-2);
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.owner-logo-card:hover::before {
  opacity: 0;
}

.owner-logo-card img {
  position: relative;
  z-index: 2;
  width: min(180px, 85%);
  height: auto;
  transition: filter 0.3s ease;
}

.owner-logo-card:hover img {
  filter: brightness(0) invert(1);
}

.owner-about-us {
  position: absolute;
  top: calc(400px - 1rem);
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--brand-teal-2);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 3;
  border: 2px solid white;
}

.owner-logo-card:hover .owner-about-us {
  opacity: 1;
}

.staff-banner-image {
  margin-bottom: 1.35rem;
}

.staff-banner-image img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 14px 28px rgba(18, 52, 84, 0.06);
}

.staff-live-title {
  margin: -3% auto 1.1rem;
  width: 105%;
  max-width: none;
  margin-left: -2.5%;
  padding: 0.84rem 1.5rem;
  border-radius: 0.45rem;
  border: 2px solid #0b6e85;
  background: #0b6e85;
  color: #ffffff;
  font-family: Rye, Georgia, "Times New Roman", serif;
  font-size: clamp(1.47rem, 2.352vw, 2.205rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  text-shadow:
    -1px -1px 0 rgba(156, 201, 194, 0.45),
    1px -1px 0 rgba(156, 201, 194, 0.45),
    -1px 1px 0 rgba(156, 201, 194, 0.45),
    1px 1px 0 rgba(156, 201, 194, 0.45);
  box-shadow: 0 8px 20px rgba(11, 110, 133, 0.22);
  white-space: nowrap;
  overflow-wrap: normal;
}

.staff-intro-copy {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.staff-intro-title {
  text-align: center;
  font-size: 1.75rem;
}

.staff-location-list {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.52rem 0 1.2rem;
  color: #0b6e85;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.staff-location-list a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.staff-location-list a::after {
  content: '\2193';
  font-size: 1.1em;
  line-height: 1;
}

.staff-location-list a:hover,
.staff-location-list a:focus-visible {
  color: var(--brand-yellow-dark);
  transform: translateY(2px);
}

.staff-location-target {
  scroll-margin-top: 7rem;
  text-align: center;
  font-size: 2.34rem;
}

.staff-profiles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.staff-profiles-grid .feature-card {
  padding: 0;
  overflow: visible;
}

.staff-profile-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--brand-teal-1);
}

.staff-profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.staff-profile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 42, 67, 0.82) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}

.staff-profile-info,
.staff-profile-link,
.staff-profile-placeholder-text {
  position: absolute;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.staff-profile-info {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: white;
}

.staff-profile-info h3 {
  margin: 0;
  font-size: 1.05rem;
}

.staff-profile-info p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}

.staff-profile-link {
  top: 50%;
  left: 50%;
  padding: 0.7rem 1.35rem;
  border: 2px solid white;
  border-radius: 0.625rem;
  background: var(--brand-teal-2);
  color: white;
  font-weight: 600;
  opacity: 0;
  transform: translate(-50%, -35%);
}

.staff-profile-image:hover img,
.staff-profile-image:focus-within img {
  filter: brightness(0.72);
  transform: scale(1.06);
}

.staff-profile-image:hover .staff-profile-info,
.staff-profile-image:focus-within .staff-profile-info {
  opacity: 0;
  transform: translateY(0.5rem);
}

.staff-profile-image:hover .staff-profile-link,
.staff-profile-image:focus-within .staff-profile-link {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.staff-profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-profile-placeholder-text {
  top: 1rem;
  right: 1rem;
  left: 1rem;
  color: rgba(16, 42, 67, 0.7);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-profile-placeholder .staff-profile-info {
  z-index: 2;
}

.staff-bio-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 3rem;
  align-items: start;
}

.staff-bio-photo {
  position: relative;
  z-index: 1;
  width: calc(100% + 10px);
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  margin: -5px;
  border-radius: 1.5rem;
  border: 0.35rem solid white;
  box-shadow: var(--shadow);
  transform: translateY(5%) scale(0.918);
}

.bradyn-page .staff-bio-photo {
  object-position: center top;
  transform: translateY(6.5%) scale(0.918);
}

.sabrina-page .staff-bio-photo {
  object-position: center top;
  transform: translateY(6%) scale(0.918);
}

.sarah-page .staff-bio-photo {
  object-position: center top;
  transform: translateY(5%) scale(0.918);
}

.staff-profile-image img[src*="Sabrina"] {
  object-position: center top;
}

.staff-profile-image img[src*="Sarah%20Cowley"] {
  object-position: center top;
  transform: none;
}

.staff-profile-image:hover img[src*="Sarah%20Cowley"],
.staff-profile-image:focus-within img[src*="Sarah%20Cowley"] {
  transform: scale(1.06);
}

.staff-bio-layout::before,
.staff-bio-layout::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: min(100%, 360px);
  height: 360px;
  pointer-events: none;
}

.staff-bio-layout::before {
  top: 0.8rem;
  left: -0.35rem;
  border-radius: 1.25rem 2.25rem 1.5rem 2rem;
  background: var(--brand-teal-2);
  transform: rotate(-10deg);
}

.staff-bio-layout::after {
  top: 1.35rem;
  left: 0.1rem;
  border: 0.35rem solid var(--brand-yellow-dark);
  border-radius: 1.75rem 1rem 2rem 1.25rem;
  transform: rotate(8deg);
}

.staff-bio-layout > .staff-bio-photo {
  box-shadow: 0 1.5rem 2.5rem rgba(16, 42, 67, 0.2);
}

.staff-bio-copy h1 {
  margin: 0;
  color: #0b6e85;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.staff-bio-role {
  margin: 0.65rem 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.staff-bio-copy p {
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.75;
}

.staff-bio-back {
  display: inline-flex;
  margin-top: 1rem;
}

@media (max-width: 700px) {
  .staff-bio-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .staff-bio-layout::before,
  .staff-bio-layout::after {
    width: min(100%, 350px);
    height: min(350px, calc(100vw - 2rem));
  }
}

.founder-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.founder-layout img {
  width: 100%;
  max-width: 220px;
  border-radius: 1rem;
  border: 1px solid rgba(16, 42, 67, 0.1);
    margin-top: 0;
    padding-top: 0;
}

.feature-card,
.location-card {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(18, 52, 84, 0.05);
}

.section-primary .contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

#contact .contact-panel {
  display: block;
  max-width: 760px;
}

#contact .contact-panel-main > span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.4rem;
}

#contact .contact-panel-main h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

#contact .contact-panel-main p {
  margin: 0.65rem 0 0;
}

#contact .contact-panel-main .button {
  margin-top: 0.9rem;
  width: auto;
}

.contact-panel p,
.contact-panel strong,
.contact-panel a {
  color: white;
}

.contact-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.75rem;
  padding: 2rem;
}

.contact-card-inner {
  display: grid;
  gap: 1.25rem;
}

.contact-card img {
  width: 72px;
}

.contact-phone {
  margin-top: 1.25rem;
  font-size: 1rem;
}

.contact-note {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
}

#contact .contact-note {
  margin-top: 0.55rem;
}

.blog-preview-section {
  padding-top: 2.75rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(180deg, rgba(245, 250, 253, 0.55) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-preview-card {
  background: #ffffff;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
}

.blog-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ecf7f6;
}

.blog-preview-copy {
  padding: 1rem 1rem 1.1rem;
}

.blog-preview-copy h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #0b6e85;
}

.blog-preview-copy p {
  margin: 0.65rem 0 0;
  color: #34516d;
}

.blog-preview-copy a {
  display: inline-flex;
  margin-top: 0.8rem;
  font-weight: 700;
  color: #0b6e85;
  border-bottom: 2px solid rgba(11, 110, 133, 0.25);
  padding-bottom: 0.05rem;
}

.blog-preview-copy a:hover {
  color: #08718c;
  border-bottom-color: rgba(8, 113, 140, 0.5);
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f1f7fb 100%);
  border-top: 1px solid rgba(16, 42, 67, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0 1.4rem;
  color: var(--muted);
}

.footer-title {
  margin: 0;
  font-family: Rye, Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: #0b6e85;
}

.footer-copy {
  margin: 0.5rem 0 0;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.social-facebook {
  color: #0b6e85;
  background: #fecc66;
  border-color: rgba(230, 179, 71, 0.5);
}

.social-instagram {
  color: #0b6e85;
  background: #fecc66;
  border-color: rgba(230, 179, 71, 0.5);
}

.social-facebook:hover,
.social-instagram:hover {
  filter: brightness(0.96);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.95rem 0 1.35rem;
  border-top: 1px solid rgba(16, 42, 67, 0.09);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  border-top: 1px solid rgba(16, 42, 67, 0.09);
  padding: 1rem 0 1.65rem;
  color: #3a4f67;
  font-size: 10pt;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-disclaimer p {
  margin: 0;
}

.footer-disclaimer p + p {
  margin-top: 0.25rem;
}

.back-to-top {
  font-weight: 700;
  color: #0b6e85;
}

@media (max-width: 860px) {
  .hero-grid,
  .section-primary .contact-panel,
  .about-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-map-grid {
    grid-template-columns: 1fr;
  }

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

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

  .blog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .owners-grid {
    grid-template-columns: 1fr;
  }

  .staff-profiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: fixed;
    inset: 5.5rem 1rem auto auto;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-disclaimer {
    padding-top: 0.7rem;
  }
}

@media (max-width: 1180px) {
  .locations-grid-four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #locations .locations-grid.locations-grid-four-up,
  .section .locations-grid.locations-grid-four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .staff-location-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .staff-location-list a {
    flex: 1 1 30%;
  }

  .locations-grid-four-up {
    grid-template-columns: 1fr;
  }

  #locations .locations-grid.locations-grid-four-up,
  .section .locations-grid.locations-grid-four-up {
    grid-template-columns: 1fr;
  }

  .locations-title-single-line {
    white-space: normal;
  }

  .contact-title-single-line {
    white-space: normal;
  }

  .staff-live-title {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .button {
    width: 100%;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .staff-profiles-grid {
    grid-template-columns: 1fr;
  }
}

.team-section {
  position: relative;
  padding: 9rem 0 2rem;
  overflow: visible;
}

body.staff-page main > .section {
  padding-top: 0;
}

.team-section-inner {
  position: relative;
  padding-top: 1rem;
}

.team-section-title {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: Rye, Georgia, "Times New Roman", serif;
  font-size: clamp(5.175rem, 6.9vw, 8.05rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  text-align: center;
  color: #0b6e85;
  text-shadow:
    -2px -2px 0 rgba(156, 201, 194, 0.85),
    2px -2px 0 rgba(156, 201, 194, 0.85),
    -2px 2px 0 rgba(156, 201, 194, 0.85),
    2px 2px 0 rgba(156, 201, 194, 0.85);
  z-index: 2;
  width: min(100%, 60rem);
  margin: 0 auto;
}

@media (min-width: 861px) {
  .team-section-title {
    width: max-content;
    white-space: nowrap;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  color: white;
  box-shadow: var(--shadow);
}

.team-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transform-origin: center center;
  transform: translateX(100%) scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  will-change: transform, opacity;
  background-image: none;
}

.team-card-media.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.team-card-media.zoomed {
  transform: translateX(0) scale(1.2);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.team-image-list {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.team-card::before {
  display: none;
}

.team-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
}

.team-card-copy span {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card.centered .team-card-copy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
}

.team-card.centered .team-card-copy span {
  background: rgba(255,255,255,0.48);
  color: #0b6e85;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-family: Rye, Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 100%;
  text-shadow:
    -1px -1px 0 rgba(156, 201, 194, 0.85),
    1px -1px 0 rgba(156, 201, 194, 0.85),
    -1px 1px 0 rgba(156, 201, 194, 0.85),
    1px 1px 0 rgba(156, 201, 194, 0.85);
}



@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-section-title {
    top: -4%;
    transform: translateX(-50%);
    font-size: clamp(3rem, 8vw, 4.5rem);
    width: min(100%, 90vw);
  }
}
