:root {
  --bg: #fdf4ff;
  --script-pink: #7c2133;
  --text-dark: #2e2016;
}

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

/* ---------- BODY ---------- */
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text-dark);
  font-family: "Playfair Display", "Times New Roman", serif;
}

/* ---------- HERO / TITLE ---------- */

.hero-header {
  text-align: center;
  margin-bottom: 0.2rem;
}

.hero-name {
  font-family: "Pinyon Script", cursive; /* ✅ ONLY CHANGE YOU CARE ABOUT */
  font-size: 9em;
  color: var(--script-pink);
  letter-spacing: 0.03em;
  line-height: 1;
  transform: translateY(20px); /* small downward nudge */
}

.hero-tagline {
  margin-top: 0.4rem;
  font-family: "Inter", sans-serif;
   font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.3rem);
}

/* ---------- CAMERA ---------- */

.camera-wrapper {
  position: relative;
  max-width: 50%;
  margin: 0 auto;
  transform: translateY(-250px);
}

.camera-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
  cursor: pointer;
}

/* ---------- CLICK ME (camera screen) ---------- */

.camera-screen-click {
  position: absolute;
  left: 33%;
  top: 53%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  color: var(--script-pink);
  cursor: pointer;
  user-select: none;
}

/* ---------- SD CARDS ---------- */

.sd-link {
  position: absolute;
  width: 120px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  font-style: italic;

  opacity: 0;
  pointer-events: none;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);

  transition:
    opacity 0.35s ease-out,
    top 0.7s cubic-bezier(0.2, 1, 0.2, 1),
    left 0.7s cubic-bezier(0.2, 1, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 1, 0.2, 1);
}

.sd-link img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.sd-link span {
  display: block;
  margin-top: 0.2rem;
}

.sd-link:hover span {
  text-decoration: underline;
}

/* ---------- SD OPEN STATE ---------- */

.camera-wrapper.sd-open .sd-link {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.camera-wrapper.sd-open .sd-about {
  top: 40%;
  left: -20%;
  transform: rotate(-14deg);
}

.camera-wrapper.sd-open .sd-contact {
  top: 40%;
  left: 100%;
  transform: rotate(14deg);
}

.camera-wrapper.sd-open .sd-blog {
  top: 70%;
  left: 10%;
  transform: rotate(-10deg);
}

.camera-wrapper.sd-open .sd-campaigns {
  top: 70%;
  left: 75%;
  transform: rotate(10deg);
}

/* ---------- FOOTER ---------- */

footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ---------- MOBILE ---------- */


.chat-image {
  max-width: 320px;
  border-radius: 2rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  display: block;
}
/* ---------- CONTACT PAGE (UPDATED) ---------- */

body.contact-page {
  background-color: #ffffeb;
  margin: 0;
  padding: 0;
  color: #111111;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* smaller gap → closer together */
  padding: 60px 80px;
  box-sizing: border-box;

  transform: translateY(-40px); /* pulls entire layout upward */
}

/* LEFT SIDE */

.contact-left {
  max-width: 600px; /* slightly larger */
}

.contact-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5.5vw, 4.6rem); /* bigger */
  line-height: 1.08;
  margin: 0 0 20px 0;
}

.contact-subcopy {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 440px;
  margin: 0;
}

/* RIGHT SIDE */

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 40px; /* slightly larger grouping spacing */
  min-width: 260px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem; /* bigger */
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 4px 0;
}

.contact-heading-small {
  font-family: "Playfair Display", serif;
  font-size: 1rem; /* bigger */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 2px 0;
}

.contact-email {
  font-size: 1.05rem; /* bigger */
  text-decoration: none;
  color: #111111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2px;
  width: fit-content;
}

.contact-email:hover {
  border-bottom-color: #111111;
}

.contact-phone {
  font-size: 1.05rem; /* bigger */
  margin: 0;
  opacity: 0.9;
}

.contact-social-link {
  font-size: 1.05rem; /* bigger */
  text-decoration: none;
  color: #111111;
  position: relative;
  width: fit-content;
}

.contact-social-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  transform-origin: left;
  transform: scaleX(0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-social-link:hover::after {
  transform: scaleX(1);
  background: #111111;
}


/* ---------- SPOLETO LAYOUT (VERTICAL INSTA STYLE) ---------- */

.spoleto-block {
  margin-bottom: 6rem;
}

/* big title + key skills at top */
.spoleto-title {
  font-size: 2.5rem;
  text-align: left;      /* change to center if you want */
  margin-bottom: 0.25rem;
}

.spoleto-skills {
  text-align: left;      /* change to center if you want */
  margin-bottom: 2rem;
}

/* two-column area: text left, vertical reel right */

.spoleto-main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) auto;
  gap: 2.5rem;
  align-items: flex-start;
}

.spoleto-block .campaign-text h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.spoleto-block .campaign-text ul {
  padding-left: 1.2rem;
  line-height: 1.6;
}

/* vertical hero reel on the right */

.spoleto-hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;         /* center the vertical reel */
}

.spoleto-hero {
  width: 260px;                /* vertical “phone” width */
  max-width: 100%;
  aspect-ratio: 9 / 16;        /* insta reel ratio */
  border-radius: 22px;
  object-fit: cover;
  display: block;
  border: 1px solid #eee;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

/* vertical gallery tiles under Spoleto */

.spoleto-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px)); /* 2 columns of vertical cards */
  gap: 1.2rem;
  justify-content: center;     /* center the grid under the case study */
}

.gallery-item {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 6px;
  overflow: hidden;
  position: relative;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* optional: keep video tiles feeling clickable */
.gallery-item.video {
  cursor: pointer;
}

/* stack nicely on mobile */

/* @media (max-width: 800px) {
  .spoleto-main {
    grid-template-columns: 1fr;
  }

  .spoleto-hero-wrap {
    margin-top: 1.5rem;
  }

  .spoleto-title,
  .spoleto-skills {
    text-align: left;
  }

  .spoleto-gallery {
    grid-template-columns: minmax(0, 260px);
  }
} */

/* ---------- CAMPAIGNS PAGE BASE STYLES ---------- */

.campaigns-page {
  padding: 5rem 2rem 7rem;
}

.campaigns {
  max-width: 1100px;
  margin: 0 auto;
}

.campaigns-intro {
  margin-bottom: 4rem;
}

.campaigns-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.campaigns-intro p {
  max-width: 520px;
  line-height: 1.6;
}

/* each campaign block */

.campaign-block {
  margin-bottom: 6rem;
}

.campaign-block h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.campaign-skills {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.infographic-stats{
  display:flex;
  justify-content: space-evenly;
  align-items: center;
}

.stat{
  text-align: center;
}

.big-number{
  font-family:Impact;
  font-size:3em;
}

/* ---------- ELF ON BROADWAY (LAYOUT TWEAKS) ---------- */

/* Move the Elf hero image up so it aligns with the text */
.campaign-block.elf-block .spoleto-hero-wrap {
  margin-top: -150px;   /* change to -60px or -100px if needed */
}

/* Keep gallery spacing consistent */
.elf-block .spoleto-gallery {
  margin-top: 2rem;
}


/* ELF image placeholders (your small blue/green boxes for Elf) */
.campaign-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.image-placeholder {
  height: 120px;
  border-radius: 16px;
  border: 1px dashed #c8c8c8;
  background: #f7f7f7;
  font-size: 0.75rem;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---------- ELF ON BROADWAY (HERO TWEAK) ---------- */
.elf-block .spoleto-hero {
  display: block;
  margin-top: 150px;   /* adjust this value as needed */
}
.farm-landscape-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.farm-landscape {
  width: 720px;              /* adjust if you want */
  max-width: 100%;
  border-radius: 22px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  display: block;
}
/* ---------- F.A.R.M. Cafe bottom layout ---------- */

.farm-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;   /* centers horizontal card with vertical */
  gap: 1.6rem;
  flex-wrap: wrap;       /* keeps things nice on smaller screens */
}

.farm-card {
  width: 260px;              /* base width for vertical card */
  border-radius: 22px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 6px;
  background: #fff;
  overflow: hidden;
  display: block;
}

.farm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* tall vertical */
.farm-card-vertical {
  aspect-ratio: 9 / 16;
}

/* wide horizontal */
.farm-card-horizontal {
  width: 520px;         /* wider card */
  aspect-ratio: 16 / 9;
}
/* ---------- FARM hero alignment tweak ---------- */
.farm-block .spoleto-hero-wrap {
  margin-left: 20rem;   /* adjust to taste */
}
/* ================================
   ABOUT PAGE — SCROLL STORY MODE
================================ */

/* make wrapper tall so scroll can happen */
.chat-wrapper {
  position: relative;
  padding: 40vh 0;
}

/* base chat bubble */
.chat-message {
  position: relative;
  max-width: 720px;
  margin: 0 auto 6rem auto;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.6;
  transition: opacity 0.4s ease;
}

/* left vs right colors stay normal in document flow */
.from-me {
  background: #111;
  color: #fff;
}

.from-them {
  background: #d2e9ff;
  color: #111;
}

/* 🎬 ACTIVE STATE (when GSAP pins to center) */
.chat-message.active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  margin: 0;
}

/* prevent page elements from overlapping */
body.about-page {
  overflow-x: hidden;
}
/* ABOUT SCROLL STAGE — clean centered card */
.chat-message {
  width: min(760px, calc(100vw - 3rem)); /* always centered, never too wide */
  margin: 0 auto;                        /* no weird left/right drift */
  opacity: 0;
  will-change: transform, opacity;
}

.chat-message p { margin: 0; }
.chat-wrapper {
  padding: 55vh 0; /* more breathing room before/after */
}
/* If a message is just an image, don't give it a big bubble background */
.chat-message.is-image {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

    .about-page {
      padding: 4rem 1.5rem 6rem;
      background: #fdf4ff;
    }

    .about-intro {
      max-width: 720px;
      margin: 0 auto 3rem;
    }

    .about-intro h1 {
      font-family: "Parisienne", cursive;
      font-size: 4.5rem;
      color: var(--script-pink);
      letter-spacing: 0.05em;
      margin-bottom: 0.3rem;
    }

    .about-intro p {
      font-size: 1rem;
      font-family: "Playfair Display", serif;
    }

    .chat-wrapper {
      max-width: 800px;
      margin: 4rem auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    #first-message-wrapper{
      height:400px;
      display:flex;
      justify-content: space-evenly;
      align-items: center;
    }

.chat-message {
  position: fixed;
  top:30%;
  display:flex;
  padding: 1.25rem 1.75rem;
  border-radius: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.6;
  background: #111;   /* ← ADD THIS */
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

#headshot{
  top:35%;
}

    .chat-message.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .from-them {
  align-self: flex-start;
  background: #d2e9ff; 
  color: #111;
}

.from-them::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -10px;
  border: 10px solid transparent;
  border-top-color: #d2e9ff; 
}
    .from-me {
      align-self: flex-end;
      background: #111;
      color: #fff;
    }

    .from-me::after {
      content: "";
      position: absolute;
      right: 28px;
      bottom: -10px;
      border: 10px solid transparent;
      border-top-color: #111;
    }

    .chat-image {
      max-width: 300px;
      border-radius: 1.8rem;
      box-shadow: 0 12px 34px rgba(0,0,0,0.15);
      display: block;
    }

    @media screen and (max-width: 900px) {
      .about-page {
        padding: 3rem 1rem 4rem;
      }

      .about-intro,
      .chat-wrapper {
        max-width: 100%;
      }

      .chat-message {
        max-width: 100%;
        font-size: 1.05rem;
      }

        .camera-wrapper {
    width: 100%;
    transform: translateY(0);
  }

    .contact-layout {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px 48px;
    gap: 48px;
    transform: translateY(0);
  }

  .contact-right {
    width: 100%;
  }

    .campaign-block.elf-block .spoleto-hero-wrap {
    margin-top: 0;
  }
    }
  
   