/* Variables for easy adjustment */
:root {
    --primary-yellow: #fdb813;
    --text-color: #555;
    --heading-color: #333;
    --container-width: 85vw; /* Adjusted from 0.85vw */
    --yellow: #f4c542;
    --dark: #1a1a1a;
    --light-grey: #f4f4f4;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-container {
    width: var(--container-width);
    max-width: 1200px;
    padding: 30px 80px;
}

/* Section 1: Purpose */
.purpose-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 100px;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    flex: 1;
}

.yellow-heading {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
}

/* The yellow line before heading */
.yellow-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.text-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Section 2: Hero Statement */
.hero-statement {
    margin-bottom: 80px;
}

.hero-statement h1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.8rem;
    color: var(--heading-color);
    line-height: 1.2;
}

/* Section 3: Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.value-item h3 {
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 0.85rem;
}

/* Section 4: Team Section */
.team-section {
    margin-bottom: 100px;
}

.team-header {
    width: 35%;
    margin-bottom: 40px;
}

.team-body {
    display: flex;
    gap: 40px;
}

.team-body .column {
    flex: 1;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .purpose-section, .values-grid, .team-body {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero-statement h1 {
        font-size: 1.8rem;
    }
}
















/* Styling for the specific brand section */
.hero-brand-section {
    width: 70vw; /* Scaled from 0.7vw */
    height: 95vh; /* Scaled from 0.95vh */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5vw;
    background-color: #ffffff;
    overflow: hidden;
    margin-left: 70px;
    margin-bottom: -50px;
}

.content-wrapper {
    max-width: 100%;
}

.header-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sub-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5em; /* Matches the wide-spaced text in the image */
    color: #333;
    font-weight: 400;
}

.line {
    height: 1px;
    background-color: #333;
    flex-grow: 1; /* Extends the line to the right */
    max-width: 250px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Extra bold black weight */
    font-size: 5.5rem; /* Large impact font */
    line-height: 0.95;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Adjustments for smaller screens */
@media (max-width: 1024px) {
    .hero-brand-section {
        width: 90vw;
    }
    .main-title {
        font-size: 3.5rem;
    }
}
























/* --- Team Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 100px 70px;
    padding: 0 160px;
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Stagger effect for the middle column */
.grid-col.offset {
    margin-top: -100px;
}

.member {
    position: relative;
    width: 80%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: filter 0.3s ease;
}

.member:hover img {
    filter: grayscale(0%);
}

.name {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 0.75rem;
    font-weight: 900;
    background-color: white; /* Optional: adds legibility */
    padding: 2px 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .main-container { width: 90vw; }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .grid-col.offset { margin-top: 0; }
    .hero-title { font-size: 2.5rem; }
}





















.main-header {
    position: fixed;
    top: 0; width: 100%; height: 60px;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: flex; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 90%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: #1a1a1a; }
.logo-text { font-size: 1.4rem; font-weight: 900; letter-spacing: 4px; }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { text-decoration: none; color: #1a1a1a; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.nav-links a:hover { color: var(--yellow); }


























.main-footer { background-color: #eee; padding-top: 100px; padding-bottom: 40px; border-top: 1px solid #f0f0f0; margin-top: 300px;}
.footer-grid { display: flex; justify-content: flex-end; gap: 80px; margin-bottom: 100px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid #eee; font-size: 0.8rem; color: #888; }
























.offer-section {
    padding: 100px 0;
    background-color: var(--light-grey);
    display: flex;
    justify-content: center;
}

.offer-container {
    background-color: var(--white);
    max-width: 1100px; width: 90%;
    display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    border-radius: 4px; overflow: hidden;
}

.offer-text { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.offer-text h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; }
.offer-text h1 span { color: var(--yellow); }
.offer-text p { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.italic-promise { font-family: 'Playfair Display', serif; font-style: italic; border-left: 4px solid var(--yellow); padding-left: 20px; }

.offer-form-wrap { background-color: var(--yellow); padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 900; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: none; background: rgba(255, 255, 255, 0.9); font-family: 'Montserrat', sans-serif; }
.submit-btn { background-color: var(--dark); color: #fff; border: none; padding: 20px; width: 100%; font-weight: 900; text-transform: uppercase; cursor: pointer; }









































/* Container and Reset Scope */
.bs-footer-wrapper {
  width: 100%;
  padding: 80px 40px 40px 40px;
  background-color: #ffffff;
  color: #333333;
  font-family: "Times New Roman", Times, serif; /* Matching the serif body font */
  box-sizing: border-box;
  background-color: #eee;
  margin-top: 250px;
}

.bs-footer-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Main Layout Grid */
.bs-footer-main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 100px auto;
  gap: 40px;
}

.bs-footer-spacer {
  flex: 1.5; /* Large empty space on the left */
}

.bs-footer-column {
  flex: 1;
  min-width: 250px;
}

/* Typography */
.bs-footer-heading {
  font-family: 'Segoe UI', Arial, sans-serif; /* Sans-serif for headings */
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bs-footer-address,
.bs-footer-contact-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Links */
.bs-footer-link-inline {
  color: #444;
  text-decoration: underline;
}

.bs-footer-link-underline {
  color: #444;
  text-decoration: underline;
}

/* Bottom Bar Styling */
.bs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  color: #666;
}

.bs-footer-nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  margin-left: 5px;
}

.bs-footer-social-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.bs-footer-social-link:hover {
  color: #000;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .bs-footer-main {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .bs-footer-spacer {
    display: none;
  }
  .bs-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}