@font-face{
  font-family: "Open Sauce Sans";
  src: url("./fonts/OpenSauceSans-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Open Sauce Sans";
  src: url("./fonts/OpenSauceSans-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Open Sauce Sans";
  src: url("./fonts/OpenSauceSans-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
:root{
  --brand-brown:#a84309;  
  --text:#ffffff;
  --muted:#f3e7de;
  --card-stroke:#f1d7c6;
}

/* Page canvas */
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#222;
  background:#fff;
}
.page{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* ----- HERO (top photo with overlaid logo) ----- */
.hero{
  position: relative;
  width: 100%;
  height: 767px;
  background-image: url(./img/Source-1-Direct-banner.jpg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero .logo-wrap{
  position:absolute;
  left:50%;
  top:45%;
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 18px;
  background:rgba(255,255,255,0.0); /* transparent like in the artwork */
}
.hero .logo-wrap .logo-img{
  max-width: 600px;
}
.hero .logo-text{
  font-family:Poppins, Inter, sans-serif;
  font-weight:700;
  letter-spacing:2px;
  font-size:58px;
  color:#2e73b8; /* SOURCE */
  display:flex;
  align-items:center;
  gap:14px;
  mix-blend-mode:normal;
}
.hero .logo-text .left{ color:#2e73b8; }
.hero .logo-text .disc{
  display:inline-grid;
  place-items:center;
  width:82px; height:82px;
  background:#f2a42b;
  border-radius:50%;
  box-shadow:0 0 0 8px rgba(255,255,255,0.28) inset;
  font-size:48px;
  color:#124c8c;
  line-height:1;
}
.hero .logo-text .right{
  color:#7fb3db;
}

/* ----- BROWN BAND content ----- */
.band{
  background:var(--brand-brown);
  color:var(--text);
}
.container{
  width: 100%;
  margin: 0 auto;
  max-width: 950px;
}

/* headline + left image and right paragraph */
.intro{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.intro .headline h2{
  font-size:30px;
  line-height:1.15;
  font-weight: 700;
  letter-spacing:0.2px;
  max-width:620px;
  margin: 0;
}
/* REPLACEMENT: grid → flex */
.intro .content-grid{
  display: flex;
  gap: 38px;
  align-items: center;
}

.intro .content-grid .left-photo{
  flex: 0 0 40%;
  width: 100%;
  max-width: 40%;
  height: 232px;
  background: url('./img/product-image.png') center/cover no-repeat; 
  object-fit: cover;
}
.intro .content-grid .right-copy{
  flex: 1 1 33%;
  max-width: 33%;
}
.intro .content-grid .right-copy p{
  font-size: 20px;
  line-height: 1.45;
  color: #ffe9d9;, 
}

/* responsive stacking */
@media (max-width: 960px){
  .intro .content-grid{ flex-direction: column; }
  .intro .content-grid .left-photo{
    width: 100%;
    flex-basis: auto;
  }
}

.cards{
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 80px;
}

/* Har card: 3 columns on desktop */
.card{
  box-sizing: border-box;
  flex: 1 1 calc((100% - 36px) / 3); /* 3 cols, 2 gaps × 18px */
  border: 2px solid var(--card-stroke);
  background: rgba(255,255,255,0.02);
}
.card .heading-wrap {
  border-bottom: 1px solid #fff;
  padding: 15px;
}
.card .content-wrap {
  padding: 15px;
}

/* Typography same rahe */
.card h4{
  font-size: 20px;
  margin: 0;
  letter-spacing: 0.4px;
  color: #fff;
  text-transform: capitalize;
}
.card p{
  margin: 0 0 6px;
  color: #ffe9d9;
  font-size: 13px;
  line-height: 1.35;
}

/* Responsive: 2 columns */
@media (max-width: 1000px){
  .card{ flex-basis: calc((100% - 18px) / 2); }
}

/* Responsive: 1 column */
@media (max-width: 640px){
  .card{ flex-basis: 100%; }
}

/* Brand row (logo mark + name) */
.brand-row{
  display:flex;
  align-items:center;
  gap:18px;
  margin:58px 0 4px;
}
.mark{
  display:grid;
  grid-template-columns:repeat(2,18px);
  grid-auto-rows:18px;
  gap:6px;
  transform:rotate(45deg);
}
.mark div{
  background:#fff;
}
.brand-name{
  font-family:Poppins, Inter, sans-serif;
  font-size:40px;
  font-weight:600;
  letter-spacing:0.4px;
  color:#fff;
}

.contact-row{
  margin-top: 8px;
  display: flex;              
  gap: 40px;
  align-items: flex-start;
}

.contact-row .contact img{
  margin-bottom: 70px;
}

.contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1.2 1 0; 
  min-width: 280px;
}

.gallery{
  position: relative;         
  min-height: 320px;
  flex: 1 1 0;
  min-width: 260px;
}

.contact h3{
  font-size: 28px;
  margin: 0 0 6px;
  color: #fff;
  text-transform: capitalize;
}

.contact p{
  margin: 0;
  color: #ffe9d9;
  font-size: 15px;
  line-height: 1.45;
}
.contact .phone-email{ margin-top: 14px; }

/* responsive: stack on mobile */
@media (max-width: 960px){
  .contact-row{ flex-direction: column; }
  .contact, .gallery{ flex: 1 1 100%; min-width: 0; }
}


/* Footer social */
.footer{
  margin-top: 50px;
  border-top: 2px solid #f6d9c2;
  border-bottom: 2px solid #f6d9c2;
  padding-top: 25px;
  padding-bottom: 25px;
}
.social{
  display:flex;
  align-items:center;
  gap:18px;
  color:#fff;
}
.social .title h3{
  font-size: 28px;
  margin: 0;
}
.circle{
  width:36px; height:36px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  color:var(--brand-brown);
  font-weight:700;
  font-family:Poppins, Inter, sans-serif;
}
.circle span{ transform:translateY(-1px); }
.rule{
  margin-top:12px;
  height:2px;
  background:#f6d9c2;
  width:100%;
}

.circle{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.circle img{
  width: 30px;
  height: 30px;
  display: block;
}

.circle:hover {
  opacity: 0.8;
}

.circle:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35);
}


@media only screen and (max-width: 1320px) {
  .contact-row .gallery img{
    width: 120%;
  }
}
@media only screen and (max-width: 1120px) {
  .contact-row .gallery img{
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .intro .content-grid {
    flex-direction: column;
  }
  .intro .content-grid .left-photo {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .intro .content-grid .right-copy {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .intro {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

/* Responsive tweaks */
@media (max-width: 960px){
  .intro .content-grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .contact-row{ grid-template-columns:1fr; }
  .brand-name{ font-size:32px; }
  .hero{ height:420px; }
  .hero .logo-text{ font-size:40px; }
  .hero .logo-text .disc{ width:58px; height:58px; font-size:34px; }
}



