:root {
  --bg: #f4f4ef;
  --text: #111;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.home {
background-image: url('../pixels/furniture/ampersand.png');
background-repeat: no-repeat;
background-position: center 100px;
}
/* Hide background image on screens 768px wide or smaller */
@media (max-width: 768px) {
  body.home {
    background-image: none;
  }
}
/* ---------------- HEADER ---------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 6vw 44px 6vw;
}
  .logo img {
  height: 62px;
  max-width: 100%;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.nav-link {
  text-decoration: none;
  text-transform: uppercase;
  color: #111;
  font-weight: 400;
  padding: 0 10px;
  line-height: 1.4;
  transition: color 0.15s;
  white-space: nowrap;
  font-size: 0.8em;
}
.nav-link:hover {
  color: #444;
}
.nav-bar {
  color: #aaa;
  font-weight: 300;
  font-size: 18px;
  margin: 0 6px;
  user-select: none;
}
.contact-btn {
  border: 1.5px solid #1a1a1a;
  border-radius: 5px;
  padding: 7px 24px;
  font-weight: 500;
  background: white;
  transition: background .2s, color .2s,;
  text-decoration: none;
  color: #111;
  margin-left: 18px;
  display: inline-block;
  white-space: nowrap;
}
.contact-btn:hover, .contact-btn:focus {
  background: #333;
  color: #eee;
  border: 1.5px solid #333;
  transition: background .2s, color .2s,;
}

/* ---------------- FOOTER ---------------- */
footer {
  margin-top: auto;
  padding: 0 6vw 48px 6vw;
}
.footer-line {
  border: none;
  border-top: 1.5px solid #111;
  margin-bottom: 56px;
  margin-top: 120px;
  width: 100%;
}
.footer-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 0;
  min-width: 120px;
  font-size: 0.99rem;
}
.nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-col a {
  text-decoration: none;
  color: #111;
  transition: color .15s;
  display: block;
  margin-bottom: 0.5em;
}
.nav-col a:hover {
  color: #444;
}
.contact-col {
  font-size: 1rem;
  white-space: pre-line;
}
.contact-col a {
  color: #111;
  margin-right: 10px;
}
.copyright-col {
  text-align: right;
  color: #888;
  font-size: 0.96rem;
  line-height: 1.9;
}

/* ---------------- HOME/CAROUSEL ---------------- */
.carousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  margin: 120px 0;
}


.carousel-slide {
  max-width: 428px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  background-color: white;
  padding: 23px;
    );
}

.carousel-slide:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.carousel-img {
  width: 420px;
  max-width: 100vw;
  overflow: hidden;
  background: #e6e6e2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.7s;
  aspect-ratio: 16/10;
}
.carousel-fade-out {
  opacity: 0.15;
  transition: opacity 0.5s;
}
.carousel-label {
  font-size: 14px;
  text-transform:uppercase;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-top: 16px;
  margin-bottom: 0;
  display: block;
  background-color: white;
}

/* ---------------- TWO COLUMN INTRO ---------------- */
.intro-section {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: flex-start;
  margin: 120px 0 120px 0;
  padding: 0 6vw;
}
.intro-left {
  flex: 1 1 340px;
}
.intro-left h2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2.25;
  margin: 0 0 0 0;
  text-transform: uppercase;
}
.intro-right {
  flex: 2 1 560px;
}
.intro-right p {
  line-height: 2.7;
  margin: 0;
  font-size: 1.08rem;
}

/* ---------------- PROJECT PAGE HERO TITLE ---------------- */
.project-title-wrap {
  width: 75vw;
  max-width: 75vw;
  margin-left: 6vw;
  margin-top: 7rem;
  margin-bottom: 4rem;
}
.project-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #131313;
  text-align: left;
  word-break: break-word;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(90deg,#222 70%,#0077b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
  padding: 1.5rem 0;
  display: block;
}

/* ---------------- PROJECT PAGE SPLIT LAYOUT ---------------- */
.project-section.split-section {
  display: flex;
  flex-direction: row;
  gap: 56px;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6vw;
  margin-bottom: 100px;
  position: relative;
}
.project-label-col {
  flex: 0 0 220px;
  min-width: 160px;
  margin-top: 6px;
  align-self: flex-start;
}
.project-label-col h2 {
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0;
  color: #333;
}
.project-content-col {
  flex: 2 1 640px;
  max-width: 820px;
}
.project-meta strong {
  font-size: 1.01rem;
  letter-spacing: 0.01em;
}
.project-content-col ul {
  padding-left: 1.2em;
  margin-top: .5em;
  margin-bottom: 1em;
}
.project-content-col li {
  margin-bottom: .5em;
  line-height: 1.6;
}
.project-content-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: .6em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0077b6;
}
.project-content-col blockquote {
  border-left: 3px solid #0077b6;
  margin: 1.7em 0 1.7em 0;
  padding: 1.2em 1.4em;
  background: #f9f9f2;
  font-size: 1.03rem;
  color: #222;
  font-style: italic;
  border-radius: 6px;
}
.testimonial-by {
  margin-top: .8em;
  font-size: 0.98rem;
  color: #777;
  font-style: normal;
  font-weight: 500;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2.6em;
  margin-top: 1.6em;
}
.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 1.3em;
}
.testimonial-photo {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.08);
  margin-top: 0.2em;
  margin-bottom: 0;
  display: block;
}
.testimonial blockquote {
  border-left: 3px solid #0077b6;
  margin: 0;
  padding: 1.1em 1.2em;
  background: #f9f9f2;
  font-size: 1.01rem;
  color: #222;
  font-style: italic;
  border-radius: 6px;
  max-width: 680px;
}

.showcase img {
  width:100%;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 4vw 32px 4vw;
    gap: 30px;
  }
  .nav {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .carousel-section {
    margin: 70px 0 70px 0;
    padding: 0 2vw;
  }
  .carousel-img {
    height: auto;
    max-width: 100vw;
    aspect-ratio: 16/10;
  }
  .footer-content {
    flex-direction: column;
    gap: 28px;
  }
  .copyright-col {
    text-align: left;
  }
  .footer-line {
    margin-top: 70px;
    margin-bottom: 40px;
  }
  footer {
    padding-bottom: 24px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .intro-section {
    flex-direction: column;
    gap: 48px;
    margin: 70px 0 70px 0;
    padding: 0 4vw;
  }
  .project-title-wrap {
    width: 94vw;
    max-width: 94vw;
    margin-left: 4vw;
    margin-top: 3.5rem;
    margin-bottom: 2.2rem;
  }
  .project-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    padding: 1rem 0;
  }
  .project-section.split-section {
    flex-direction: column;
    gap: 28px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media (max-width: 600px) {
  html, body {
    font-size: 15px;
  }
  .header {
    padding: 18px 2vw 18px 2vw;
  }

  .intro-left h2 {
    font-size: 1.3rem;
  }
  .footer-content {
    gap: 18px;
  }
  .carousel-section,
  .intro-section,
  .footer-line {
    margin-top: 38px !important;
    margin-bottom: 38px !important;
  }
  .carousel-img {
    height: auto;
    aspect-ratio: 16/10;
  }
  .project-title-wrap {
    width: 98vw;
    max-width: 98vw;
    margin-left: 2vw;
    margin-top: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .project-title {
    font-size: clamp(1.6rem, 10vw, 2.3rem);
    padding: 0.8rem 0;
  }
  .testimonial-photo {
    width: 32px;
    height: 32px;
  }
  .testimonial {
    gap: 0.8em;
  }
}

@media (max-width: 480px) {
  .testimonial {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  .testimonial-photo {
    width: 28px;
    height: 28px;
  }
}

.about-strengths-list {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
  margin-bottom: 0.5em;
}
.about-strength-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
}
.about-strength-heading {
  min-width: 120px;
  max-width: 160px;
  flex: 0 0 140px;
  font-size: 1.09rem;
  margin: 0 0 0 0;
  color: #0077b6;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
@media (max-width: 600px) {
  .about-strength-item {
    flex-direction: column;
    gap: 0.4em;
  }
  .about-strength-heading {
    margin-bottom: 0.2em;
    min-width: 0;
    max-width: 100vw;
    flex: unset;
  }
}


a {
    position: relative;
    display: inline-block;
    color: #0077b6;
    text-decoration: none;
    padding-bottom: 2px;
    transition: color 0.3s ease;
    font-weight: bold;
  }

  a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #222;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  a:hover,
  a:focus {
    color: #000;
  }

  a:hover::after,
  a:focus::after {
    transform: scaleX(1);
  }

  a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
  }
