/* =========================================================
   BTSG GLOBAL STYLES
   Shared design system for the BTSG corporate site.

   - Variables live on :root so they're available everywhere.
   - Header (.btsg-topbar) and footer (.btsg-footer) are GLOBAL:
     they style by class, so they work on any page (e.g. contact.html)
     even when not wrapped in #btsg-corporate-page.
   - Home-page sections stay scoped under #btsg-corporate-page.

   Font: Georgia
   ========================================================= */

html, body { margin: 0; padding: 0; }

:root {
  --btsg-plum: #4d1f3d;
  --btsg-plum-dark: #351329;
  --btsg-charcoal: #171717;
  --btsg-gray: #666666;
  --btsg-light: #f4f4f5;
  --btsg-border: #dedede;
  --btsg-white: #ffffff;
  --btsg-max: 1280px;
}


/* =========================================================
   HOME PAGE WRAPPER (index.html)
   ========================================================= */

#btsg-corporate-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--btsg-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;

  /* Full-height column so the footer always sits at the bottom edge */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#btsg-corporate-page *,
#btsg-corporate-page *::before,
#btsg-corporate-page *::after {
  box-sizing: border-box;
  font-family: Georgia, "Times New Roman", serif;
}

#btsg-corporate-page img {
  max-width: 100%;
  height: auto;
}

#btsg-corporate-page a {
  text-decoration: none;
}

#btsg-corporate-page .btsg-inner {
  width: 92%;
  max-width: var(--btsg-max);
  margin: 0 auto;
}


/* =========================================================
   TOP BRAND BAR (global)
   ========================================================= */

.btsg-topbar {
  background: var(--btsg-white);
  border-bottom: 1px solid #e6e6e6;
}

.btsg-topbar-inner {
  width: 92%;
  max-width: var(--btsg-max);
  margin: 0 auto;
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.btsg-topbar .btsg-logo {
  display: block;
  width: 225px;
  max-width: 55%;
}

.btsg-logo-placeholder {
  width: 225px;
  min-height: 48px;

  display: flex;
  align-items: center;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;

  color: var(--btsg-plum);
}

.btsg-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btsg-nav a {
  color: #333333;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-decoration: none;
}

.btsg-nav a:hover {
  color: var(--btsg-plum);
}


/* =========================================================
   HERO (index.html)
   ========================================================= */

#btsg-corporate-page .btsg-hero {
  background: var(--btsg-light);
  position: relative;
}

#btsg-corporate-page .btsg-hero-inner {
  width: 92%;
  max-width: var(--btsg-max);
  margin: 0 auto;

  min-height: 560px;

  display: flex;
  align-items: stretch;
}

#btsg-corporate-page .btsg-hero-copy {
  width: 50%;
  padding: 85px 65px 85px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

#btsg-corporate-page .btsg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  color: var(--btsg-plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

#btsg-corporate-page .btsg-eyebrow::before {
  content: "";
  width: 38px;
  height: 4px;

  background: var(--btsg-plum);
  display: inline-block;
}

#btsg-corporate-page .btsg-hero h1 {
  margin: 0 0 22px 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -1.8px;
  font-weight: 700;

  color: var(--btsg-charcoal);
}

#btsg-corporate-page .btsg-hero h1 span {
  color: var(--btsg-plum);
}

#btsg-corporate-page .btsg-hero-copy p {
  margin: 0 0 30px 0;

  max-width: 610px;

  color: #444444;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.65;
}

#btsg-corporate-page .btsg-btn {
  display: inline-block;
  width: fit-content;

  padding: 14px 25px;

  background: var(--btsg-plum);
  color: #ffffff !important;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;

  border: 2px solid var(--btsg-plum);

  transition: all 0.2s ease;
}

#btsg-corporate-page .btsg-btn:hover {
  background: var(--btsg-plum-dark);
  border-color: var(--btsg-plum-dark);
  color: #ffffff !important;
}

#btsg-corporate-page .btsg-btn-outline {
  background: transparent;
  color: var(--btsg-plum) !important;
}

#btsg-corporate-page .btsg-btn-outline:hover {
  background: var(--btsg-plum);
  color: #ffffff !important;
}

#btsg-corporate-page .btsg-hero-image {
  width: 50%;
  min-height: 560px;

  position: relative;
  overflow: hidden;

  background: #dddddd;
}

#btsg-corporate-page .btsg-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}


/* =========================================================
   ABOUT BTSG (index.html)
   ========================================================= */

#btsg-corporate-page .btsg-intro {
  padding: 85px 0;
  background: #ffffff;
}

#btsg-corporate-page .btsg-intro-grid {
  display: flex;
  align-items: center;
  gap: 75px;
}

#btsg-corporate-page .btsg-intro-image {
  width: 44%;

  background: #eeeeee;
  overflow: hidden;
}

#btsg-corporate-page .btsg-intro-image img {
  display: block;
  width: 100%;
  height: auto;
}

#btsg-corporate-page .btsg-intro-copy {
  width: 56%;
}

#btsg-corporate-page .btsg-section-label {
  margin-bottom: 14px;

  color: var(--btsg-plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#btsg-corporate-page .btsg-intro h2 {
  margin: 0 0 20px 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  font-weight: 700;
}

#btsg-corporate-page .btsg-intro p {
  margin: 0;

  color: #555555;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   OUR COMPANIES (index.html)
   ========================================================= */

#btsg-corporate-page .btsg-companies {
  padding: 90px 0 100px 0;
  background: var(--btsg-light);
}

#btsg-corporate-page .btsg-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

#btsg-corporate-page .btsg-section-heading h2 {
  margin: 0 0 15px 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

#btsg-corporate-page .btsg-section-heading p {
  margin: 0;

  color: #666666;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
}

#btsg-corporate-page .btsg-company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

#btsg-corporate-page .btsg-company-card {
  background: #ffffff;

  border: 1px solid var(--btsg-border);

  min-height: 330px;

  padding: 38px;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#btsg-corporate-page .btsg-company-card::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 5px;

  background: var(--btsg-plum);
}

#btsg-corporate-page .btsg-company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

#btsg-corporate-page .btsg-company-logo {
  height: 70px;

  display: flex;
  align-items: center;

  margin-bottom: 28px;
}

#btsg-corporate-page .btsg-company-logo img {
  max-width: 250px;
  max-height: 65px;

  width: auto;
  height: auto;
}

#btsg-corporate-page .btsg-logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--btsg-plum);
}

#btsg-corporate-page .btsg-company-card h3 {
  margin: 0 0 10px 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}

#btsg-corporate-page .btsg-company-card .company-type {
  margin: 0 0 14px 0;

  color: var(--btsg-plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

#btsg-corporate-page .btsg-company-card p {
  margin: 0 0 25px 0;

  color: #5d5d5d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;

  max-width: 560px;
}

#btsg-corporate-page .btsg-company-card .btsg-card-button {
  margin-top: auto;
}


/* =========================================================
   WHY BTSG (index.html)
   ========================================================= */

#btsg-corporate-page .btsg-why {
  background: var(--btsg-charcoal);
  color: #ffffff;

  padding: 85px 0;
}

#btsg-corporate-page .btsg-why-heading {
  text-align: center;
  margin-bottom: 55px;
}

#btsg-corporate-page .btsg-why-heading .btsg-section-label {
  color: #ffffff;
}

#btsg-corporate-page .btsg-why-heading h2 {
  margin: 0;

  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  line-height: 1.1;
  font-weight: 700;
}

#btsg-corporate-page .btsg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

#btsg-corporate-page .btsg-why-item {
  text-align: center;
  padding: 0 15px;
}

#btsg-corporate-page .btsg-number {
  width: 52px;
  height: 52px;

  margin: 0 auto 22px auto;

  border: 2px solid #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

#btsg-corporate-page .btsg-why-item h3 {
  margin: 0 0 13px 0;

  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
}

#btsg-corporate-page .btsg-why-item p {
  margin: 0;

  color: #d1d1d1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}


/* =========================================================
   CONTACT CTA (index.html)
   ========================================================= */

#btsg-corporate-page .btsg-contact {
  background: var(--btsg-plum);
  color: #ffffff;

  padding: 70px 0;
}

#btsg-corporate-page .btsg-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

#btsg-corporate-page .btsg-contact-copy {
  max-width: 760px;
}

#btsg-corporate-page .btsg-contact h2 {
  margin: 0 0 12px 0;

  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}

#btsg-corporate-page .btsg-contact p {
  margin: 0;

  color: #eeeeee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.6;
}

#btsg-corporate-page .btsg-contact .btsg-btn {
  flex-shrink: 0;

  background: #ffffff;
  border-color: #ffffff;

  color: var(--btsg-plum) !important;
}

#btsg-corporate-page .btsg-contact .btsg-btn:hover {
  background: #eeeeee;
  border-color: #eeeeee;
}


/* =========================================================
   FOOTER (global)
   ========================================================= */

.btsg-footer {
  background: var(--btsg-charcoal);
  color: #d1d1d1;
  font-family: Georgia, "Times New Roman", serif;
  flex-shrink: 0;
}

.btsg-footer-inner {
  width: 92%;
  max-width: var(--btsg-max);
  margin: 0 auto;
  padding: 64px 0 30px;
}

.btsg-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.btsg-footer-brand {
  flex: 1 1 320px;
}

.btsg-footer-logo-chip {
  display: inline-block;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.btsg-footer-logo-chip img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.btsg-footer-brand p {
  margin: 0;
  max-width: 430px;
  color: #b9b9b9;
  font-size: 15px;
  line-height: 1.7;
}

.btsg-footer-col {
  flex: 0 1 190px;
}

.btsg-footer-col h3 {
  margin: 0 0 18px 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btsg-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btsg-footer-col li {
  margin-bottom: 12px;
  color: #b9b9b9;
  font-size: 15px;
  line-height: 1.5;
}

.btsg-footer-col a {
  color: #cfcfcf;
  font-size: 15px;
  text-decoration: none;
}

.btsg-footer-col a:hover {
  color: #ffffff;
}

.btsg-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.btsg-footer-social img {
  display: block;
  width: 34px;
  height: 34px;
}

.btsg-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.btsg-footer-legal a {
  color: #b9b9b9;
  font-size: 13px;
  text-decoration: none;
}

.btsg-footer-legal a:hover {
  color: #ffffff;
}

.btsg-footer-legal span {
  color: #666666;
  margin: 0 8px;
}

.btsg-footer-copy {
  color: #8f8f8f;
  font-size: 13px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 900px) {

  .btsg-nav {
    display: none;
  }

  #btsg-corporate-page .btsg-hero-inner {
    min-height: auto;
    flex-direction: column;
  }

  #btsg-corporate-page .btsg-hero-copy {
    width: 100%;
    padding: 65px 0;
  }

  #btsg-corporate-page .btsg-hero-image {
    width: 100%;
    min-height: 380px;
  }

  #btsg-corporate-page .btsg-hero h1 {
    font-size: 46px;
  }

  #btsg-corporate-page .btsg-intro-grid {
    flex-direction: column;
    gap: 40px;
  }

  #btsg-corporate-page .btsg-intro-image,
  #btsg-corporate-page .btsg-intro-copy {
    width: 100%;
  }

  #btsg-corporate-page .btsg-company-grid {
    grid-template-columns: 1fr;
  }

  #btsg-corporate-page .btsg-why-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  #btsg-corporate-page .btsg-contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media only screen and (max-width: 600px) {

  .btsg-topbar-inner {
    min-height: 68px;
  }

  .btsg-logo-placeholder {
    font-size: 19px;
  }

  #btsg-corporate-page .btsg-hero-copy {
    padding: 50px 0;
  }

  #btsg-corporate-page .btsg-hero h1 {
    font-size: 38px;
  }

  #btsg-corporate-page .btsg-hero-copy p {
    font-size: 17px;
  }

  #btsg-corporate-page .btsg-hero-image {
    min-height: 280px;
  }

  #btsg-corporate-page .btsg-intro,
  #btsg-corporate-page .btsg-companies,
  #btsg-corporate-page .btsg-why {
    padding: 60px 0;
  }

  #btsg-corporate-page .btsg-intro h2,
  #btsg-corporate-page .btsg-section-heading h2,
  #btsg-corporate-page .btsg-why-heading h2 {
    font-size: 34px;
  }

  #btsg-corporate-page .btsg-company-card {
    padding: 30px;
  }

  #btsg-corporate-page .btsg-contact h2 {
    font-size: 32px;
  }

  .btsg-footer-inner {
    padding: 48px 0 26px;
  }

  .btsg-footer-grid {
    gap: 36px;
  }

}
