:root {
  --charcoal: #161719;
  --charcoal-2: #23262a;
  --slate: #3a3f45;
  --soft-gray: #f4f2ed;
  --muted: #aeb4bb;
  --gold: #c8a34a;
  --gold-light: #e6c978;
  --white: #ffffff;
  --black: #0c0d0f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --radius: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--soft-gray);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(200, 163, 74, 0.25);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 23, 25, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 25px rgba(200, 163, 74, 0.25);
}

.logo span:last-child { font-size: 0.95rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.80rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 18px 35px rgba(200, 163, 74, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(8, 8, 8, 0.82),
      rgba(8, 8, 8, 0.82)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-grid {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-start;
  padding: 0 0 70px;
  margin-top: -40px;
}

.hero-copy {
  max-width: 1100px;
  margin-top: -96px;
}

h1 {
  font-size: clamp(2rem, 5vw, 7rem);
  max-width: 900px;
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  letter-spacing: -0.07em;
  max-width: 820px;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.28rem;
  margin: 24px 0 32px;
  text-align: justify;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat {
  min-height: 145px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.stat span { color: rgba(255, 255, 255, 0.78); font-weight: 700; }

.section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(
      rgba(244, 242, 237, 0.72),
      rgba(244, 242, 237, 0.72)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-dark {
  background:
    linear-gradient(
      rgba(12, 13, 15, 0.88),
      rgba(12, 13, 15, 0.88)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}

.section-title {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.section-title p { margin: 0; color: #666; font-size: 1.05rem; }
.section-dark .section-title p { color: rgba(255, 255, 255, 0.68); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 180px;
  border: 1px solid rgba(22, 23, 25, 0.08);
  box-shadow: 0 15px 35px rgba(22, 23, 25, 0.06);
}

.service-card::before {
  content: '';
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin-bottom: 22px;
}

.service-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.panel {
  background: var(--white);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 22px 55px rgba(22, 23, 25, 0.08);
}

.panel.dark {
  background: linear-gradient(135deg, #22262a, #101113);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
}

.panel h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 18px; letter-spacing: -0.045em; }

.panel:not(.dark) h2 { color: var(--black); }
.panel p { color: #555; }
.panel.dark p { color: rgba(255,255,255,.72); }

.gold-line {
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  margin: 0 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card, .form-card {
  border-radius: 30px;
  padding: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.contact-card a { color: var(--gold-light); font-weight: 800; }

.form-card form { display: grid; gap: 14px; }

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  color: var(--white);
  background: rgba(255,255,255,.08);
}

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

input::placeholder, textarea::placeholder { color: rgba(255,255,255,.52); }

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(8, 8, 8, 0.82),
      rgba(8, 8, 8, 0.82)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 96px 0 76px;
}

.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 800px; color: rgba(255,255,255,.72); font-size: 1.12rem; }

.text-block {
  max-width: 920px;
  font-size: 1.08rem;
  color: #444;
}

.text-block p { margin: 0 0 20px; }

.structure-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  list-style: none;
}

.structure-list li {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 800;
  border-left: 5px solid var(--gold);
  box-shadow: 0 10px 24px rgba(22, 23, 25, 0.06);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.member-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(22, 23, 25, 0.08);
  border: 1px solid rgba(22,23,25,.08);
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(200,163,74,.18), rgba(255,255,255,.02)),
    linear-gradient(135deg, #2b3035, #111214);
  color: rgba(255,255,255,.72);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.president-card {
  max-width: 300px;
  width: 100%;
  justify-self: center;
}

.president-photo {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.member-info { padding: 26px; text-align: center; }
.member-info h3 { font-size: 1.35rem; }
.member-info p { color: #666; margin: 8px 0 0; }

footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-inner strong { color: var(--white); }

@media (max-width: 920px) {
  .nav-inner { height: auto; padding: 18px 0; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
  .hero-grid, .split, .section-title, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .service-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .structure-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar-inner, .footer-inner { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .nav-inner { flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .service-grid, .team-grid, .stat-grid, .structure-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 68px 0; }
  .panel, .contact-card, .form-card { padding: 28px; }
}


/* ================================
   Premium polish pass
   Visual-only refinements
   ================================ */

:root {
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --card-shadow: 0 22px 60px rgba(12, 13, 15, 0.12);
  --card-shadow-hover: 0 30px 85px rgba(12, 13, 15, 0.18);
  --gold-soft: rgba(200, 163, 74, 0.18);
}

/* Better background depth across pages */
body {
  background:
    linear-gradient(rgba(244, 242, 237, 0.62), rgba(244, 242, 237, 0.62)),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* Sleeker header */
.topbar {
  background: rgba(8, 9, 10, 0.96);
  border-bottom: 1px solid rgba(200, 163, 74, 0.34);
}

.navbar {
  background: rgba(18, 19, 21, 0.88);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
}

.logo-mark {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 12px 30px rgba(200, 163, 74, 0.35);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* More premium hero treatment */
.hero,
.page-hero {
  box-shadow: inset 0 -80px 130px rgba(0, 0, 0, 0.28);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 45%, rgba(200, 163, 74, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,0.32), transparent 58%);
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-left: 0;
  border-left: none;
}

.hero p,
.page-hero p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

/* Make section backgrounds more dimensional while preserving layout */
.section {
  background:
    linear-gradient(
      rgba(244, 242, 237, 0.64),
      rgba(244, 242, 237, 0.64)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-dark {
  background:
    linear-gradient(
      rgba(12, 13, 15, 0.84),
      rgba(12, 13, 15, 0.84)
    ),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Higher-end card surfaces */
.service-card,
.panel,
.member-card,
.structure-list li,
.contact-card,
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--card-shadow);
}

.service-card,
.panel,
.member-card,
.structure-list li {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.panel.dark,
.contact-card,
.form-card {
  backdrop-filter: blur(12px);
}

.service-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(200, 163, 74, 0.42);
}

.service-card::before,
.gold-line {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 20px rgba(200, 163, 74, 0.25);
}

.panel.dark {
  background:
    linear-gradient(135deg, rgba(35, 38, 42, 0.92), rgba(12, 13, 15, 0.94));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.panel:not(.dark) {
  border-top: 1px solid rgba(255, 255, 255, 0.92);
}

/* More polished buttons */
.btn {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.btn-gold {
  background: linear-gradient(135deg, #f1d87f, #c8a34a 58%, #b78f33);
  box-shadow:
    0 18px 38px rgba(200, 163, 74, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

/* Cleaner forms */
input,
textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(230, 201, 120, 0.72);
  box-shadow: 0 0 0 4px rgba(200, 163, 74, 0.14);
  background: rgba(255,255,255,.11);
}

/* Photo card refinement */
.president-card {
  box-shadow: 0 28px 80px rgba(12, 13, 15, 0.16);
}

.president-photo {
  filter: contrast(1.02) saturate(0.95);
}

/* Footer polish */
footer {
  border-top: 1px solid rgba(200, 163, 74, 0.25);
  background:
    linear-gradient(rgba(8, 9, 10, 0.96), rgba(8, 9, 10, 0.96)),
    url("gfm building image.jpg");
  background-size: cover;
  background-position: center;
}



/* =====================================
   Four-page split: About + Mission
   ===================================== */

.nav-links {
  gap: 22px;
}

.about-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about-callout h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  letter-spacing: -0.06em;
  max-width: 780px;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.about-icon-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(230,201,120,.28);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 210px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.about-icon-card::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  margin-bottom: 20px;
}

.about-icon-card h3 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .96rem;
  line-height: 1.18;
  margin-bottom: 14px;
}

.about-icon-card p {
  color: rgba(255,255,255,.76);
  margin: 0;
  font-size: .96rem;
}

.about-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.client-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.client-list li {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.about-serving-section h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.07em;
}

.mission-simple {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 18% 18%, rgba(212,175,55,.18), transparent 34%),
    linear-gradient(rgba(0,0,0,.74), rgba(0,0,0,.82)),
    url('gfm building image.jpg');
  background-size: cover;
  background-position: center;
}

.mission-panel {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 64px 72px;
}

.mission-panel .gold-line {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 6px;
}

.mission-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 28px;
}

.mission-panel p {
  font-size: 1.28rem;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1100px) {
  .about-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .about-feature {
    grid-template-columns: 1fr;
  }
  .about-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-icon-grid {
    grid-template-columns: 1fr;
  }
}


.about-card-photo{
  width:100%;
  height:180px;
  object-fit:cover;
  object-position:center;
  border-radius:16px;
  margin:18px 0;
  display:block;
}


.president-bio{
  margin-top:14px;
  font-size:0.95rem;
  line-height:1.6;
  color:#555;
}


/* Client logos - keeps existing card layout */
.client-logo-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
}

.client-logo{
    max-width:140px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.client-more{
    font-weight:700;
    margin-top:8px;
}


/* About page top client/team section refinement */
.about-advantage-top {
  padding-top: 92px;
  padding-bottom: 92px;
}

.clients-panel-light {
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--black) !important;
  text-align: center;
}

.clients-panel-light h2 {
  color: var(--black) !important;
  text-align: center;
}

.clients-panel-light .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.clients-panel-light .client-logo-list {
  align-items: center !important;
  text-align: center;
}

.clients-panel-light .client-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clients-panel-light .client-more {
  text-align: center;
  color: var(--gold);
}

/* Center the left and right cards in the About page top section */
.about-advantage-top .about-bottom-grid > .panel:first-child,
.about-advantage-top .about-bottom-grid > .panel:last-child {
  text-align: center !important;
}

.about-advantage-top .about-bottom-grid > .panel:first-child .gold-line,
.about-advantage-top .about-bottom-grid > .panel:last-child .gold-line {
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-advantage-top .about-bottom-grid > .panel:first-child img,
.about-advantage-top .about-bottom-grid > .panel:last-child img {
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-title-with-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-standards-photo {
    width: 400px;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.35);
}

@media (max-width: 900px) {
    .section-title-with-image {
        flex-direction: column;
        text-align: center;
    }

    .service-standards-photo {
        width: 100%;
        max-width: 500px;
    }
}

/* Tampa & Orlando section - light version */
.about-serving-light {
    position: relative;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.64),
            rgba(255,255,255,0.64)
        ),
        url("gfm building image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-serving-light .eyebrow {
    color: var(--black);
}

.about-serving-light h2 {
    color: #111;
}

.about-serving-light p {
    color: #444;
}

.about-serving-light .contact-card {
    background: #1f1f1f;
    color: white;
}

.about-serving-light .contact-card h3,
.about-serving-light .contact-card p,
.about-serving-light .contact-card a {
    color: white;
}

/* Dark cards in the light contact section */
#contact .contact-card,
#contact .form-card {
  background: rgba(22, 23, 25, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

#contact .contact-card h3,
#contact .contact-card p,
#contact .contact-card strong {
  color: var(--white);
}

#contact input,
#contact textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Scroll fade-in */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes symbolEntrance {
  0%   { opacity: 0; transform: scale(0.8) rotate(-6deg); }
  100% { opacity: 0.88; transform: scale(1.25) rotate(0deg); }
}

@keyframes symbolFloat {
  0%, 100% { transform: scale(1.25) translateY(0px); }
  50%       { transform: scale(1.25) translateY(-14px); }
}

.hero-symbol img {
  width: 100%;
  transform-origin: center;
  filter: drop-shadow(0 20px 60px rgba(200, 163, 74, 0.3));
  animation:
    symbolEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    symbolFloat 5s ease-in-out 1.2s infinite;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-symbol {
    display: none;
  }
}

.nav-contact {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-left: auto;
}

.team-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 520px); gap: 48px; align-items: center; }
.hero-president-video video { width: 100%; display: block; border-radius: 18px; border: 2px solid rgba(255,255,255,.92); box-shadow: 0 12px 30px rgba(212,175,55,.18), 0 30px 80px rgba(0,0,0,.38); background: #000; }
@media (max-width: 900px) { .team-hero-grid { grid-template-columns: 1fr; } }

/* Dark gray member cards */
.member-card {
  background: var(--charcoal-2);
}

.member-info h3 { color: var(--white); }
.member-info p { color: rgba(255, 255, 255, 0.7); }

.section-dark .member-info h3 { color: var(--white); }
.section-dark .member-info p { color: rgba(255, 255, 255, 0.7); }

/* Team member photos - uniform crop */
.team-member-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Real GFM logo in navbar */
.site-logo {
  height: 148px;
  width: auto;
  display: block;
}

.logo {
  gap: 0;
}

@media (max-width: 640px) {
  .site-logo {
    height: 46px;
  }
}


.about-services-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.about-services-list li {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #0c0d0f;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(22, 23, 25, 0.06);
}

.about-services-list li:last-child {
  margin-bottom: 0;
}

.team-description {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: justify;
  color: #333;
}

/* Team page hero — compact */
.team-hero-grid {
  padding: 10px 0;
}

.page-hero:has(.team-hero-grid) {
  padding: 18px 0;
}

/* Fit team page content in one screen */
.page-hero:has(.team-hero-grid) + .section {
  padding: 36px 0;
}

.team-hero-copy h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.team-hero-copy p {
  font-size: 0.95rem;
  margin: 10px 0 0;
}

.team-hero-copy .eyebrow {
  margin-bottom: 8px;
}

/* Team page combined section */
.team-president-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 30px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.team-president-photo-card {
  width: 100%;
}

.president-photo-crop {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.president-crop-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: translateY(-13%);
}

.team-president-bio-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
}

.team-president-bio-card .president-video-link {
  margin-top: 14px;
  font-size: 0.88rem;
}

.team-president-photo-card .member-info {
  padding: 14px;
}

.team-leadership-row .member-info {
  padding: 14px;
}

.team-leadership-row .member-info h3 {
  font-size: 1.1rem;
}

.team-leadership-row .member-info p {
  font-size: 0.85rem;
  margin: 4px 0 0;
}

.team-president-bio-card .member-info h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.team-president-bio-card .member-info p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
}

.team-president-bio-card > p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.team-leadership-row {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 920px) {
  .team-president-row {
    grid-template-columns: 1fr;
  }
  .team-leadership-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.president-video-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
  font-size: 1rem;
  color: #d6b14c;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.president-video-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.team-president-bio-card {
  text-align: center;
  background: var(--charcoal-2) !important;
}

.team-president-bio-card .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.team-president-bio-card .member-info h3 {
  color: var(--white);
}

.team-president-bio-card > p {
  color: rgba(255, 255, 255, 0.82);
}

.form-intro {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

#contact input,
#contact textarea {
  padding: 11px 14px;
  font-size: 0.9rem;
}

#contact textarea {
  min-height: 100px;
}

/* About page top dark section fills full viewport */
.about-advantage-top {
  min-height: 100vh;
}

/* Match Tampa & Orlando section background intensity to other white sections */
.about-serving-light {
    background-image:
        linear-gradient(
            rgba(255,255,255,0.64),
            rgba(255,255,255,0.64)
        ),
        url('gfm building image.jpg') !important;
}


.btn-rect {
  border-radius: 6px;
  padding: 0 36px;
  letter-spacing: 0.08em;
}

/* Homepage hero logo and headline adjustment */
.hero-main-logo {
  width: 880px !important;
  max-width: none !important;
  height: auto;
  display: block;
  margin: 0 0 12px -195px;
  position: relative;
  top: 25px;
  flex: none;
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 2.7vw, 2.4rem);
  max-width: 620px;
  line-height: 1.02;
  margin: -90px 0 -6px 0;
}

/* Final mobile compatibility pass */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-inner {
    height: auto;
    min-height: 0;
    padding: 14px 0;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .site-logo {
    height: 86px !important;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: center;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block !important;
    min-height: auto;
    padding: 64px 0;
    margin-top: 0 !important;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 0 !important;
    text-align: center;
  }

  .hero-main-logo {
    width: min(480px, 108%) !important;
    max-width: none !important;
    margin: 0 auto -54px !important;
    top: 0 !important;
    transform: translateX(-60px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(1.5rem, 7vw, 2.3rem) !important;
    max-width: 100%;
    margin: 0 auto 14px !important;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-symbol {
    display: none !important;
  }

  .section,
  .section-dark,
  .page-hero {
    padding: 64px 0;
  }

  .section-title,
  .split,
  .contact-grid,
  .about-bottom-grid,
  .team-hero-grid,
  .president-leadership-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .section-title {
    gap: 18px;
    margin-bottom: 28px;
  }

  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .service-grid,
  .about-icon-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .panel,
  .member-card,
  .contact-card,
  .form-card {
    padding: 26px;
  }

  .about-card-photo,
  .team-member-photo,
  .president-photo {
    height: 220px;
    object-fit: cover;
  }

  .client-logo-list {
    align-items: center;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .site-logo {
    height: 74px !important;
  }

  .nav-links {
    font-size: 0.68rem;
    gap: 8px 12px;
  }

  .hero-main-logo {
    width: min(340px, 100%) !important;
  }

  .panel,
  .member-card,
  .contact-card,
  .form-card {
    padding: 22px;
  }
}
