:root {
  --bg: #d7cdba;
  --text: #2a2825;
  --gray: #6d665e;
  --border: #bdae93;
  --accent: rgb(0, 149, 182);
}

::selection {
  background: var(--accent);
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  background-image: url("https://www.transparenttextures.com/patterns/cardboard.png");
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.container {
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.full-height {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
}

.label {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 3px;
  font-weight: 600;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 40px 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-statement {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.carousel-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text {
  font-size: 1rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer / Engage */
.engage-footer {
  padding: 40px 0 60px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col p {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -1px;
  font-weight: 500;
  transition: 0.4s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.socials {
  display: flex;
  align-items: center;
}

.socials a {
  margin-right: 30px;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.socials a:last-child {
  margin-right: 0;
}

.socials a svg {
  width: 1.25em;
  height: 1.25em;
}

/* Mobile */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero {
    flex-direction: column;
    gap: 40px;
  }
  .hero-visual {
    justify-content: center;
  }
  .engage-footer {
    flex-direction: column;
    gap: 40px;
  }
}
