/* ================================
   AIYANNA LANDING PAGE
================================ */

:root {
  --eggshell: #F0EAD6;
  --indigo: #00416A;
  --ink: #151515;
  --muted: rgba(21, 21, 21, 0.65);
  --line: rgba(21, 21, 21, 0.12);
  --soft-white: #F8F6EF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  background: var(--soft-white);
  color: var(--ink);
}

/* CLICKABLE SERVICE DEFINITIONS */

.services-list {
  display: grid;
  gap: 8px;
}

.services-list details {
  max-width: 320px;
}

.services-list summary {
  list-style: none;
  cursor: pointer;
  width: fit-content;
}

.services-list summary::-webkit-details-marker {
  display: none;
}

.services-list summary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.35;
  color: var(--ink);
}

.services-list summary em {
  color: var(--muted);
}

.services-list details p {
  margin-top: 8px;
  margin-bottom: 10px;
  max-width: 280px;

  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.services-list summary:hover {
  opacity: 0.65;
}

.impact-line {
  margin-top: 28px;
  max-width: 520px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.45;
  font-style: italic;
  color: var(--muted);
}

/* ================================
   STICKY HEADER
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  width: 100%;
  height: 92px;
  padding: 0 clamp(28px, 8vw, 300px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(248, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.site-logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.site-nav a:hover {
  color: var(--indigo);
}

.site-nav .script-link {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ================================
   MAIN LANDING
================================ */

.landing-page {
  min-height: calc(100vh - 92px);
  padding: clamp(200px, 12vh, 150px) clamp(28px, 8vw, 300px) 80px;
}

/* HERO TEXT */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr;
  gap: clamp(30px, 6vw, 110px);
  align-items: start;

  margin-bottom: clamp(110px, 18vh, 190px);
}

.hero-grid h1 {
  font-size: clamp(28px, 2.3vw, 44px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* INTRO SECTION */
.intro-section {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.intro-copy p {
  max-width: 570px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.services-list {
  padding-top: 2px;
}

.services-list p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.services-list em {
  font-style: italic;
  color: var(--muted);
}

/* FEATURE IMAGE */
.feature-card {
  display: block;
  text-decoration: none;
}

.feature-image {
  width: 100%;
  aspect-ratio: 1 / 1.18;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("work_imgs/EW_index_page.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.feature-card:hover .feature-image {
  transform: translateY(-5px);
  filter: brightness(1.04);
}

.feature-image span {
  font-family: "Ballet", cursive;
  font-size: clamp(90px, 9vw, 150px);
  line-height: 1;
  color: var(--eggshell);
}

/* ================================
   FOOTER
================================ */

.site-footer {
  padding: 36px clamp(28px, 8vw, 300px) 30px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;

  background: var(--soft-white);
  color: var(--ink);
}

.site-footer p,
.site-footer a {
  font-size: 14px;
  color: var(--ink);
}

.footer-bold {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 58px);
}

.footer-nav a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover,
.footer-note a:hover {
  color: var(--indigo);
}

.footer-note {
  text-align: right;
}

.footer-note a {
  text-underline-offset: 4px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .site-header,
  .landing-page,
  .site-footer {
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 70px;
  }

  .intro-section {
    grid-template-columns: 1fr 0.8fr;
  }

  .feature-card {
    grid-column: 1 / -1;
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 86px;
    padding-top: 24px;
    padding-bottom: 24px;

    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .site-nav {
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .site-nav a {
    font-size: 12px;
  }

  .landing-page {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 90px;
  }

  .hero-grid h1 {
    font-size: clamp(34px, 9vw, 58px);
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy p {
    font-size: 18px;
  }

  .feature-card {
    max-width: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .site-header,
  .landing-page,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-logo {
    font-size: 18px;
  }

  .site-nav {
    justify-content: space-between;
  }

  .hero-grid h1 {
    font-size: 36px;
  }

  .feature-image span {
    font-size: 96px;
  }
}

/* ================================
   WORK PAGE
================================ */

.work-page {
  min-height: calc(100vh - 92px);
  padding: clamp(84px, 12vh, 145px) clamp(28px, 8vw, 300px) 90px;
  background: var(--soft-white);
}

/* Heading + filters */
.work-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(70px, 10vh, 120px);
}

.work-heading h1 {
  font-size: clamp(34px, 4.4vw, 76px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.work-filters {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-btn {
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 0 0 5px;
  cursor: pointer;

  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.filter-btn:hover,
.filter-btn.active {
  border-bottom-color: var(--ink);
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(70px, 8vw, 115px) clamp(24px, 2vw, 34px);
}

.work-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.work-card.is-hidden {
  display: none;
}

.work-image {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  margin-bottom: 22px;
  background-color: #DDD4C3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.work-card:hover .work-image {
  transform: translateY(-5px);
  filter: brightness(0.96);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 22px;
}

.work-meta p {
  font-size: 15px;
  line-height: 1.2;
}

.work-meta p:last-child {
  text-align: right;
  font-family: Georgia, "Times New Roman", serif;
}

.work-meta em {
  font-style: italic;
}

/* ================================
   TEMPORARY PLACEHOLDER IMAGES
   Replace these with your real images.
================================ */

.image-branding-01 {
    background-image: url("work_imgs/image-branding-01.png");
}

.image-branding-02 {
  background-image: url("work_imgs/image-branding-02.png");
}

.image-branding-03 {
  background-image: url("work_imgs/image-branding-03.png");
}

.image-branding-04 {
  background-image: url("work_imgs/image-branding-04.png");
}

.image-web-01 {
  background-image: url("work_imgs/image-web-01.png");
}

.image-web-02 {
  background-image: url("work_imgs/image-web-02.png");
}

.image-web-03 {
  background-image: url("work_imgs/image-web-03.jpg");
}

.image-web-04 {
  background-image: url("work_imgs/image-web-04.jpg");
}

.image-web-05 {
  background-image: url("work_imgs/image-web-05.png");
}

.image-narrative-01 {
  background-image: url("work_imgs/image-narrative-01.png");
}

.image-narrative-02 {
  background-image: url("work_imgs/image-narrative-02.png");
}

.image-narrative-03 {
  background-image: url("work_imgs/image-narrative-03.png");
}

.image-narrative-04 {
  background-image: url("work_imgs/image-narrative-04.png");
}

/* ================================
   RESPONSIVE WORK PAGE
================================ */

@media (max-width: 1100px) {
  .work-page {
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
  }

  .work-heading {
    grid-template-columns: 1fr;
  }

  .work-filters {
    justify-content: flex-start;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .work-page {
    padding-top: 70px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .work-meta {
    gap: 18px;
  }

  .work-meta p {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .work-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .work-heading h1 {
    font-size: 38px;
  }

  .work-filters {
    gap: 16px;
  }

  .filter-btn {
    font-size: 11px;
  }
}

/* ================================
   PROJECT DETAIL PAGE
================================ */

.project-page {
  background: var(--soft-white);
  color: var(--ink);
  padding: clamp(90px, 13vh, 150px) clamp(28px, 8vw, 300px) 90px;
}

/* Top project section */
.project-intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(80px, 12vw, 180px);
  align-items: start;
  margin-bottom: clamp(80px, 12vh, 140px);
}

.project-info h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}

.project-info ul {
  list-style: none;
}

.project-info li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-style: italic;
  line-height: 1.8;
}

.project-description {
  max-width: 560px;
}

.project-description p {
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 34px;
}

/* Main feature image */
.project-feature {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.project-feature-image {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  margin: 0;
  background: #f8f6ef;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery */
.project-gallery {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.project-gallery.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px);
}

.project-gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: #f8f6ef;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Back link */
.back-section {
  padding: clamp(70px, 10vh, 120px) 0 30px;
  text-align: center;
}

.back-section a {
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-underline-offset: 5px;
}

.back-section a:hover {
  color: var(--indigo);
}

/* Temporary project placeholder images */
.project-img-01 {
  background:
    linear-gradient(rgba(20, 20, 20, 0.15), rgba(20, 20, 20, 0.15)),
    linear-gradient(135deg, #6f6d4a, #393b25);
}

.project-img-02 {
  background:
    radial-gradient(circle at 62% 42%, rgba(248, 246, 239, 0.95) 0 12%, transparent 13%),
    linear-gradient(135deg, #d8d0c1, #f8f6ef);
}

.project-img-03 {
  background:
    linear-gradient(135deg, #312215, #89765c 52%, #d6c7b2);
}

.project-img-04 {
  background:
    linear-gradient(135deg, #4f5133, #222414);
}

.project-img-05 {
  background:
    linear-gradient(135deg, #f8f6ef, #c7c0b0 48%, #6f6d4a);
}

/* Responsive project page */
@media (max-width: 1100px) {
  .project-page {
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
  }

  .project-intro {
    gap: 70px;
  }
}

@media (max-width: 800px) {
  .project-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .project-gallery.two-col {
    grid-template-columns: 1fr;
  }

  .project-feature-image {
    aspect-ratio: 1.2 / 1;
  }
}

@media (max-width: 430px) {
  .project-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
  }

  .project-description p {
    font-size: 16px;
  }

  .back-section a {
    font-size: 26px;
  }
}

/* ================================
   ABOUT PAGE
================================ */

.about-page {
  background: var(--soft-white);
  color: var(--ink);
  padding: clamp(70px, 10vh, 120px) clamp(28px, 8vw, 300px) 90px;
}

/* ABOUT INTRO */
.about-intro {
  /* border-top: 1px solid var(--ink); */
  padding-top: clamp(48px, 7vh, 80px);

  display: grid;
  grid-template-columns: 1.2fr 0.75fr;
  gap: clamp(70px, 10vw, 170px);
  align-items: start;

  margin-bottom: clamp(110px, 16vh, 190px);
}

.about-copy h1 {
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.about-copy p {
  max-width: 650px;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.about-note {
  padding-top: 10%;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--muted);
}

/* Replace this background with your own image later */
.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("work_imgs/headshott.png");
  background-size: cover;
  background-position: center;
}

.about-help-block {
  margin-top: clamp(48px, 7vw, 90px);
  max-width: 620px;
}

.about-help-block h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-help-block p {
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.45;
  letter-spacing: 0.01em;
}


/* BIG CTA */
.about-big-cta {
  margin-bottom: clamp(110px, 16vh, 180px);
}

.about-big-cta h2 {
  max-width: 1100px;
  margin: 0 auto;

  font-size: clamp(42px, 5vw, 88px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.about-big-cta h2 span {
  display: block;
}

.about-big-cta a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.2vw, 22px);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  text-underline-offset: 4px;
  margin: 0 14px;
}

.about-big-cta a:hover {
  color: var(--indigo);
}

/* APPROACH */
.about-approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;

  margin-bottom: clamp(100px, 15vh, 170px);
}

.about-approach > div:first-child p {
  max-width: 560px;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.approach-list {
  display: grid;
  gap: 42px;
}

.approach-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.4vw, 24px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
}

.approach-list p {
  max-width: 620px;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* SERVICES INTRO */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;

  margin-bottom: 54px;
}

.services-intro h2 {
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-intro p {
  max-width: 660px;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* SERVICES ROWS */
.services-list-page {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);

  padding: clamp(54px, 8vh, 80px) 0;
  border-bottom: 1px solid var(--ink);
}

.service-row h3 {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-content p {
  max-width: 690px;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 46px;
}

.service-content ul {
  list-style: none;
  padding-left: clamp(24px, 3vw, 58px);
}

.service-content li {
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ACTIVE NAV UNDERLINE */
.site-nav a.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* ================================
   RESPONSIVE ABOUT PAGE
================================ */

@media (max-width: 1100px) {
  .about-page {
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
  }

  .about-intro,
  .about-approach,
  .services-intro,
  .service-row {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  .about-intro,
  .about-approach,
  .services-intro,
  .service-row {
    grid-template-columns: 1fr;
  }

  .about-intro {
    margin-bottom: 100px;
  }

  .about-big-cta h2 {
    text-align: left;
  }

  .service-content ul {
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .about-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 58px;
  }

  .about-copy h1,
  .services-intro h2,
  .service-row h3 {
    letter-spacing: 0.02em;
  }

  .about-big-cta h2 {
    font-size: 38px;
  }

  .about-big-cta a {
    display: inline-block;
    margin: 8px 0;
  }
}

/* ================================
   CONTACT / SAY HI PAGE
================================ */

.contact-page {
  background: var(--soft-white);
  color: var(--ink);
  padding: clamp(90px, 12vh, 150px) clamp(28px, 8vw, 300px) 100px;
}

/* Intro layout */
.contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;

  padding-bottom: clamp(80px, 10vh, 130px);
  border-bottom: 1px solid var(--ink);
}

.contact-intro h1 {
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-copy {
  max-width: 660px;
}

.contact-copy p {
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.contact-copy a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.contact-copy a:hover {
  color: var(--indigo);
}

/* Form section */
.contact-form-section {
  padding-top: clamp(80px, 10vh, 130px);
}

.contact-form {
  width: min(100%, 860px);
  margin: 0 auto;
}

.form-field {
  margin-bottom: 30px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;

  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  border: 1px solid rgba(21, 21, 21, 0.28);
  background: transparent;
  color: var(--ink);

  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: 15px;

  padding: 18px 20px;
  outline: none;

  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(21, 21, 21, 0.38);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
}

.form-submit {
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--soft-white);

  padding: 18px 32px;
  cursor: pointer;

  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: background-color 0.25s ease, color 0.25s ease;
}

.form-submit:hover {
  background: transparent;
  color: var(--ink);
}

/* Hidden spam field */
.hidden-field {
  display: none;
}

/* Active script nav */
.site-nav .script-link.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* ================================
   RESPONSIVE CONTACT PAGE
================================ */

@media (max-width: 1100px) {
  .contact-page {
    padding-left: clamp(24px, 5vw, 80px);
    padding-right: clamp(24px, 5vw, 80px);
  }
}

@media (max-width: 800px) {
  .contact-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .contact-page {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
  }

  .contact-intro h1 {
    font-size: 38px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 16px;
  }

  .form-submit {
    width: 100%;
  }
}

/* ================================
   PROJECT PAGE IMAGES
================================ */

/* SOL STUDIO */
.project-sol-studio .project-img-01 {
  background-image: url("work_imgs/sol-studio-01.png");
}

.project-sol-studio .project-img-02 {
  background-image: url("work_imgs/sol-studio-02.png");
}

.project-sol-studio .project-img-03 {
  background-image: url("work_imgs/sol-studio-03.png");
}

.project-sol-studio .project-img-04 {
  background-image: url("work_imgs/sol-studio-04.png");
}

.project-sol-studio .project-img-05 {
  background-image: url("work_imgs/sol-studio-05.png");
}


/* OLYMPIA USA */
.project-olympia-usa .project-img-01 {
  background-image: url("work_imgs/olympia-usa-01.png");
}

.project-olympia-usa .project-img-02 {
  background-image: url("work_imgs/olympia-usa-02.png");
}

.project-olympia-usa .project-img-03 {
  background-image: url("work_imgs/olympia-usa-03.png");
}

.project-olympia-usa .project-img-04 {
  background-image: url("work_imgs/olympia-usa-04.png");
}

.project-olympia-usa .project-img-05 {
  background-image: url("work_imgs/olympia-usa-05.png");
}


/* ELSEWHERE, WITHIN */
.project-elsewhere-within .project-img-01 {
  background-image: url("work_imgs/elsewhere-within-01.png");
}

.project-elsewhere-within .project-img-02 {
  background-image: url("work_imgs/elsewhere-within-02.png");
}

.project-elsewhere-within .project-img-03 {
  background-image: url("work_imgs/elsewhere-within-03.png");
}

.project-elsewhere-within .project-img-04 {
  background-image: url("work_imgs/elsewhere-within-04.png");
}

.project-elsewhere-within .project-img-05 {
  background-image: url("work_imgs/elsewhere-within-05.png");
}

/* ================================
   PLAYPALS 3-COLUMN MEDIA SECTION
================================ */

.playpals-media-three {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.playpals-media-column {
  width: 100%;
}

/* Shared carousel frame */
.media-carousel {
  position: relative;
  width: 100%;
  background: #f8f6ef;
  overflow: visible;
  padding-bottom: 34px;
}

/* Reel size: Instagram Reel ratio */
.reel-carousel {
  aspect-ratio: 9 / 16;
}

/* Image carousel size: 4:5 ratio */
.image-carousel {
  aspect-ratio: 4 / 5;
}

/* Slides */
.media-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 34px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.media-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.media-slide img,
.media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--soft-white);
  cursor: pointer;
  padding: 0;
  opacity: 1;
}

.dot.active {
  background: var(--ink);
  transform: scale(1.15);
}

.media-caption {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1000px) {
  .playpals-media-three {
    grid-template-columns: 1fr 1fr;
  }

  .playpals-media-column:first-child {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .playpals-media-three {
    grid-template-columns: 1fr;
  }

  .playpals-media-column:first-child {
    max-width: none;
  }

  .reel-carousel {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ================================
   LANI MEDIA HOUSE MEDIA SECTION
================================ */

.lani-media-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 86px);
}

/* Left video */
.lani-video-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f8f6ef;
  overflow: hidden;
}

.lani-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right carousel */
.lani-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f8f6ef;
  overflow: visible;
  padding-bottom: 34px;
}

.lani-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 34px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.lani-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.lani-slide img,
.lani-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reuse same dot style */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--soft-white);
  cursor: pointer;
  padding: 0;
  opacity: 1;
}

.dot.active {
  background: var(--ink);
  transform: scale(1.15);
}

.media-caption {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

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

/* ================================
   SOL STUDIO TWO-CAROUSEL SECTION
================================ */

.sol-carousel-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(22px, 2.5vw, 36px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.sol-carousel-column {
  width: 100%;
}

/* Shared carousel frame */
.sol-carousel {
  position: relative;
  width: 100%;
  background: #f8f6ef;
  overflow: visible;
  padding-bottom: 36px;
}

/* Left landscape carousel */
.sol-landscape-carousel {
  aspect-ratio: 16 / 10;
}

/* Right portrait/brand kit carousel */
.sol-vertical-carousel {
  aspect-ratio: 4 / 5;
}

/* Slides */
.sol-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 36px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.sol-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Make landscape images fill their frame more */
.sol-landscape-carousel .sol-slide img {
  object-fit: cover;
}

/* Keep vertical/brand kit images contained */
.sol-vertical-carousel .sol-slide img {
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .sol-carousel-section {
    grid-template-columns: 1fr;
  }

  .sol-landscape-carousel {
    aspect-ratio: 16 / 10;
  }

  .sol-vertical-carousel {
    aspect-ratio: 4 / 5;
  }
}

/* Dots - matches carousel style throughout site */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--soft-white);
  cursor: pointer;
  padding: 0;
  opacity: 1;
}

.dot.active {
  background: var(--ink);
  transform: scale(1.15);
}

.media-caption {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .sol-carousel-section {
    grid-template-columns: 1fr;
  }

  .sol-landscape-carousel {
    aspect-ratio: 16 / 10;
  }

  .sol-vertical-carousel {
    aspect-ratio: 4 / 5;
  }
}

/* ================================
   OUTERRA 3-COLUMN SECTION
================================ */

.mi-dulce-three-section {
  width: 100%;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.65fr) minmax(0, 0.65fr);
  gap: clamp(14px, 1.6vw, 24px);
  align-items: start;

  margin-bottom: clamp(48px, 7vw, 86px);
}

.mi-dulce-media-column {
  width: 100%;
  min-width: 0;
}

/* Shared media frames */
.mi-dulce-video-frame,
.mi-dulce-image-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  background: #f8f6ef;
  overflow: hidden;
}

/* First column: larger landscape video */
.mi-dulce-media-column:first-child .mi-dulce-video-frame {
  aspect-ratio: 16 / 9;
}

/* Second and third columns: smaller square blocks */
.mi-dulce-media-column:nth-child(2) .mi-dulce-video-frame,
.mi-dulce-media-column:nth-child(3) .mi-dulce-image-carousel {
  aspect-ratio: 1 / 1;
}

/* Videos */
.mi-dulce-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel */
.mi-dulce-image-carousel {
  overflow: visible;
  padding-bottom: 36px;
}

.mi-dulce-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 36px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-dulce-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

/* Responsive */
@media (max-width: 1000px) {
  .mi-dulce-three-section {
    grid-template-columns: 1fr 1fr;
  }

  .mi-dulce-media-column:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .mi-dulce-three-section {
    grid-template-columns: 1fr;
  }

  .mi-dulce-media-column:first-child {
    grid-column: auto;
  }
}

/* ================================
   PROJECT FEATURE VIDEO
================================ */

.project-feature-video {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  margin: 0;
  background: #f8f6ef;
  overflow: hidden;
}

.project-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Crop black recording bar on Sunday Servings video only */
.project-sunday-servings .project-feature-video {
  overflow: hidden;
}

.project-sunday-servings .project-feature-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-28px) scale(1.035);
  transform-origin: center top;
}

.granos-video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.granos-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sound-toggle {
  position: absolute;
  right: 80px;
  bottom: 8px;
  z-index: 5;

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.88);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.sound-toggle:hover {
  transform: scale(1.06);
  background: rgba(21, 21, 21, 1);
}

.sound-svg {
  width: 29px;
  height: 29px;
}

.speaker-shape {
  fill: var(--soft-white);
}

.mute-x,
.sound-wave {
  fill: none;
  stroke: var(--soft-white);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ================================
   PROJECT WRITING / ESSAY SECTION
================================ */

.project-writing-section {
  border-top: 1px solid var(--ink);
  padding-top: clamp(54px, 8vh, 90px);
  margin-top: clamp(70px, 10vh, 120px);
  margin-bottom: clamp(80px, 12vh, 140px);

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.project-writing-heading h2 {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-writing-text {
  max-width: 760px;
}

.project-writing-text p {
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.65;
  letter-spacing: 0.015em;
  margin-bottom: 30px;
}

.project-writing-text h3 {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 58px 0 24px;
}

.project-writing-text em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

/* Responsive */
@media (max-width: 800px) {
  .project-writing-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-writing-text {
    max-width: none;
  }
}

/* ================================
   WRITING JUMP LINKS
================================ */

html {
  scroll-behavior: smooth;
}

.writing-jump-links {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.writing-jump-links a {
  color: var(--ink);
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1vw, 17px);
  font-style: italic;
  line-height: 1.25;

  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.writing-jump-links a:hover {
  opacity: 1;
  transform: translateX(4px);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Prevent sticky header from covering jump target */
.project-writing-text h3 {
  scroll-margin-top: 120px;
}
.project-writing-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.project-info ul a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-info ul a:hover {
  opacity: 0.65;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  width: 22px;
  height: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}