/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1f1f1f;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  max-width: 1280px;
  margin: 20px auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 100%;
  max-height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* NAV LINKS */
.navbar nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #2d2d2d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

/* Underline hover (more refined) */
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #944454;
  transition: width 0.3s ease;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;

  min-height: 85vh;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}

/* HERO TEXT */
.hero-content .subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8c9870;
  font-weight: 600;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 53px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 24px 0;
  color: #1f1f1f;
}

/* TYPED TEXT ACCENT */
#typed-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #944454;
}

/* PARAGRAPH */
.hero-content p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.6;
  color: #6f6f6f;
  margin-bottom: 32px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn.primary {
  background-color: #8c9870;
  color: #ffffff;
}

.btn.primary:hover {
  background-color: #7a865f;
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1.75px solid #d0d0d0;
  color: #2d2d2d;
}

.btn.secondary:hover {
  border-color: #944454;
  transform: translateY(-2px);
}

/* HERO IMAGE CONTAINER */
.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: fadeUpImage 0.6s ease forwards;
  animation-delay: 1s;
}



@keyframes fadeUpImage {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ARCH IMAGE */
.hero-image img {
  width: 100%;
  max-width: 420px;
  height: 520px; /* controls the arch height */
  object-fit: cover;

  /* Arch shape */
  border-radius: 220px 220px 0 0;

  /* Depth */
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.12);
}

/* CURSOR */
.cursor {
  display: inline-block;
  margin-left: 4px;
  width: 2px;
  height: 1em;
  background-color: currentColor;
  animation: blink 1s infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* FADE-UP ANIMATION */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE (this is critical for senior-level polish) */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .buttons {
    justify-content: center;
  }

  .navbar {
    padding: 0 24px;
  }
}


/* PROJECTS SECTION */

/* =========================
   PROJECTS PREVIEW SECTION
   ========================= */

/* FULL WIDTH BACKGROUND */
.best-seller {
  width: 100%;
  background-color: #fbf8f2;
  padding: 100px 0;
}

/* CONSTRAINED CONTENT */
.best-seller__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.best-seller__content {
  max-width: 420px;
}

.best-seller__eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8c9870;
  font-weight: 600;
}

.best-seller__title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
  color: #1f1f1f;
}

.best-seller__text {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
  margin-bottom: 30px;
}

.best-seller__btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1.5px solid #d0d0d0;
  text-decoration: none;
  font-size: 14px;
  color: #2d2d2d;
  transition: all 0.25s ease;
}

.best-seller__btn:hover {
  border-color: #8c9870;
  transform: translateY(-2px);
}

/* CAROUSEL */

.best-seller__carousel {
   position: relative;

  /* push carousel outward */
  margin-right: calc(-52vw + 640px);
  padding-right: 40px;   /* keeps spacing inside */

  overflow-x: hidden;
  overflow-y: visible;
}


.carousel__viewport {
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 20px;
  padding-right: 40px;
}

/* AUTO SCROLL */
.carousel__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 50s linear infinite;
}

.best-seller__carousel:hover .carousel__track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CARDS */
.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
 width: 340px;        /* fixed width */
  min-width: 340px;    /* keeps carousel behavior */
  max-width: 340px;    /* prevents expansion */


display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  box-shadow:
    0 2px 6px rgba(0,0,0,0.04),
    0 10px 25px rgba(0,0,0,0.06);

  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 14px rgba(0,0,0,0.06),
    0 18px 40px rgba(0,0,0,0.10);
}

.card__img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* important */
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full mockup visible */
}

.card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.card__img::after {
  content: "View Project →";
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.card:hover .card__img::before,
.card:hover .card__img::after {
  opacity: 1;
  transform: translateY(0);
}

.card__info {
  padding: 18px 20px 22px;
  position: relative;
}

.card__info h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 6px;
  position: relative;
  line-height: 1.3;
}

.card__info h4::after {
   content: "";
  position: absolute;
  left: 0px;
  bottom: 0;

   width: 100%;
  height: 1.7px;

  background: #944454;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover h4::after {
  width: 100%;
  transform: scaleX(1);
  transition-delay: 0.05s;
}

.card__info p {
  font-size: 14px;
  color: #6b6b6b;
}

/* CONTROLS */
.carousel__controls {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 25px;
}

.carousel__arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid #c4c4c4;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.carousel__arrow:hover {
  background: #8c9870;
  color: #ffffff;
  border-color: #8c9870;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .best-seller__inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .best-seller__content {
    margin: 0 auto;
  }

  .carousel__controls {
    justify-content: center;
  }
}






/* CONTACT SECTION */

/* BASE */
body {
  font-family: "Inter", sans-serif;
  background: #fdfdfb; /* soft warm white */
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

/* GLASS CARD */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal balance */
  max-width: 1000px;
  border-radius: 4px;
  margin-top: -30px;
  margin-bottom: 60px;


  background: rgba(255, 255, 255, 0.65); /* stronger */
  backdrop-filter: blur(22px); /* more blur */
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255, 255, 255, 0.6); /* KEY ADD */
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* LEFT PANEL */
.contact-left {
  padding: 70px 50px;
  max-width: 420px; /* prevents it from overpowering */
}

.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: #2f2f2f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-left p {
  color: #6f6f6f;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 360px;
}

/* CONTACT INFO */
.contact-info p {
  margin-bottom: 18px;
  font-size: 14px;
  color: #444;
}

/* RIGHT PANEL */
.contact-right {
  padding: 70px 60px; /* more space */
  background: rgba(255, 255, 255, 0.35);
}

.contact-right {
  border-left: 1px solid rgba(0,0,0,0.06);
}


/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px; /* was ~18 → feels cramped */
}

.form-group input,
.form-group textarea {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* LABEL */
.form-group label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2f2f2f;
  margin-bottom: 6px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: #ffffff;
  
font-family: Inter;
  font-size: 14px;
  outline: none;

  transition: all 0.3s ease;
}

/* FOCUS STATE */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #8c9870;
  box-shadow: 0 6px 20px rgba(140, 152, 112, 0.2);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #8c9870;
}

/* BUTTON */
.btn.contact.primary {
  margin-top: 10px;
  padding: 16px;
  border-radius: 4px;
  border: none;
  width: 100%;

  background-color: #8c9870;
  color: white;
  font-weight: 500;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(140, 152, 112, 0.25);
  transition: all 0.3s ease;
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: #7b865f;
  box-shadow: 0 12px 28px rgba(140, 152, 112, 0.35);
}

.btn.primary:active {
  transform: scale(0.98);
}

/* STATUS TEXT */
.form-status {
  font-size: 15px;
  color: #8c9870;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px 25px;
  }

  .contact-left h2 {
    font-size: 32px;
  }
}



@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-left,
.contact-right {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.contact-left {
  animation-delay: 0.2s;
}

.contact-right {
  animation-delay: 0.4s;
}

.contact-left h2,
.contact-left p,
.contact-info p {
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
}

.contact-left h2 { animation-delay: 0.3s; }
.contact-left p { animation-delay: 0.4s; }
.contact-info p:nth-child(1) { animation-delay: 0.5s; }
.contact-info p:nth-child(2) { animation-delay: 0.6s; }
.contact-info p:nth-child(3) { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

.contact-link {
  color: #2f2f2f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #8c9870;
  border-bottom: 1px solid #8c9870;
}



/* ===== BASE ===== */
.about {
  background: #ffffff;
  padding: 80px;
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ===== FIRST ABOUT SECTION ===== */
.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  max-width: 425px;
  justify-self: start; /* CHANGED: was end */
  margin-left: -40px;  /* subtle left pull */
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;

  border-top-left-radius: 180px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* TEXT */
.about-content {
  max-width: 520px; /* added for control */
  margin-left: -40px;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7a8b6f;
  margin-bottom: 15px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  margin-bottom: 18px;
  max-width: 580px; /* FIXED */
}

/* BUTTONS */
.about-buttons {
  margin-top: 28px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: #8c9870;
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
   background-color: #7a865f;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1.75px solid #d0d0d0;
  color: #2d2d2d;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #944454;
  transform: translateY(-2px);
}

/* ===== SECOND ABOUT SECTION ===== */
/* ===== SECOND ABOUT SECTION (FIXED) ===== */
.about-secondary-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* SAME as first */
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* TEXT (push it RIGHT like a mirror) */
.about-secondary-content {
  max-width: 520px;
  justify-self: end;     /* anchors to right edge */
  margin-right: -140px;  /* mirrors your top section left pull */
  margin-top: 10px;
}

/* IMAGE (pull slightly right too) */
.about-secondary-image {
  max-width: 425px;
  justify-self: end;
  margin-right: -60px;
}


.about-secondary-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.about-secondary-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a5a5a;
  margin-bottom: 18px;
}

/* BUTTON */
.about-secondary-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 30px;

  background: #8c9870;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 3px;

  transition: all 0.3s ease;
}

.about-secondary-btn:hover {
  background-color: #7a865f;
  transform: translateY(-2px);
}



.about-secondary-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  
  border-top-right-radius: 160px;
  
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-container,
  .about-secondary-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image,
  .about-secondary-content {
    margin: 0;
    justify-self: center;
  }

  .about-content h2,
  .about-secondary-content h2 {
    font-size: 34px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-secondary-image {
    margin: 0 auto;
  }
}

/* ===== HANDWRITTEN TEXT ===== */
.about-handwritten {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  color: #2d2d2d;
  margin-bottom: 12px;
  font-weight: 500;
  opacity: 0.92;


  display: inline-block;

  /* natural handwritten angle */
  transform: rotate(-5deg);

  letter-spacing: 0.5px;

  /* animation setup */
  opacity: 0;
  transform-origin: left center;
  animation: handwritingFade 1s ease forwards;
  animation-delay: 0.6s;
}

/* Slight variation for second section (more natural feel) */
.about-secondary .about-handwritten {
  transform: rotate(4deg);
  animation-delay: 0.5s;
}

/* ===== HANDWRITING ANIMATION ===== */
@keyframes handwritingFade {
  0% {
    opacity: 0;
    transform: translateY(10px) rotate(-8deg) scale(0.95);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0) rotate(-5deg) scale(1);
    opacity: 1;
  }
}


.scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;

  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  background: #fbf8f2;
}

.scroll-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
}

.scroll-track span {
  display: inline-block;
  margin: 0 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  font-family: 'playfair display';
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* =========================
   PROJECTS PAGE ONLY
   (Scoped — no conflicts)
========================= */


/* ===== FILTER ===== */
.projects-page__filter {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
}

.projects-page__filter-btn {
  border: 1px solid #e5e3df;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-page__filter-btn:hover,
.projects-page__filter-btn.active {
  background: #8a8f6a;
  color: white;
  border-color: #8a8f6a;
}


/* ===== PAGE ===== */
.projects-page {
  background: #ffffff;
  padding: 80px 40px;
  font-family: 'Inter', sans-serif;
}

.projects-page__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.projects-page__hero {
  max-width: 700px;
  margin: 0 auto 70px auto;
  text-align: center;
}

.projects-page__eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8f6a;
  font-weight: 600;
}

.projects-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin: 20px 0;
  line-height: 1.15;
  color: #2f2f2f;
}

.projects-page__description {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
}

/* ===== GRID ===== */
.projects-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

/* ===== CARD ===== */
.projects-page__card {
  display: block;
  text-decoration: none;
  color: inherit;

  background: #ffffff;
  border-radius: 16px;

  /* subtle, premium shadow */
  box-shadow:
    0 2px 6px rgba(0,0,0,0.04),
    0 10px 25px rgba(0,0,0,0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* hover = refined lift */
.projects-page__card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 6px 14px rgba(0,0,0,0.06),
    0 18px 40px rgba(0,0,0,0.10);
}

/* ===== IMAGE ===== */
.projects-page__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.projects-page__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects-page__card:hover img {
  transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.projects-page__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.1)
  );

  display: flex;
  align-items: flex-end;
  padding: 18px;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.projects-page__overlay span {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.projects-page__card:hover .projects-page__overlay {
  opacity: 1;
}

.projects-page__card:hover .projects-page__overlay span {
  transform: translateY(0);
}

/* ===== CONTENT ===== */
.projects-page__content {
  padding: 18px 20px 22px;
}

.projects-page__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
  position: relative;
}

.projects-page__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 1.5px;

  background: #944454;
  transition: width 0.3s ease;
}

.projects-page__card:hover h3::after {
  width: 100%;
}

.projects-page__content p {
  font-size: 14px;
  color: #6b6b6b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .projects-page__grid {
    grid-template-columns: 1fr;
  }

  .projects-page__title {
    font-size: 38px;
  }
}













/* SECTION */
/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

/* SECTION */
.skills {
  padding: 120px 8%;
}

/* CONTAINER */
.skills-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.skills-header {
  margin-bottom: 80px;
}

/* TITLE WRAPPER */
.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #2e3b35;
  position: relative;
  display: inline-block; /* KEY */
}

/* UNDERLINE */
.underline {
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: #8a6a6a;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.12s ease;
}

/* ANIMATE FULL WIDTH */
.skills-header.active .underline {
  transform: scaleX(1);
}

/* TITLE */
.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #2f2f2f;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

/* ANIMATED UNDERLINE */
.underline {
  display: block;
  width: 0%;
  height: 2px;
  background: #944454;
  margin-top: 10px;
  transition: width 1s ease;
}

/* SHOW LINE ON REVEAL */
.skills-header.active .underline {
  width: 100%;
}

/* SUBTEXT */
.skills-header p {
  font-size: 1rem;
  color: #6b6f6a;
  margin:15px;
}

/* GRID */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 70px;
}

/* SKILL ITEM */
.skill {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 340px;
}

/* ICON */
.skill-icon {
  font-size: 22px;
  color: #2f2f2f;
}

.skill {
  transition: transform 0.010s ease-out;
}

.skill-icon {
  transition: transform 0.010s ease-out, color 0.5s ease-out;
}

.skill {
  cursor: default;
}

/* TITLE */
.skill h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2f2f2f;
}

/* TEXT */
.skill p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5f6360;
}

/* ✨ BLUR TO SHARP REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ✨ HOVER MICRO-INTERACTIONS */
.skill:hover {
  transform: translateY(-4px);
}

.skill:hover .skill-icon {
  transform: scale(1);
  color: #944454;
}

/* SUBTLE TEXT SHIFT */
.skill:hover h3 {
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: #4f5d2f; /* dark clean footer */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-family: 'playfair display';
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s ease;
  font-family: 'Inter';
}

.footer-links a:hover {
  color: #8c9870; /* accent hover color */
}

.footer-bottom {
  font-size: 12px;
  opacity: 0.7;
}


/* CTA SECTION */
.cta {
  width: 100%;
  padding: 80px 10px;
  background: #fbf8f2; /* or try #f8f7f4 if you want contrast */
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* TITLE */
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #2f2f2f;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

/* CTA BUTTON CUSTOM STYLE */
.cta .btn {
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Primary button */
.cta .btn.primary {
  background-color: #944454; /* your accent color */
  color: #fff;
}

.cta .btn.primary:hover {
  background-color: #7d3947;
  transform: translateY(-2px);
}

/* Secondary button */
.cta .btn.secondary {
  border: 1.5px solid #944454;
  color: #944454;
  background: transparent;
}

.cta .btn.secondary:hover {
  background: #944454;
  color: #fff;
  transform: translateY(-2px);
}




/* =========================
   CASE STUDY PAGE
   ========================= */

body {
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.case-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* HERO */
/* =========================
   CASE HERO (NEW)
   ========================= */

.case-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}

/* TOP ROW */
.case-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.back-link {
  position: relative; /* ADD THIS */
  font-size: 16px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px; /* make it visible */
  background: #944454;
  transition: width 0.3s ease;
}

.back-link:hover::after {
  width: 100%;
}



.case-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;

   transform: translateX(-100px); /* adjust freely */

}

/* GRID */
.case-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: start;
}

/* LEFT CONTENT */
.case-hero__content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 55px);
  line-height: 1.05;
  margin: 16px 0 24px;
}

.case-hero__desc {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

/* BUTTON */
.case-hero__actions {
  margin-top: 50px;
}

/* METRICS */
.case-hero__metrics {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;

   margin-left: auto;      /* pushes it to the right */
  max-width: 200px;       /* keeps it from stretching too wide */
}

.metric h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.metric p {
  font-size: 14px;
  color: #777;
  max-width: 200px;
}

/* EYEBROW */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #8c9870;
  font-weight: 500;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .case-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-hero__metrics {
    flex-direction: row;
    justify-content: space-between;
  }

  .metric {
    max-width: 120px;
  }
}




.meta-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  
}

.metrics {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.metrics h3 {
  font-size: 32px;
  margin: 0;
}

.metrics p {
  font-size: 14px;
  color: #777;
}

/* SECTIONS */
.section {
  margin-top: 100px;
  max-width: 720px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
}

.section p {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
}

/* CALLOUT */
.callout {
  margin-top: 24px;
  padding: 20px;
  background: white;
  border-left: 4px solid #1a1a1a;
}

/* PROCESS */
.process-block {
  margin-top: 40px;
}

.decision {
  margin-top: 12px;
  font-size: 15px;
  color: #666;
}




/* CTA */
.case-cta {
  text-align: center;
  padding-top: 60px;
}

.case-cta a {
  text-decoration: none;
  color: #8c9870;
}

/* PROTOTYPE LINK */
.prototype-link {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #8c9870;
  color: white;
}

.btn.bottom {
  margin-top: 20px;
  margin-bottom: 80px;
}

.btn:hover {
    transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ================================
   KIOSK IMAGE SYSTEM (PORTRAIT UI)
   ================================ */

.image-full,
.image-grid,
.image-compare {
  margin: 64px 0;
}

/* MAIN KIOSK SCREEN WRAPPER */
.kiosk-frame {
  width: 100%;
  max-width: 520px;              /* key: controls size on desktop */
  margin: 0 auto;

  background: white;
  padding: 14px;

  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* ACTUAL KIOSK IMAGE */
.kiosk-frame img {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 14px;

  /* IMPORTANT: prevents zooming/cropping */
  object-fit: contain;
}

/* OPTIONAL: LARGE FULL SECTION IMAGE (FLOW / DIAGRAMS) */
.image-full img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;

  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* GRID FOR MULTIPLE SCREENS */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.image-grid .kiosk-frame {
  max-width: 100%;
}

/* BEFORE / AFTER COMPARISON */
.image-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.image-compare .kiosk-frame {
  max-width: 100%;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== STAGGER OPTION (for grids) ===== */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }



/* =========================
   TRAINER CASE STUDY (FINAL)
   ========================= */

  /* =========================
   GLOBAL
   ========================= */

body {
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

/* =========================
   CONTAINER (FIXES LEFT ISSUE)
   ========================= */

.case-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================
   HERO
   ========================= */

.trainer-hero {
  padding-top: 40px;
  padding-bottom: 80px;
}

/* TOP ROW */
.trainer-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

/* BACK LINK (HOVER LINE) */
.trainer-back-link {
  font-size: 15px;
  color: #2f2f2f;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.trainer-back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #944454;
  transition: width 0.3s ease;
}

.trainer-back-link:hover::after {
  width: 100%;
}

/* META */
.trainer-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* GRID */
.trainer-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: start;
}

/* LEFT CONTENT */
.trainer-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.trainer-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 520px;
}

/* BUTTON */
.trainer-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 24px;
  background: #8c9870;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trainer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* METRICS */ 
.trainer-metrics {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 20px;

    margin-left: 100px;      /* pushes it to the right */
  max-width: 200px;       /* keeps it from stretching too wide */
}

.trainer-metric h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.trainer-metric p {
  font-size: 14px;
  color: #777;
  max-width: 220px;
}

/* EYEBROW */
.trainer-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #8c9870;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

/* =========================
   IMAGE SYSTEM (WEB)
   ========================= */

.trainer-full-image,
.trainer-grid {
  margin: 64px 0;
}

.trainer-full-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* GRID */
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 100px auto;
}

.trainer-grid img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trainer-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   SECTIONS
   ========================= */

.trainer-section {
  margin-top: 100px;
  max-width: 720px;
}

.trainer-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
}

.trainer-section p {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================
   DECISIONS
   ========================= */

.trainer-decision {
  margin-top: 40px;
}

.trainer-decision h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.trainer-decision p {
  font-size: 15px;
  color: #666;
}

/* =========================
   CTA
   ========================= */

.trainer-cta {
  text-align: center;
  padding-top: 60px;
}

.trainer-cta a {
  text-decoration: none;
  color: #8c9870;
}

/* =========================
   SCROLL ANIMATIONS
   ========================= */

.trainer-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.trainer-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {

  .trainer-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trainer-metrics {
    flex-direction: row;
    justify-content: space-between;
  }

  .trainer-grid {
    grid-template-columns: 1fr;
  }
}

Brand Identity CSS

/* HERO WRAPPER */
.project-hero {
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* BACK LINK */
.project-hero__top {
  margin-bottom: 60px;
}

.back-link {
  position: relative;
  font-size: 15px;
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 500;
}

/* underline hover */
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #944454;
  transition: width 0.3s ease;
}

.back-link:hover::after {
  width: 100%;
}

/* GRID */
.project-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.project-hero__left h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 10px 0 20px;
}

.project-hero__left .subhead {
  margin-bottom: 30px;
  line-height: 1.7;
}

/* RIGHT SIDE (STATS) */
.project-hero__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stat h3 {
  font-size: 36px;
  margin: 0;
}

.stat p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}



body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #fff;
  color: #1a1a1a;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px;
}

/* TYPOGRAPHY */
h1 {
  font-size: 56px;
  font-family: "Playfair Display", serif;
  margin: 10px 0;
}

h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
}

h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.7;
}

.subhead {
  max-width: 720px;
  font-size: 18px;
  color: #555;
}

/* HERO */
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8f6a;
  font-weight: 500;
  margin-bottom: 25px;
}

.tagline {
  margin-top: 24px;
  font-size: 22px;
  font-style: italic;
  color: #2f3e2f;
}

/* SECTIONS */
.section {
  margin-top: 100px;
  max-width: 820px;
}

/* CARDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* COLOR SYSTEM */
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.color {
  background: white;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.swatch {
  height: 70px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* IMAGE SYSTEM (IMPORTANT FIX) */
.media {
  width: 100%;
  aspect-ratio: 4 / 3;   /* keeps box consistent */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* KEY FIX */
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* keeps full image visible */
}


/* GRID MEDIA */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* TAGLINE BOX */
.tagline-box {
  font-size: 26px;
  font-style: italic;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* NOTE */
.note {
  font-size: 13px;
  color: #888;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GRID LAYOUT */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* LABEL */
.logo-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 500;
}

/* FIXED IMAGE BOX */
.logo-box {
  width: 100%;
  aspect-ratio: 1 / 1; /* keeps all boxes perfectly equal */
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* IMAGE FIT */
.logo-box img {
  width: 80%;
  height: 80%;
  object-fit: contain; /* keeps full logo visible */
}



/* =========================
   SOCIAL CASE STUDY
   ========================= */

.social-hero {
  padding: 40px 0 80px;
}

.social-hero__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.social-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.social-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
}

.social-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 72px);
}

.social-hero__desc {
  font-size: 18px;
  color: #555;
  max-width: 520px;
}

/* METRICS */
.social-metrics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* FULL IMAGE */
.social-full img {
  width: 100%;
  border-radius: 16px;
  margin: 60px 0;
}

/* SECTION */
.social-section {
  max-width: 720px;
  margin: 100px 0;
}

.social-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.social-section p {
  font-size: 17px;
  color: #444;
}

/* GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.social-grid img {
  width: 100%;
  border-radius: 12px;
}

/* VIDEO */
.social-video {
  display: flex;
  justify-content: left;
  margin: 60px 0;
}

.social-video video {
  width: 100%;
  max-width: 420px;   /* controls size */
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* BEFORE AFTER */
.social-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.social-compare img {
  width: 100%;
  border-radius: 12px;
}

/* CARDS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .social-hero__grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-compare {
    grid-template-columns: 1fr;
  }
}

/* =========================
   INSTAGRAM CAROUSEL
   ========================= */

/* =========================
   CAROUSEL SECTION
   ========================= */

.social-carousel-section {
  margin: 100px 0;
}

.carousel-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.carousel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.carousel-header p {
  font-size: 17px;
  color: #555;
}

/* =========================
   CAROUSEL CORE
   ========================= */

.social-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 60px; /* space for arrows */

  /* PEEK EFFECT */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* REMOVE SCROLLBAR */
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  scrollbar-width: none;
}

/* POSTS */
.carousel-track img {
  flex: 0 0 auto;
  width: 240px;
  height: 300px;
  object-fit: cover;

  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.carousel-track img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   ARROWS
   ========================= */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  background: white;
  border: 3px solid rgba(0,0,0,0);
  width: 44px;
  height: 44px;
  border-radius: 50%;

  cursor: pointer;
  font-size: 18px;

  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #944454;
  color: white;
}

/* POSITION */
.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}


/* =========================
   SIMPLE CASE STUDY
   ========================= */

.simple-hero {
  padding: 40px 0 60px;
}

.simple-hero__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.simple-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.simple-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 64px);
}

.simple-desc {
  font-size: 18px;
  color: #555;
  max-width: 520px;
}

/* IMAGE */
.simple-image {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.simple-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* SECTIONS */
.simple-section {
  max-width: 720px;
  margin: 100px 0;
}

.simple-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 16px;
}

.simple-section p {
  font-size: 17px;
  color: #444;
}

/* LIST */
.simple-list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.simple-list h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .simple-hero__top {
    flex-direction: column;
    gap: 20px;
  }
}