html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #ffffff;
  color: #2d2d2d;
}

/* HEADER */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;              /* give header some breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo{
  height: 70px;                    /* change this to scale logo */
  width: auto;
  display: block;
}

.nav-links a{
  color: #646464;
  text-decoration: none;
  margin-left: 16px;
  font-weight: 600;
}

.nav-links a:hover{
  text-decoration: underline;
}

/* HERO */
.hero{
  height: 100vh;
  width: 100%;
  background-image: url("/assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* IMPORTANT: fixed header is tall, so we push hero content down */
  padding-top: 90px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

.hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  color: #ffffff;
  max-width: 900px;
}

.hero-inner h1{
  font-size: clamp(34px, 6vw, 64px);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 12px;
  font-weight: 750;
}

.hero-inner p{
  margin: 0;
  font-size: clamp(16px, 2.2vw, 22px);
  opacity: 0.92;
}

.scroll-cue{
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  text-decoration: none;
  background: rgba(0,0,0,0.25);
}

/* REACHOUT (match screenshot: big serif in bordered box + button + image right) */
.reachout{
  background: #ffffff;
  padding: 70px 20px;
}

.reachout-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.reachout-box{
  border: 2px solid #ffffff;
  padding: 26px 28px;
}

.reachout-box h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif; /* swap to Playfair later if you want */
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  color: #111111;
}

.reachout-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  margin-left: 40px;

  padding: 14px 26px;
  background: #000000;
  color: #ffffff;

  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reachout-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
}

.reachout-btn:active{
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.reachout-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}



/* Mobile */
@media (max-width: 900px){
  .reachout-inner{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Staggered features section (orange background like your screenshot) */
.features{
  background: #6e1c1d;
  padding: 80px 20px 90px;
}

.features-title{
  margin: 0 0 34px;
  text-align: center;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
}

.features-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 56px;
  align-items: center;
}

.feature-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px; /* screenshot looks squared */
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.feature-text{
  text-align: center;
  color: #ffffff;
  padding: 6px 10px;
}

.feature-text h3{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px);
}

.feature-text p{
  margin: 0;
  line-height: 1.65;
  font-size: 14px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/* Mobile: stack */
@media (max-width: 900px){
  .features-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .feature-text{
    text-align: left;
  }
  .feature-text p{
    max-width: 65ch;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Projects carousel */
.projects{
  background: #ffffff;
  padding: 80px 20px;
}

.projects-head{
  max-width: 1100px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.projects-head h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  color: #111;
}

.projects-controls{
  display: flex;
  gap: 10px;
}

.projects-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
}

.projects-btn:hover{
  background: rgba(255, 255, 255, 0.04);
}

/* The horizontal scroller */
.projects-track{
  max-width: 1100px;
  margin: 10 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 18px;
  background: transparent;   /* important */
  padding: 12px 0;           /* remove side padding that shows “box” */
  margin: 0 auto;
  max-width: 1100px;

  overflow-x: auto;
  padding: 10px 4px 6px;

  scroll-snap-type: x mandatory;
  scroll-padding: 12px;

  /* smooth + iOS momentum */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (optional) */
.projects-track::-webkit-scrollbar{ height: 10px; }
.projects-track::-webkit-scrollbar-thumb{
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.projects-track::-webkit-scrollbar-track{
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.project-card{
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1);
}

.project-card img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.project-card-body{
  padding: 14px 14px 16px;
}

.project-card-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: #111;
}

.project-card-body p{
  margin: 0 0 12px;
  color: #444;
  line-height: 1.55;
  font-size: 14px;
}

.project-link{
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.project-link:hover{
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 600px){
  .projects-head{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* What We Do section (4 columns, circle images, text below) */
.whatwedo{
  background: #898989;
  padding: 90px 20px;
}

.whatwedo-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.whatwedo-title{
  margin: 0 0 34px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  color: #ffffff; /* warm accent like your example */
  letter-spacing: 0.2px;
}

/* 4 across on desktop */
.whatwedo-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

.wwd-card{
  text-align: center;
  color: #ffffff;
}

.wwd-icon{
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.1);
}

.wwd-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-card h3{
  margin: 10px 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.wwd-card p{
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #ffffff;
}

/* Responsive: 2 across */
@media (max-width: 1000px){
  .whatwedo-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 560px){
  .whatwedo-grid{
    grid-template-columns: 1fr;
  }
  .wwd-icon{
    width: 140px;
    height: 140px;
  }
}

/* Stay Informed close-out section */
.stay{
  background: #ffffff;
  padding: 90px 20px;
  color: #000000;
}

.stay-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.stay-left h2{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
}

.stay-left p{
  margin: 0 0 18px;
  color: #000000;
  line-height: 1.65;
  max-width: 60ch;
}

.stay-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 10px;
}

.stay-form input{
  flex: 1 1 260px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(86, 86, 86, 0.14);
  background: rgba(255,255,255,0.06);
  color: #474747;
  outline: none;
}

.stay-form input::placeholder{
  color: rgba(18, 18, 18, 0.55);
}

.stay-form button{
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: #5c5c5c;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.stay-form button:hover{
  background: rgba(58, 58, 58, 0.92);
}

.stay-note{
  margin-top: 10px;
  font-size: 13px;
  color: #000000;
}

/* Contact card */
.stay-card{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 22px;
}

.stay-card h3{
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 22px;
}

.stay-card p{
  margin: 0 0 16px;
  color: #000000;
  line-height: 1.6;
}

.stay-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #5c5c5c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.stay-btn:hover{
  background: rgba(58, 58, 58, 0.92);
}

/* Screen-reader only label */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px){
  .stay-inner{
    grid-template-columns: 1fr;
  }
}

/* Shared page styling */
/* CONTACT PAGE (sections like homepage) */

.page{
  padding-top: 110px; /* fixed header space */
  background: #f6f6f6;
}

/* shared wrapper */
.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.muted{ color: #6b7280; }
.tiny{ color: #6b7280; font-size: 12px; margin: 14px 0 0; }

.section-title{
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #111;
}

/* Section 1: hero band */
.contact-hero{
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 48px 0 34px;
}

.contact-hero h1{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 50px);
  color: #111;
}

.contact-hero .lead{
  margin: 0 0 10px;
  max-width: 70ch;
  color: #444;
  line-height: 1.6;
}

/* Section 2: main area */
.contact-main{
  padding: 46px 0;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

/* left side */
.checklist{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 14px;
}

.check-item{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #1f2937;
}

.check-item:last-child{ border-bottom: none; }

.note-card{
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px;
}

.note-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.note-card p{
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* right side card */
.contact-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.contact-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-row:last-of-type{ border-bottom: none; }

.label{
  color: #6b7280;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-link{
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  width: fit-content;
}

.contact-link:hover{
  border-bottom-color: rgba(0,0,0,0.55);
}

/* Section 3: founder */
.contact-founder{
  padding: 10px 0 60px;
}

.founder-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

.founder-photo{
  width: 170px;
  height: 170px;
  border-radius: 18px; /* rounded square (B) */
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.bio{
  margin: 10px 0 0;
  color: #444;
  line-height: 1.65;
  max-width: 72ch;
}

.founder-actions{
  margin-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Section 4: dark close band */
.contact-close{
  background: #0b0f14;
  color: #e8eef7;
  padding: 60px 0;
}

.close-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-close h2{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #ffffff;
}

.contact-close p{
  margin: 0;
  color: #b7c0ce;
  line-height: 1.6;
  max-width: 70ch;
}

.close-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.10em;
  font-size: 12px;
  white-space: nowrap;
}

.close-btn:hover{
  background: rgba(255,255,255,0.92);
}

.site-footer {
  background: #000;
  color: #9a9a9a;
  margin-top: 0px;
  width: 100%;
  padding: 60px 0 40px;
}

.site-footer a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.site-footer .wrap{
  background: transparent !important;
}

.footer-copy {
  font-size: 13px;
  line-height: 1.4;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav,
  .footer-social {
    align-items: center;
  }
}


/* Mobile */
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .founder-card{ grid-template-columns: 1fr; }
  .founder-photo{ width: 140px; height: 140px; }
  .close-inner{ flex-direction: column; align-items: flex-start; }
}
