@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');

: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: var(--ivory);
  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: var(--ivory); 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;
}


/*********************  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;
  }








  :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);
  }  