/* ============================================
   THE 3RD EYE — SHARED STYLES
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --t3e-dark: #2f2f2f;
  --t3e-darker: #1e1e1e;
  --t3e-black: #111111;
  --t3e-orange: #E07B2A;
  --t3e-orange-light: #f08c3a;
  --t3e-bg: #f0ede8;
  --t3e-bg-light: #e8e8ec;
  --t3e-bg-mid: #e8e4de;
  --t3e-khaki: #c8b89a;
  --t3e-mid-dark: #3a3a3a;
  --t3e-text: #2a2a2a;
  --t3e-text-muted: #998e7d;
  --t3e-nav-height: 64px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

h1 {}
h2 {}

body {
  background-color: var(--t3e-bg);
  color: var(--t3e-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

img { max-width: 100%; height: auto; }

/* ============================================
   NAVBAR
   ============================================ */
.t3e-nav {
  background-color: var(--t3e-dark);
  height: 90px;
  z-index: 1000;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
    width: 120px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
}

.t3e-nav .nav-link {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02rem;
  font-weight: 400;
  color: #f5f5f5 !important;
  padding: 0 !important;
  transition: color 0.2s;
}

.t3e-nav .nav-link:hover,
.t3e-nav .nav-link.active {
  color: #969696 !important;
}

.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon { filter: invert(1); }

/* ============================================
   HOMEPAGE — HERO
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #3a3530 0%, #2a2520 40%, #1a1512 100%);
  display: flex;
  align-items: flex-end;
  padding: 0px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0px !important;
}

.hero-headline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-headline video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.hero-headline img {
    height: calc(100vh - 90px) !important;
    width: 100%;
}

.hero-sans {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}

.play-btn:hover {
  transform: scale(1.08);
  background: var(--t3e-orange);
}

.play-btn:hover svg polygon {
  fill: #fff;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--t3e-orange);
  font-weight: 700;
  line-height: 1;
}

.hero-line {
  display: inline-block;
  width: clamp(60px, 8vw, 140px);
  height: 1.5px;
  background: var(--t3e-orange);
  margin-bottom: 6px;
}

@media (max-width: 768px) {

.hero-section, .hero-headline {
  Min-height: initial !important;
  height: initial !important;
  z-index: 1;
}

}

/* ============================================
   HOMEPAGE — BRAND STATEMENT
   ============================================ */

.brand-statement {
  background-color: var(--t3e-bg-light);
  height: calc(100vh - 90px) !important;
}

.brand-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 75px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--t3e-dark);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.brand-sub {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.03rem;
  color: var(--t3e-text-muted);
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

.collage-container {
  position: relative;
  width: 550px;
  max-width: 100%;
}

.collage-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stylized fallback silhouette when no image is provided */
.collage-fallback {
  display: none;
}

.collage-placeholder .collage-img { display: none; }
.collage-placeholder .collage-fallback { display: block; }

.collage-shape {
  width: 380px;
  height: 460px;
  background: linear-gradient(135deg, var(--t3e-orange) 0%, #c4682a 30%, var(--t3e-dark) 60%, #1a1a1a 100%);
  clip-path: ellipse(48% 50% at 50% 50%);
  position: relative;
  overflow: hidden;
}

.collage-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}

/* ============================================
   HOMEPAGE — MANIFESTO
   ============================================ */
.manifesto-section {
  background-color: var(--t3e-bg-light);
  height: calc(100vh - 90px);
}

.manifesto-text p {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--t3e-dark);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.manifesto-text p:last-child { margin-bottom: 0; }


@media (max-width: 767px) {
.manifesto-section {
  height: initial !important;
}
.manifesto-text p {
    font-size: 24px;
    letter-spacing: 0px !important;
    margin-bottom: 0px;
    line-height: 1.2;
}
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-divider {
  border-top: 1px solid rgba(0,0,0,0.09);
  margin-top: 0;
  margin-bottom: 0;
}

.section-divider-short {
  background-color: var(--t3e-bg-light);
}

.section-divider-short hr {
  max-width: 1320px;
  padding: 0px !important;
  margin: 0 auto;
  color: #998e7d;
  opacity: 1;
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 4.0vw, 36px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--t3e-text-muted);
  text-transform: uppercase;
  margin: 0;
}

.section-label-bold {
    font-family: var(--font-display);
    font-size: clamp(18px, 4.0vw, 48px);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--t3e-text-muted);
    text-transform: uppercase;
    margin: 0;
}

.section-sublabel {
  font-family: var(--font-display);
  font-size: 24px;
  color: #363537;
  margin: 0;
}

@media (max-width: 767px) {
.section-label {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 1.2em;
}
.section-label-bold {
    font-size: 36px;
    letter-spacing: 0px;
    line-height: 1.2em;
    padding-bottom: 15px;
}
}

/* ============================================
   HOMEPAGE — SELECTED WORK GRID
   ============================================ */
.selected-work {
  background-color: var(--t3e-bg-light);
  height: 110vh;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 15px;
  height: calc(100vh - 25vh);
}

.iris-signup-form-home .gform_button {
    margin-bottom: 0px !important;
    background-color: #2f2f2f;
    color: #fff;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.6rem;
    border: none;
    transition: background-color 0.35s;
    letter-spacing: 0.02rem;
    width: 100%;
}

.iris-signup-form-home .gform-footer {
    margin-top: 0px !important;
    padding-bottom: 0px !important;
}

.work-card-newsletter {
    padding: 1.3rem 1.8rem;
}

.iris-field-home input {
    background-color: #e6e2ce;
    color: #2f2f2f;
}

.iris-field-home input::placeholder {
    color: #2f2f2f;
}

.iris-signup-form-home .gform_footer input:hover {
    background-color: #a3b0a5;
}

div#gform_confirmation_message_9 {
    font-size: 16px !important;
    text-transform: initial !important;
    color: #2f2f2f !important;
    font-family: 'Barlow Condensed';
}


@media (max-width: 767px) {

.work-grid {
  display: initial !important;
  height: initial !important;
}

.selected-work {
  height: initial !important;
}
}


/* --- CARD BASE --- */
.work-card {
  padding: 2rem 1.8rem;
  min-height: 200px;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* Smooth animation */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

/* --- HOVER (replaces hvr-grow) --- */
.work-card:hover {
  transform: translateY(-6px);
}

/* --- OVERLAY (adds depth) --- */
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
 
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-card-body {
  transition: transform 0.35s ease;
}

.work-card:hover .work-card-body {
  transform: translateY(-6px);
}

.work-card:hover::after {
  opacity: 1;
}

/* --- CONTENT --- */
.work-card-body {
  position: relative;
  z-index: 2;
}

/* Animate all text elements smoothly */
.work-card-body > * {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Slight lift for tag + title */
.work-card:hover .work-tag,
.work-card:hover .work-title {
  transform: translateY(-10px);
}

/* --- DESCRIPTION (NO LAYOUT SHIFT) --- */
.work-desc {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;

  max-height: 0;
  overflow: hidden;
}

/* Reveal */
.work-card:hover .work-desc {
  opacity: 1;
  transform: translateY(0);

  max-height: 80px; /* adjust if needed */
}

/* --- OPTIONAL BACKGROUND SHIFT --- */
.work-card:hover {
  background-color: #2f2f2f;
}

/* --- REMOVE HOVER TO AN WORK CARD --- */
.no-hover {
  pointer-events: auto;
}

.no-hover:hover {
  transform: none;
  box-shadow: none;
}

.no-hover:hover .work-desc {
  opacity: 0;
  transform: none;
  max-height: 0;
}


/* --- GRID PLACEMENT --- */
.work-card:nth-child(1) { grid-column: 1/3; grid-row: 1 / 3; min-height: 280px; }
.work-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.work-card:nth-child(3) { grid-column: 3 / 4; grid-row: 2; }
.work-card:nth-child(4) { grid-column: 4 / 5; grid-row: 2; }
.work-card:nth-child(5) { grid-column: 1 / 4; grid-row: 3; min-height: 160px; }
.work-card:nth-child(6) { grid-column: 4 / 5; grid-row: 3; }

/* --- CARD COLORS --- */
.work-card--dark { background-color: #414042; }
.work-card--orange { background-color: #c9781d;}
.work-card--mid-dark { background-color: #414042; }
.work-card--black { background-color: #282828; }
.work-card--khaki { background-color: #b2ac88; }

/* --- TAG --- */
.work-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.work-card--dark .work-tag,
.work-card--mid-dark .work-tag,
.work-card--black .work-tag { color: #c9781d; }
.work-card--orange .work-tag { color: rgba(255,255,255,0.7); }
.work-card--khaki .work-tag { color: #2f2f2f; }

/* --- TITLE --- */
.work-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.work-card--dark .work-title,
.work-card--mid-dark .work-title,
.work-card--black .work-title { color: #fff; }
.work-card--orange .work-title { color: #fff; }
.work-card--khaki .work-title { color: var(--t3e-dark); }

/* --- DESCRIPTION TEXT --- */
.work-desc {
  font-family: var(--font-display);
  font-size: 14px;
  color: #998e7d;
  margin: 0;
  line-height: 1.5;
}

.work-card--khaki .work-desc { color: rgba(0,0,0,0.45); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-card:nth-child(1) { grid-column: 1 / 3; }
  .work-card:nth-child(2) { grid-column: 1 / 3; }
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5),
  .work-card:nth-child(6) {
    grid-column: auto;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.t3e-footer {
  background-color: #998e7d;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-t3elogo {
    max-width: 120px;
}

.footer-woman-ownedlogo {
    max-width: 85px;
}

.footer-womens {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--t3e-dark);
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  color: #363537;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 25px;
  margin-bottom: 0px;
}

.footer-copy {
  font-family: var(--font-display);
  font-size: 13.5px;
  color: #363537;
  text-transform: uppercase;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-display);
  font-size: 16px;
  color: #363537;
  text-transform: uppercase;
}

.footer-nav a:hover { color: #bfbfbf; }

.social-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.social-links a {
  color: var(--t3e-dark);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.social-links a:hover { opacity: 1; color: #bfbfbf; }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 1.5rem; }

.footer-legal a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: #363537;
  text-transform: uppercase;
}

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

/* ============================================
   ABOUT — HERO
   ============================================ */
.about-hero {
  background-color: var(--t3e-dark);
  padding-top: calc(var(--t3e-nav-height) + 6rem);
  padding-bottom: 8rem;
  display: flex;
  align-items: center;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 128px);
  font-weight: 300;
  color: #998e7d;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  margin: 0;
}

/* ============================================
   ABOUT — OUR STORY + MULTICULTURAL
   ============================================ */
.our-story-section {
  background-color: #b6c0b8;
  height: calc(100vh - 90px);
}

.section-subheading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #363537;
}

.body-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: #363537;
  line-height: 1.75;
}

.we-understand {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.multicultural-block {
  text-align: left;
}

.multicultural-headline {
  line-height: 0.92;
}

.mc-line {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Simulates the photo-filled text effect from the Figma design */
  background: linear-gradient(
    105deg,
    var(--t3e-orange) 0%,
    #c45a2a 15%,
    var(--t3e-dark) 30%,
    #5a4a38 45%,
    var(--t3e-orange) 60%,
    #2a2a2a 75%,
    var(--t3e-orange) 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

@media (max-width: 767px) {
  .our-story-section {
      height: initial !important;
  }
}

/* ============================================
   ABOUT — OUR VALUES
   ============================================ */
.our-values-section {
  background-color: #e9e9ed;
}

.value-card {
  background-color: #bfb5a9;
  padding: 2rem 1.5rem;
  text-align: left;
  height: 100%;

  transition: background-color 0.3s ease-in-out;
}

.value-card:hover {
    background-color: #a3b0a5;
}

.value-icon {
  margin-bottom: 1.2rem;
  text-align: center;
}

.values-icon-img {
    max-width: 85px !important;
}

.value-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: #363537;
  text-align: center;
}

.value-desc {
  font-family: var(--font-display);
  font-size: 16px;
  color: #363537;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

/* ============================================
   ABOUT — INDEPENDENT BY DESIGN
   ============================================ */
.independent-section {
  background-color: #f5f5f5;
}

.compare-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #363537;
}

.independent-card {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
  background: #ece8e0;
}

.indie-image-placeholder {
  width: 80%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #d4cfc5, #c4bfb0);
  border-radius: 2px;
}

.hummingbird-img {
    float: right;
}

.indie-watermark {
  font-size: 64px;
  opacity: 0.4;
}

.indie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.indie-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.06);
  padding: 4px 10px;
  color: var(--t3e-dark);
}

.indie-tag.orange {
  color: var(--t3e-orange);
  background: rgba(224,123,42,0.1);
}

/* ============================================
   ABOUT — LEADERSHIP
   ============================================ */
.leadership-section {
  background-color: var(--t3e-dark);
  border-bottom: 0.5px solid #434343;
}

.leadership-section .section-label {
  color: rgba(255,255,255,0.45);
}

.leader-card {
  background-color: #414042;
  overflow: hidden;
  padding: 30px;
}

.leader-photo-wrap {
  width: 100%;
  height: auto;
}

.leader-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a4540, #2a2520);
}

.leader-info {
  padding-top: 25px;
}

.leader-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #998e7d;
  margin-bottom: 0.2rem;
}

.leader-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  margin-top: 5px;
}

.leader-bio {
  font-family: var(--font-display);
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ABOUT — SERVICES
   ============================================ */
.services-section {
  background-color: var(--t3e-dark);
}

.service-card {
  background-color: #414042;
  padding: 30px;
  min-height: 245px;
}

.service-icon {
  margin: 0 auto 20px;
  width: 110px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #f5f5f5;
  line-height: 1.45rem;
  margin: 0;
}

/* ============================================
   ABOUT — 3RD EYE ACCESS
   ============================================ */
.access-section {
  background-color: var(--t3e-bg-light);
}

.access-inner {
  padding: 4rem;
  background: #ffffff;
}

.access-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 65%;
  padding-bottom: 12px;
}

.access-logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t3e-dark);
}

.access-model-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--t3e-text-muted);
  margin: 0 0 1rem;
}

.access-desc {
  font-family: var(--font-display);
  font-size: 16px;
  color: #363537;
  line-height: 1.3rem;
}

.access-list {
  list-style: none;
  background-color: #f5f5f5;
  border-left: 4px solid #998e7d;
  padding: 25px;
  margin: 0;
}

.access-list li {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: #363537;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.access-list li:last-child {
  margin-bottom: 0px;
}

.access-bullet {
  color: #998e7d;
  font-size: 16px;
  flex-shrink: 0;
}

.access-bullet svg {
  width: 27px;
  height: 27px;
}

.access-footer-note {
  font-family: var(--font-display);
  font-size: 16px;
  color: #363537;
  line-height: 1.3rem;
}

.form-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: #998e7d;
  margin: 0;
}

.t3e-input {
  background-color: #f5f5f5 !important;
  border-radius: 0 !important;
  border: 1px solid #cecece !important;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--t3e-dark) !important;
  padding: 0.75rem 0.5rem !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
  font-weight: 500;
}

.t3e-input:focus {
  border-bottom-color: var(--t3e-orange) !important;
  background-color: #ddd8cf !important;
}

.t3e-input::placeholder { color: rgba(40,30,15,0.4) !important; }

.t3e-submit-btn {
  background-color: #998e7d;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.85rem;
  border: none;
  transition: background-color 0.2s;
  letter-spacing: 0.02rem;
}

.t3e-submit-btn:hover {
  background-color: var(--t3e-orange-light);
  color: #fff;
}

.thirty-year-field input, .thirty-year-field textarea {
    background-color: #f5f5f5 !important;
    border-radius: 0 !important;
    border: 1px solid #cecece !important;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    color: #2f2f2f;
    padding: 0.75rem 0.5rem !important;
    box-shadow: none !important;
    transition: border-color 0.2s;
    font-weight: 500;
}

.gform_footer input {
    background-color: #998e7d;
    color: #fff;
    font-family: 'Barlow Condensed';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.85rem;
    border: none;
    transition: background-color 0.2s;
    letter-spacing: 0.02rem;
    width: 100%;
}

.gform_footer input:hover {
    background-color: #a3b0a5;
}

@media (max-width: 767px) {
.access-logo {
    width: 100%;
}
}


/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero */
.contact-hero {
  background-color: var(--t3e-dark);
  padding-top: calc(var(--t3e-nav-height) + 4rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.0;
  margin: 0 0 1rem;
}

.contact-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 24px);
  font-weight: 400;
  letter-spacing: 0.02rem;
  color: #998e7d;
  text-transform: uppercase;
  margin: 0;
}

/* Contact body */
.contact-body {
  background-color: #f5f5f5;
}

.contact-info-heading {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
    color: #998e7d;
    margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 2rem;
}

.smaller {
    font-size: 18px;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item-icon {
  color: var(--t3e-text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-icon--orange {
  color: #998e7d;
}

.contact-item-label {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
    color: var(--t3e-dark);
    margin: 0 0 4px;
}

.contact-item-label--orange {
  color: #998e7d;
}

.contact-item-value {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--t3e-dark);
    line-height: 1.5rem;
    margin: 0;
    text-decoration: none;
}

.contact-item-value:hover {
  color: var(--t3e-orange);
}

.contact-item-desc {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--t3e-dark);
    line-height: 1.5rem;
    margin: 0;
}

.contact-item-desc a {
  text-decoration: none;
  color: inherit !important;
}

.contact-link-inline:hover {
  color: var(--t3e-orange);
}

/* Contact form inputs — lighter/bordered style matching Figma */
.thirty-year-contact_wrapper .thirty-year-field input, .thirty-year-contact_wrapper .thirty-year-field textarea {
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    border-radius: 0 !important;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--t3e-dark) !important;
    padding: 0.75rem 0.85rem !important;
    box-shadow: none !important;
    transition: border-color 0.2s;
}

.thirty-year-contact_wrapper label {
    font-family: var(--font-display);
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #2f2f2f;
    display: block;
    margin-bottom: 6px;
}

.t3e-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #2f2f2f;
    display: block;
    margin-bottom: 6px;
}

.required {
  color: #2f2f2f;
}

.t3e-input-contact {
  background-color: #fff !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
  border-radius: 0 !important;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--t3e-dark) !important;
  padding: 0.75rem 0.85rem !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
}

.t3e-input-contact:focus {
  border-color: var(--t3e-orange) !important;
  box-shadow: 0 0 0 3px rgba(224,123,42,0.08) !important;
}

.t3e-input-contact::placeholder {
  color: rgba(40,30,15,0.3) !important;
}

.t3e-contact-submit {
  background-color: #998e7d;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.9rem;
  border: none;
  transition: background-color 0.2s;
}

.t3e-contact-submit:hover {
  background-color: #a3b0a5;
  color: #fff;
}

/* IRIS Newsletter */
.iris-field input {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    font-family: 'Barlow Condensed';
    font-size: 13px;
    color: #fff !important;
    padding: 0.85rem 1rem !important;
    box-shadow: none !important;
    transition: border-color 0.2s;
    max-width: 400px !important;
    margin: 0 auto;
    display: block;
}

.iris-form .gform_button {
    background-color: #998e7d;
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.85rem;
    border: none;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transition: background-color 0.2s;
}


.iris-section {
    background-color: var(--t3e-dark);
}

.iris-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    color: #998e7d;
    margin-bottom: 1rem;
}

.iris-desc {
    font-family: var(--font-display);
    font-size: 18px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.03rem;
}

.iris-freq {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    color: #998e7d;
    margin: 0;
}

.t3e-iris-input {
  background-color: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important;
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff !important;
  padding: 0.85rem 1rem !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.t3e-iris-input:focus {
  border-color: var(--t3e-orange) !important;
  box-shadow: none !important;
}

.t3e-iris-input::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

.t3e-iris-btn {
    background-color: #998e7d;
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0.85rem;
    border: none;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transition: background-color 0.2s;
}

.t3e-iris-btn:hover {
  background-color: #a3b0a5;
  color: #fff;
}


@media (max-width: 767px) {
.contact-hero-headline {
    font-size: 48px;
}

p.contact-hero-sub {
    font-size: 20px;
    line-height: 1.3;
}
}



/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .collage-container { width: 100%; }
  .multicultural-block { text-align: left; }
  .footer-nav { justify-content: flex-start; }
  .social-links { justify-content: flex-start; }
  .col-lg-4.offset-lg-4 { text-align: left !important; }
}

@media (max-width: 576px) {
  .hero-headline { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-line { display: none; }
  .about-hero-headline { font-size: clamp(28px, 9vw, 48px); }
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
