:root {
  --color-text: #3E2612;
  --color-bg: #F7F3EB;
  --hero-text: #F7F3EB;
  --hero-subtext: rgba(247,243,235,0.85);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
}


/* HIDE SCROLLBAR – KEEP SCROLL */
html {
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


@font-face {
  font-family: 'Acros';
  src: url('./fonts/Acros-Regular.woff2.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
h1, h2, h3,
.hero-title,
.about-title,
.portfolio-title,
.services-title,
.journal-title,
.faq-title {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
color: inherit;
}

/* Sub / eyebrow */
.about-eyebrow,
.services-eyebrow,
.portfolio-meta,
.footer-title {
  font-family: var(--font-body);
  font-weight: 300;
}

/* Style / italic */
.italic {
  font-family: var(--font-style);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* ================= NAV ================= */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 10;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.nav {
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-right a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
}
.nav,
.nav * {
  box-sizing: border-box;
}

.nav-left {
  font-family: 'Acros', sans-serif;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav-center a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}


.nav-btn {
  text-decoration: none;
  border-bottom: 1px solid #111;
  font-size: 14px;
}

.nav-center a {
  position: relative;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 120px;
  overflow: hidden;
}

.nav,
.nav a {
  color: #3E2612;
}


.nav.scrolled {
  color: #3E2612;
}

/* background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero1.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Acros', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}


.hero .nav a {
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero-subtext {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
  color: var(--hero-subtext);
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-cta {
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  border-bottom: 1px solid #3E2612;
  padding-bottom: 2px;
}

/* ===== SECTION 2 ===== */
.about {
  background: #F7F3EB;
  padding: clamp(80px, 12vw, 160px) 6vw;

}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}



/* LEFT */
.about-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: #111;
  margin-bottom: 32px;
}

.about-text {
  font-size: 18px;
  color: #444;
  max-width: 420px;
  margin-bottom: 32px;
}

.about-link {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

/* RIGHT */
.about-right {
  position: relative;
}

/* 🔴 REQUIRED FOR REVEAL */
.about-img {
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  transform: translateY(100%);
}


/* Sizes */
.about-img.large {
  width: 100%;
  height: 560px;
}


.about-img.small {
  width: 280px;
  height: 360px;
  position: absolute;
  right: -32px;
  bottom: -48px;
}


/* ===== SECTION 3 ===== */
.portfolio {
  background: var(--color-bg);

  padding: clamp(80px, 12vw, 160px) 6vw;

}

.portfolio-header {
  margin-bottom: 80px;
}

.portfolio-title {
  font-size: 56px;
  line-height: 1.1;
}

.portfolio-wrapper {
  position: relative;
}

.portfolio-slide {
  display: none;
}

.portfolio-slide.active {
  display: block;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-image.small {
    display: none;
  }
}


.portfolio-image {
  overflow: hidden;
}

.portfolio-image.large {
  height: 480px;
}

.portfolio-image.small {
  height: 300px;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}



.portfolio-meta {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 16px;
  display: block;
}

.portfolio-name {
  font-size: 36px;
  margin-bottom: 24px;
}

.portfolio-desc {
  max-width: 320px;
  color: #444;
}

/* controls */
.portfolio-controls {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
    gap: 32px; /* controls how close they are */
}

.arrows button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* ===== SECTION 4 ===== */
.services {
  background: var(--color-bg);
  padding: clamp(80px, 12vw, 160px) 6vw;

  overflow: hidden;
}

.services-head {
  margin-bottom: 120px;
}

.services-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  display: block;
  margin-bottom: 24px;
}

.services-title {
  font-size: 56px;
  line-height: 1.1;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.service-card {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
  opacity: 0;
  transform: translateX(-60px);
}

.service-index {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


/* ===== SECTION 5 : JOURNAL ===== */
.journal {
  background: var(--color-bg);

  padding: clamp(80px, 12vw, 160px) 6vw;

}

.journal-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.journal-title {
  font-size: 56px;
  line-height: 1.1;
}

.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 40px;
}

/* ITEMS */
.journal-item {
  position: relative;
}

.journal-item h4 {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* IMAGES */
.journal-img {
  overflow: hidden;
}

.journal-img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  display: block;
}



/* FEATURED */
.journal-item.featured {
  grid-row: span 2;
}

.journal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.journal-overlay h3 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.journal-overlay p {
  max-width: 360px;
  margin-bottom: 24px;
}

/* JOURNAL OVERLAY TEXT FIX */
.journal-overlay,
.journal-overlay h3,
.journal-overlay p {
  color: #ffffff !important;
}

.journal-overlay h3 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.journal-overlay p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ===== JOURNAL CTA FIX ===== */
.journal-overlay a,
.journal-overlay .read-more {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.journal-overlay a:hover,
.journal-overlay .read-more:hover {
  opacity: 0.75;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.reviews {
  padding: 140px 8vw;
  background: #f7f7f5;
}

.reviews-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 40px;
}

.review-card {
  min-width: 360px;
  background: var(--color-bg);

  padding: 48px;
  border: 1px solid #e5e5e5;
}

.review-card p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.review-card span {
  font-size: 14px;
  color: #777;
}

.reviews-controls {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* ===== REVIEW ARROWS ===== */
.review-arrows button,
.review-controls button {
  background: none;
  border: none;
  color: var(--color-text); /* #3E2612 */
  font-family: 'Acros', sans-serif;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-arrows button:hover,
.review-controls button:hover {
  opacity: 1;
  transform: translateX(2px);
}

.review-arrows button.prev:hover,
.review-controls button.prev:hover {
  transform: translateX(-2px);
}

.faq {
  padding: 140px 8vw;
}

.faq-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 16px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 160px;
}

.nav {
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    color 0.3s ease;
}
@media (max-width: 768px) {
  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nav-toggle {
  display: none;
  cursor: pointer;
}
/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

  .nav {
    padding: 20px 6vw;
  }

  .nav-center,
  .nav-right a {
    display: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  /* OPEN STATE */
  .nav.open .nav-center,


  .nav.open .nav-center {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);

    flex-direction: column;
    padding: 32px 6vw;
    gap: 24px;
  }
}

.footer {
  background: #F7F3EB;
  color: #3E2612;
  padding: 140px 8vw 60px;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-brand h4 {
  font-family: 'Acros', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--color-text);
}


.footer-marquee span {
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
  margin-bottom: 80px;
}

.footer-title {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer-col a {
  display: block;
  color: #3E2612;
  text-decoration: none;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
}

.footer-marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  letter-spacing: 4px;
  opacity: 0.6;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding-left: 8vw;
  }

  .about-grid,
  .portfolio-grid,
  .journal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .about-title,
  .services-title,
  .journal-title,
  .model-overlay h2 {
    font-size: clamp(32px, 5vw, 56px);
  }

  section {
    padding: 100px 6vw;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 280px;
  }

  .model-overlay {
    left: 6vw;
  }
}

/* ===== MOBILE NAV (CLEAN) ===== */
@media (max-width: 768px) {
  .nav {
    padding: 20px 6vw;
  }

  .nav-center {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);

    display: none;
    flex-direction: column;
    gap: 24px;
    padding: 32px 6vw;
    z-index: 20;
  }

  .nav.open .nav-center {
    display: flex;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}

/* ===== TYPOGRAPHY SYSTEM ===== */

/* MAIN SECTION HEADINGS */
.about-title,
.portfolio-title,
.services-title,
.journal-title,
.faq-title {
  font-family: 'Acros', sans-serif;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/* SUB-HEADINGS (separate lines) */
.subheading,
.impression-text,
.resonates-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--color-text);
}

p {
  font-size: clamp(14px, 1.6vw, 18px);
}

/* Sub-headings / eyebrow text */
.about-eyebrow,
.services-eyebrow,
.portfolio-meta,
.footer-title {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Body text */
p,
.about-text,
.portfolio-desc,
.service-card p,
.review-card p,
.faq-answer {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
}

/* Style / accent font */
.italic,
.journal-overlay h3 span {
  font-family: var(--font-style);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ===============================
   IMAGE FIX: TABLET + MOBILE
================================ */

@media (max-width: 1024px) {

  /* Remove fixed heights */
  .about-img.large,
  .about-img.small,
  .portfolio-image.large,
  .portfolio-image.small,
  .journal-img {
    height: auto;
  }

  /* Force natural aspect ratio */
  .about-img img,
  .portfolio-image img,
  .journal-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Stop floating overlap */
  .about-img.small {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }
}
@media (max-width: 1024px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-item.featured {
    grid-row: auto;
  }
}
