@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap');

body {
    font-family: "Philosopher", serif;
}

:root{
  --ink:            #0b0b0a;
  --ivory:          #f6f3ec;
  --gold:           #c9a463;
  --gold-dim:       rgba(201,164,99,0.45);
  --overlay-top:    rgba(6,6,5,0.55);
  --overlay-bottom: rgba(6,6,5,0.15);
  --line:           rgba(246,243,236,0.22);
  --line-soft:      rgba(246,243,236,0.12);

  
  --font-body:    'Inter',  sans-serif;

  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a{ color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/*********************  HEADER & BANNER ************************/

/* HEADER */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: var(--header-height);
  display:flex; align-items:center;
  background: transparent;
  transition: background 0.5s var(--ease), height 0.4s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  height:96px;
  background: #FDFCFB;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header.is-scrolled .site-header__link{
  color: #141414;
}

.site-header__inner{
  width:100%; max-width:1440px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; justify-content:space-between;
}
.site-header__logo {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.site-header__logo img {
    height: 92px;
    width: 150px;
    display: block;
}

.site-header__list{ list-style:none; display:flex; align-items:center; gap:20px; margin:0; padding:0; }
.site-header__item{ position:relative; }
.site-header__link{
  display:inline-flex; align-items:center; gap:6px;
  font-family: var(--font-body); font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color: #fff;
  padding:6px 0; position:relative;
}
.site-header__link::after{
  content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.site-header__link:hover::after, .site-header__item--dropdown:hover .site-header__link::after{ width:100%; }
.site-header__link--outline{
  border:1px solid var(--line); padding:9px 20px; border-radius:2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header__link--outline::after{ display:none; }
.site-header__link--outline:hover{ border-color: var(--gold); background: rgba(201,164,99,0.08); }
.site-header__chevron{ transition: transform 0.3s var(--ease); opacity:0.8; }
.site-header__item--dropdown:hover .site-header__chevron{ transform: rotate(180deg); }

.site-header__dropdown{
  list-style:none; margin:0; padding:10px 0;
  position:absolute; top: calc(100% + 18px); left:50%;
  transform: translate(-50%, 8px);
  min-width:210px;
  background: rgba(11,11,10,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border:1px solid var(--line-soft); border-radius:3px;
  opacity:0; visibility:hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.site-header__item--dropdown:hover .site-header__dropdown,
.site-header__item--dropdown.is-open .site-header__dropdown{
  opacity:1; visibility:visible; transform: translate(-50%, 0);
}
.site-header__dropdown-link{
  display:block; padding:12px 22px; font-size:12px; letter-spacing:0.1em;
  text-transform:uppercase; color: #fff; opacity:0.85;
  transition: opacity 0.25s var(--ease), padding-left 0.25s var(--ease);
  white-space: nowrap;
}
.site-header__dropdown-link:hover{ opacity:1; padding-left:28px; color: var(--gold); }

.site-header__toggle{
  display:none; width:26px; height:18px; flex-direction:column;
  justify-content:space-between; z-index:110;
}
.site-header__toggle span{
  display:block; height:1px; width:100%; background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8.5px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8.5px) rotate(-45deg); }

/* BANNER (single static image, fixed 600px height) */
.site-banner{ position:relative; width:100%; height:650px; overflow:hidden; background: var(--ink); }
.site-banner__image{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
}
.site-banner__overlay{
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:
    linear-gradient(to right, transparent 0%, transparent 50%, rgba(6,6,5,0.55) 100%),
    linear-gradient(to bottom, var(--overlay-top) 0%, transparent 22%, transparent 78%, rgba(6,6,5,0.35) 100%);
}
.site-banner__heading{
  position:absolute;
  top:50%; left:70%;
  transform: translate(-50%, -50%);
  z-index:4;
  margin:0;
  font-family: 'Philosopher', serif;
  font-weight:500;
  font-size:clamp(32px, 5vw, 64px);
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: 
#FCC222;
  text-align:center;
  white-space:nowrap;
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/*********************  ABOUT STYLES ************************/


.team-endee {
    background: #ffffff;
   padding: 80px 100px 60px;
    
    overflow: hidden;
  }
 
  .te-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: clamp(40px, 5vw, 86px);
  }
 
  /* ---------- Media (left) ---------- */
 .te-media {
  position: relative;
  width: 40%;
  flex-shrink: 0;
  overflow: visible;
  margin-left: 25px;
}

.te-media__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: 0 24px 60px -20px rgba(26, 31, 38, 0.0);
}

.te-media__badge {
  position: absolute;
  bottom: 15px;
  right: -25px;
  background: #F1DC5F;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 22px;
  box-shadow: 0 12px 30px -8px rgba(26, 31, 38, 0.25);
  z-index: 2;
}

.te-media__badge-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #1a1f26;
  white-space: nowrap;
}
  
 
  /* ---------- Content (right) ---------- */
  .te-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(8px, 2vw, 24px) 0;
  }
 
  .te-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
 
  .te-eyebrow__line {
    width: 36px;
    height: 1px;
    background: #a97e3d;
  }
 
  .te-eyebrow__text {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #a97e3d;
   
  }
 
  .te-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(32px, 3.2vw, 42px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: #1a1f26;
    margin: 0 0 18px;
    text-transform: uppercase;
  }
 
  .te-title__accent {
    font-style: italic;
    font-weight: 380;
    color: #a97e3d;
  }
 
  .te-divider {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #a97e3d, transparent);
    margin-bottom: 28px;
  }
 
  .te-para {
    font-size: 16.5px;
    line-height: 1.85;
    color: #565c66;
    margin: 0 0 20px;
    max-width: 58ch;
    text-align: justify;
    font-family: 'Inter',  sans-serif;
    font-weight: 400;
  }
 
  .te-para:last-child {
    margin-bottom: 0;
  }
  
  .te-btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 34px;
  background:  transparent;
  border: 1px solid #F1DC5F;
  color: #141414;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.te-btn:hover {
  background: #F1DC5F;
  color: #141414;
}
 
  /* ---------- Scroll reveal ---------- */
  .team-endee .te-media,
  .team-endee .te-content > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
 
  .team-endee.te-in-view .te-media,
  .team-endee.te-in-view .te-content > * {
    opacity: 1;
    transform: translateY(0);
  }
 
  .team-endee.te-in-view .te-content > *:nth-child(1) { transition-delay: 0.05s; }
  .team-endee.te-in-view .te-content > *:nth-child(2) { transition-delay: 0.15s; }
  .team-endee.te-in-view .te-content > *:nth-child(3) { transition-delay: 0.25s; }
  .team-endee.te-in-view .te-content > *:nth-child(4) { transition-delay: 0.32s; }
  .team-endee.te-in-view .te-content > *:nth-child(5) { transition-delay: 0.4s; }
 
  @media (prefers-reduced-motion: reduce) {
    .team-endee .te-media,
    .team-endee .te-content > * {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }


/* ---------- EXCEPTIONAL STYLES ---------- */

 .cr-section {
    width: 100%;
    margin-bottom: 20px;
    margin-top: -30px;
    background: #FFFFFF;
  }
 
  .cr-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
 
  .cr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #A9762F;
    margin-bottom: 1.2rem;
  }
 
  .cr-eyebrow::before,
  .cr-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(169, 118, 47, 0.5);
  }
 
  .cr-heading {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.15;
    color: #1B2A2E;
    margin: 0 0 1rem;
    text-transform: uppercase;
  }
 
  .cr-description {
    font-size: 16px;
    line-height: 1.6;
    color: #565c66;
    max-width: 120ch;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
 
  /* ===== COLLAGE GRID — now fills the viewport height ===== */
  .cr-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 5px;
    height: 100vh;
  }
 
  .cr-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
  }
 
  /* Individually named heights — one class per image/box so each can be tuned on its own. */
  .cr-img-exclusive-designs    { height: 320px; flex: 0 0 auto; }
  .cr-box-top-quality-c1       { height: 90px;  flex: 0 0 auto; }
  .cr-img-top-quality          { height: 320px; flex: 0 0 auto; }
 
  .cr-box-on-time              { height: 100px;  flex: 0 0 auto; }
  .cr-img-on-time              { height: 530px; flex: 0 0 auto; margin-left: auto  }
  .cr-box-top-quality-c2       { height: 100px;  flex: 0 0 auto; }
 
  .cr-img-customer-relationship{ height: 300px; flex: 0 0 auto; }
  .cr-box-transparency         { height: 90px;  flex: 0 0 auto; }
  .cr-img-transparency         { height: 340px; flex: 0 0 auto; }
  .cr-box-exclusive-designs    { height: 90px;  flex: 0 0 auto; }
 
  .cr-box-customer-relationship{ height: 100px;  flex: 0 0 auto; }
  .cr-img-cost-conscious       { height: 530px; flex: 0 0 auto; }
  .cr-box-cost-conscious       { height: 100px;  flex: 0 0 auto; }
 
  .cr-image-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1px;
    border: 1px solid rgba(27, 42, 46, 0.12);
  }
 
  .cr-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
 
  .cr-image-frame:hover .cr-item-img {
    transform: scale(1.05);
  }
 
  /* overlay title removed from inside images — kept as a title box style instead */
  .cr-title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.5rem 1.2rem;
    background: #ECECEC;
    border-radius: 1px;
    border: 1px solid rgba(27, 42, 46, 0.12);
  }
 
  .cr-box-title {
    display: inline-block;
    margin: 0;
    padding-bottom: 8px;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    color: #1B2A2E;
    border-bottom: 2px solid #A9762F;
    text-align: center;
  }
 
  .cr-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 2rem 3rem;
    margin-top: 30px;
  }
 
  .cr-cta-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #A9762F;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #A9762F;
    transition: background 0.3s ease, color 0.3s ease;
  }
 
  .cr-cta-btn:hover {
    background: transparent;
    color: #A9762F;
  }


 .wme-m-section {
    display: none;
  }





  :root{
    --bg: #f3efe6;
    --text-dark: #1f1f1f;
    --accent: #F1DC5F;
    --accent-soft: #F1DC5F;
    --muted: #5a5a5a;
    --line: #ddd6c9;
  }
 
  .site-footer{
    background: #FBFAF8;
    padding: 40px 60px 0 60px;
    color: var(--text-dark);
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
 
  /* ---- Top bar: logo left, social icons right ---- */
  .footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    padding-bottom: 5px;
  }
 
  .footer-logo img{
    height: 90px;
    display:block;
  }
 
  .footer-social{
    display:flex;
    gap:14px;
  }
 
  .footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition: transform .2s ease, opacity .2s ease;
  }
 
  .footer-social a svg{
    display:block;
  }
 
  .footer-social a:hover{
    transform: translateY(-3px);
    opacity:.9;
  }
 
  .social-facebook{ background:#1877f2; }
  .social-instagram{ background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
 .social-youtube{
    background: #FF0000;
    color: #fff;
}
  hr.footer-divider{
    border:none;
    border-top:1px solid var(--line);
    margin:0;
  }
 
  /* ---- Columns ---- */
  .footer-columns{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    align-items: start;
  }
 
  .footer-col h3{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
  }
 
  .heading-underline{
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 8px 0 20px 0;
    border:none;
  }
 
  .footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
  }
 
  .footer-col ul li{
    margin-bottom: 14px;
  }
 
  .footer-col ul li a{
    color: var(--text-dark);
    text-decoration:none;
    font-size:15px;
    transition: color .2s ease;
    font-family: 'Inter', sans-serif;
  }
 
  .footer-col ul li a:hover{
    color: var(--accent);
  }
 
  /* Address column special layout */
  .contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:16px;
    font-size:15px;
    line-height:1.5;
    font-family: 'Inter', sans-serif;
  }
 
  .contact-item .icon{
    color: var(--accent-soft);
    font-size:16px;
    margin-top:2px;
    flex-shrink:0;
  }
 
  .contact-item a{
    color: var(--text-dark);
    text-decoration:none;
  }
 
  .contact-item a:hover{
    color: var(--accent);
  }
 
  /* ---- Bottom bar ---- */
  .footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size:14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
  }
 
  .footer-bottom a{
    color: var(--muted);
    text-decoration:none;
  }
 
  .footer-bottom a:hover{
    color: var(--accent);
  }  
  
  



/*********************  RESPONSIVE STYLES ************************/  



  
  /* ---------- 1024px — tablet / small desktop ---------- */
@media (max-width: 1024px) {
  .site-header__inner{ padding: 0 24px; }
  .site-header__list{ gap: 14px; }
  .site-header__link{ font-size: 11px; }
  .site-header__link--outline{ padding: 8px 16px; }
  .site-header__logo img{ height: 72px; width: 118px; }
}
 
/* ---------- 900px — nav collapses into off-canvas menu ---------- */
@media (max-width: 768px) {
  .site-header__toggle{ display: flex; }

  .site-header__list{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 360px);
    margin: 0;
    background: #FBFAF8;                 /* light background */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 110px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 105;
    box-shadow: -24px 0 48px rgba(0,0,0,0.15);
    overflow-x: hidden;                  /* stop children bleeding out */
  }
  .site-header__list.is-open{ transform: translateX(0); }

  .site-header__item{ width: 100%; }

  /* text color for the new light panel */
  .site-header.is-scrolled .site-header__link,
  .site-header__link{ color: #111 !important; }   /* dark text on light bg */

  .site-header__link{ font-size: 13px; padding: 4px 0; }
  .site-header__link--outline{
    width: 100%; justify-content: center; margin-top: 12px;
  }

  /* toggle button pinned to top-right of the panel */
  .site-header__toggle{
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 110;
  }

  /* dropdown: flush left, no bleed */
 /* dropdown: flush left, no bleed */
.site-header__dropdown{
  position: static !important;   /* force override any absolute/centered positioning from base styles */
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  opacity: 1; visibility: visible;
  max-height: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  min-width: 100%;
  margin: 8px 0 0 0;              /* no left margin/offset */
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border: none; box-shadow: none;
  padding: 0;
  text-align: left;
  transition: max-height 0.35s var(--ease);
}
  .site-header__item--dropdown.is-open .site-header__dropdown{
    max-height: 400px;
  }
  .site-header__dropdown-link{
    padding: 10px 0;
    color: #111;
    display: block;
  }
  .site-header__dropdown-link:hover{ padding-left: 8px; }

  .site-header__chevron{
    margin-left: auto;
    color: #111;
  }
  .site-header__item--dropdown.is-open .site-header__chevron{
    transform: rotate(180deg);
  }
}
 
/* ---------- 600px — phones ---------- */
@media (max-width: 600px) {
  :root{ --header-height: 72px; }
 
  .site-header.is-scrolled{ height: 76px; }
  .site-header__inner{ padding: 0 20px; }
  .site-header__logo img{ height: 56px; width: 92px; }
}
 
/* ---------- 380px — small phones ---------- */
@media (max-width: 380px) {
  .site-header__inner{ padding: 0 16px; }
  .site-header__logo img{ height: 48px; width: 78px; }
  .site-header__list{ width: 88vw; padding: 100px 24px 32px; }
  
  
  @media (max-width: 768px) {

  /* Normal mobile → WHITE */
  .site-header__toggle span {
    background-color: #fff !important;
  }

  /* Mobile scrolled → BLACK */
  .site-header.is-scrolled .site-header__toggle span {
    background-color: #111 !important;
  }

  /* Mobile menu open → BLACK close icon */
  .site-header__toggle[aria-expanded="true"] span {
    background-color: #111 !important;
  }

}
  
  
  
  
   /* ---------- BANNER RESPONSIVE ---------- */
@media (max-width: 768px) {

    /* Hide desktop image */
    .site-banner__image {
        display: none;
    }

    /* Use mobile background */
    .site-banner {
        height: 600px;
       background-image: url("../images/about-mobile -banner.png");
        background-size: cover;
        background-position: left center; /* Adjust as needed */
    }

    .site-banner__heading {
        left: 50%;
        width: 90%;
    }
}


/*********************  ABOUT RESPONSIVE  ************************/  


/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  .team-endee {
    padding: 60px 60px 50px;
  }

  .te-inner {
    gap: clamp(32px, 4vw, 60px);
  }

  .te-para {
    max-width: 100%;
  }
}

/* ---------- Small tablet / large phone landscape (≤768px) ---------- */
@media (max-width: 768px) {
  .team-endee {
    padding: 50px 32px 40px;
  }

  .te-inner {
    flex-direction: column;
    gap: 40px;
  }

  .te-media {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 4 / 3;
  }

  .te-media__badge {
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
  }

  .te-media__badge-text {
    font-size: 14px;
    text-align: justify;
  }

  .te-content {
    padding: 0;
  }

  .te-para {
    text-align: left;
  }
}

/* ---------- Mobile (≤480px) ---------- */
@media (max-width: 480px) {
  .team-endee {
    padding: 40px 20px 32px;
  }

  .te-inner {
    gap: 28px;
  }

  .te-media {
    aspect-ratio: 4 / 3.4;
  }

  .te-media__badge {
    right: 10px;
    bottom: 10px;
    padding: 10px 16px;
    border-radius: 10px;
  }

  .te-media__badge-text {
    font-size: 12.5px;
  }

  .te-eyebrow {
    gap: 10px;
    margin-bottom: 16px;
  }

  .te-eyebrow__line {
    width: 26px;
  }

  .te-eyebrow__text {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .te-title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .te-divider {
    width: 48px;
    margin-bottom: 20px;
  }

  .te-para {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
  }

  .te-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }
}

/* ---------- Extra small phones (≤360px) ---------- */
@media (max-width: 360px) {
  .team-endee {
    padding: 32px 16px 28px;
  }

  .te-title {
    font-size: clamp(22px, 8vw, 26px);
  }

  .te-para {
    font-size: 14px;
  }

  .te-media__badge {
    padding: 8px 12px;
  }

  .te-media__badge-text {
    font-size: 11px;
  }
}


/*********************  EXCEPTIONAL RESPONSIVE  ************************/  

/* ================= Large tablet / laptop (≤1200px) ================= */
@media (max-width: 1200px) {
  .cr-grid {
    height: 90vh;
    padding: 0 1.5rem 3rem;
  }
}

/* ================= Tablet (≤1024px) ================= */
@media (max-width: 1024px) {
  .cr-intro {
    padding: 3rem 1.5rem 1.5rem;
  }
  .cr-heading {
    font-size: 26px;
  }
  .cr-grid {
    height: 75vh;
    gap: 4px;
  }
  /* scale individual box heights down proportionally (~75%) */
  .cr-img-exclusive-designs     { height: 240px; }
  .cr-box-top-quality-c1        { height: 70px; }
  .cr-img-top-quality           { height: 240px; }
  .cr-box-on-time               { height: 80px; }
  .cr-img-on-time                { height: 400px; }
  .cr-box-top-quality-c2        { height: 80px; }
  .cr-img-customer-relationship { height: 225px; }
  .cr-box-transparency          { height: 70px; }
  .cr-img-transparency          { height: 255px; }
  .cr-box-exclusive-designs     { height: 70px; }
  .cr-box-customer-relationship { height: 80px; }
  .cr-img-cost-conscious        { height: 400px; }
  .cr-box-cost-conscious        { height: 80px; }
}

/* ================= Small tablet (≤860px) ================= */
@media (max-width: 860px) {
  .cr-grid {
    height: auto;
    flex-wrap: wrap;
    gap: 6px;
  }
  .cr-col {
    flex: 1 1 calc(50% - 6px);
    min-width: 260px;
    height: auto;
  }
}


@media (max-width: 600px) {
    
    .cr-section {
    display: none;
  }
 
    .wme-m-section {
      display: block;
      width: 100%;
      margin-top: -15px;
      margin-bottom: 20px;
      background: #FFFFFF;
    }
 
    .wme-m-intro {
      padding: 2.5rem 1.25rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
 
    .wme-m-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #A9762F;
      margin-bottom: 1.2rem;
    }
 
    .wme-m-eyebrow::before,
    .wme-m-eyebrow::after {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: rgba(169, 118, 47, 0.5);
    }
 
    .wme-m-heading {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
      font-size: 22px;
      line-height: 1.15;
      color: #1B2A2E;
      margin: 0 0 1rem;
      text-transform: uppercase;
    }
 
    .wme-m-description {
      font-size: 14px;
      line-height: 1.6;
      color: #565c66;
      margin: 0;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      text-align: justify;
    }
 
    .wme-m-grid {
      display: flex;
      flex-direction: column;
      padding: 0 1.25rem 2rem;
      gap: 10px;
    }
 
    .wme-m-image-frame {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      border-radius: 1px;
      border: 1px solid rgba(27, 42, 46, 0.12);
    }
 
    .wme-m-item-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
 
    .wme-m-image-frame:hover .wme-m-item-img {
      transform: scale(1.05);
    }
 
    .wme-m-title-box {
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
      height: 60px;
      padding: 0.5rem 1.2rem;
      background: #ECECEC;
      border-radius: 1px;
      border: 1px solid rgba(27, 42, 46, 0.12);
    }
 
    .wme-m-box-title {
      display: inline-block;
      margin: 0;
      padding-bottom: 8px;
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 18px;
      color: #1B2A2E;
      border-bottom: 2px solid #A9762F;
      text-align: center;
    }
 
    .wme-m-cta {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 0 1.25rem 2.5rem;
      margin-top: 30px;
    }
 
    .wme-m-cta-btn {
      display: inline-block;
      text-align: center;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #FFFFFF;
      background: #A9762F;
      padding: 12px 28px;
      border-radius: 4px;
      text-decoration: none;
      border: 1px solid #A9762F;
      transition: background 0.3s ease, color 0.3s ease;
      box-sizing: border-box;
    }
 
    .wme-m-cta-btn:hover {
      background: transparent;
      color: #A9762F;
    }
  }


/*********************  FOOTER RESPONSIVE  ************************/ 

/* ================= Tablet (≤1024px) ================= */
@media (max-width: 1024px) {
  .site-footer {
    padding: 36px 40px 0 40px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 30px;
  }
}

/* ================= Small tablet (≤768px) ================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 30px 0 30px;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
    padding: 32px 0;
  }
}

/* ================= Large phones (≤600px) — iPhone Pro Max, most Android ================= */
@media (max-width: 600px) {
  .site-footer {
    padding: 28px 20px 0 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 0;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .heading-underline {
    margin: 6px 0 16px 0;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    font-size: 14.5px;
  }

  .contact-item {
    font-size: 14.5px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
    text-align: left;
  }
}

/* ================= Standard phones (≤430px) — iPhone 14/15/16 Pro Max, most modern Android ================= */
@media (max-width: 430px) {
  .site-footer {
    padding: 24px 18px 0 18px;
  }

  .footer-logo img {
    height: 54px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-columns {
    gap: 26px;
  }

  .footer-col h3 {
    font-size: 17px;
  }
}

/* ================= Standard/compact phones (≤390px) — iPhone 12/13/14/15, Pixel ================= */
@media (max-width: 390px) {
  .site-footer {
    padding: 22px 16px 0 16px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-col ul li a,
  .contact-item {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ================= Small phones (≤375px) — iPhone SE, iPhone 12/13 mini ================= */
@media (max-width: 375px) {
  .site-footer {
    padding: 20px 14px 0 14px;
  }

  .footer-columns {
    gap: 22px;
  }

  .footer-col h3 {
    font-size: 16px;
  }
}

/* ================= Extra small phones (≤360px) — older/smaller Android ================= */
@media (max-width: 360px) {
  .site-footer {
    padding: 18px 12px 0 12px;
  }

  .footer-logo img {
    height: 46px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
  }

  .contact-item .icon {
    font-size: 14px;
  }
}

/* ================= Smallest phones (≤320px) — iPhone SE 1st gen, Galaxy Fold cover screen ================= */
@media (max-width: 320px) {
  .site-footer {
    padding: 16px 10px 0 10px;
  }

  .footer-logo img {
    height: 42px;
  }

  .footer-social {
    gap: 6px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col ul li a,
  .contact-item {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}  
  
  
  
  
