/* ===================================================================
   DEPI ANLE Entertainment, LLC — warm editorial theme
   =================================================================== */

:root {
  --cream:        #f6efe2;
  --sand:         #e7dcc6;
  --ink:          #1d1b16;   /* soft black */
  --ink-soft:     #4a463d;
  --coral:        #e1614a;   /* soft coral accent */
  --emerald:      #1f4d3a;   /* deep emerald */
  --emerald-deep: #163829;
  --white:        #fbf8f1;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  clamp(1.25rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--coral); color: var(--white); }

/* ---------- shared bits ---------- */
.section__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--solid { background: var(--emerald); color: var(--white); }
.btn--solid:hover { background: var(--emerald-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(29,27,22,.35); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--block { width: 100%; padding: 1.05rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--emerald);
  margin-top: 1.75rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 0.4rem 0;
}
.nav.is-scrolled {
  background: rgba(246,239,226,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(29,27,22,.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-main { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: .02em; }
.nav__brand-sub { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .9rem; font-weight: 500; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--coral); transition: width .3s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--emerald); color: var(--white); padding: .55rem 1.1rem; border-radius: 4px; }
.nav__cta:hover { background: var(--emerald-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent; border: none; cursor: pointer;
}
.nav__toggle span { height: 2px; width: 24px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22,29,20,.45) 0%, rgba(22,29,20,.15) 35%, rgba(22,29,20,.75) 100%);
}
.hero__content {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 8vh, 6rem);
  color: var(--cream);
}
.hero__eyebrow {
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); opacity: .85; margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: #f2c9b0; }
.hero__lead {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(246,239,226,.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.25rem; }
.hero__actions .btn--ghost { color: var(--cream); border-color: rgba(246,239,226,.5); }
.hero__actions .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.hero__marquee {
  position: relative;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  border-top: 1px solid rgba(246,239,226,.25);
  border-bottom: 1px solid rgba(246,239,226,.25);
  overflow: hidden;
  background: rgba(22,29,20,.35);
}
.hero__marquee-track {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap;
  padding: .85rem 0;
  animation: marquee 28s linear infinite;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .02em;
}
.hero__marquee-track span:not(:nth-child(even)) { opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =================== ABOUT =================== */
.about { padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 6px; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--coral); color: var(--white);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  padding: .7rem 1.1rem; border-radius: 4px;
  box-shadow: 0 12px 30px rgba(225,97,74,.3);
}
.about__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.about__text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 52ch; }

/* =================== SERVICES =================== */
.services { background: var(--emerald); color: var(--cream); padding: clamp(5rem, 12vh, 9rem) 0; }
.services__head {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem,5vw,4rem); align-items: end;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.services__head .section__label { color: #f2c9b0; }
.services__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem); line-height: 1.1; letter-spacing: -.01em;
  max-width: 18ch; text-wrap: balance;
}
.services__list {
  list-style: none; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
}
.service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid rgba(246,239,226,.18);
  transition: padding-left .35s ease;
}
.services__list .service:last-child { border-bottom: 1px solid rgba(246,239,226,.18); }
.service:hover { padding-left: 1rem; }
.service__num { grid-column: 1; grid-row: 1 / span 2; font-family: var(--font-display); font-size: 1rem; color: #f2c9b0; }
.service__name { grid-column: 2; }
.service__desc { grid-column: 2; }
.service__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.15; margin-bottom: .4rem;
}
.service__desc { color: rgba(246,239,226,.75); max-width: 60ch; }

.services__feature {
  max-width: var(--maxw); margin: clamp(3rem,7vh,5rem) auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; align-items: stretch;
}
.services__feature img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px 0 0 6px; min-height: 320px; }
.services__feature-text {
  background: var(--emerald-deep); padding: clamp(2rem,4vw,3.5rem);
  border-radius: 0 6px 6px 0; display: flex; flex-direction: column; justify-content: center;
}
.services__feature-text h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem,2.6vw,2.2rem); line-height: 1.15; margin-bottom: 1rem;
}
.services__feature-text p { color: rgba(246,239,226,.78); }
.services__list--alt .service { border-top-color: rgba(246,239,226,.18); }

/* =================== EXPERIENCES =================== */
.exp { padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.exp__head { margin-bottom: clamp(2.5rem, 6vh, 4rem); }
.exp__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; letter-spacing: -.01em;
}
.exp__collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.exp__item { position: relative; overflow: hidden; border-radius: 6px; }
.exp__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.exp__item:hover img { transform: scale(1.06); }
.exp__item figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(246,239,226,.92); color: var(--ink);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: .45rem .8rem; border-radius: 3px;
}
.exp__item--tall { grid-row: span 2; }
.exp__item--wide { grid-column: span 2; grid-row: span 2; }
.exp__note { margin-top: 1.5rem; font-size: .82rem; color: var(--ink-soft); font-style: italic; }

/* =================== WHY US =================== */
.why { background: var(--sand); padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.why > .section__label { max-width: var(--maxw); margin: 0 auto 2rem; }
.why__manifesto {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.25rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.why__word {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -.02em; color: var(--ink);
}
.why__word:nth-child(6n+1) { color: var(--emerald); }
.why__word:nth-child(6n+5) { font-style: italic; color: var(--coral); }
.why__dot { font-family: var(--font-display); font-size: clamp(1.5rem,4vw,3rem); color: var(--ink-soft); opacity: .5; }
.why__detail {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.why__detail p { font-size: 1.1rem; color: var(--ink-soft); max-width: 48ch; }

/* =================== CONTACT =================== */
.contact { padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.01em; margin-bottom: 1.75rem;
  text-wrap: balance;
}
.contact__address { font-style: normal; font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 2rem; }
.contact__address strong { color: var(--ink); font-weight: 600; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.contact__form { background: var(--white); padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: 8px; box-shadow: 0 30px 60px rgba(29,27,22,.08); }
.field { margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem .95rem; border: 1px solid var(--sand); border-radius: 4px;
  background: var(--cream); font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(31,77,58,.12);
}
.field textarea { resize: vertical; }
.contact__confirm {
  margin-top: 1.1rem; padding: .9rem 1rem; border-radius: 4px;
  background: rgba(31,77,58,.1); color: var(--emerald); font-size: .9rem; font-weight: 500;
}

/* =================== FOOTER =================== */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3.5rem,8vh,5rem) var(--pad) 0; position: relative; overflow: hidden; }
.footer__top, .footer__mid, .footer__bottom { max-width: var(--maxw); margin: 0 auto; }
.footer__top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,239,226,.15);
}
.footer__brand { display: flex; flex-direction: column; line-height: 1.1; }
.footer__brand-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.footer__brand-sub { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(246,239,226,.6); margin-top: 4px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__links a { font-size: .9rem; color: rgba(246,239,226,.8); }
.footer__links a:hover { color: var(--coral); }
.footer__mid {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem;
  padding: 2.5rem 0;
}
.footer__address { font-style: normal; color: rgba(246,239,226,.7); line-height: 1.7; font-size: .92rem; }
.footer__address a:hover { color: var(--coral); }
.footer__social { display: flex; gap: 1.25rem; }
.footer__social a { font-size: .85rem; color: rgba(246,239,226,.8); border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer__social a:hover { color: var(--coral); border-color: var(--coral); }
.footer__bottom { padding: 2rem 0 1.5rem; }
.footer__bottom p { font-size: .8rem; color: rgba(246,239,226,.5); }
.footer__wordmark {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(4rem, 18vw, 16rem); line-height: .8;
  color: rgba(246,239,226,.05);
  text-align: center; margin-top: -.1em; pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--cream); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.75rem; padding: var(--pad);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
    box-shadow: -20px 0 60px rgba(29,27,22,.2);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav__cta { background: transparent; color: var(--emerald); padding: 0; }
  .nav__toggle { display: flex; z-index: 110; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__badge { right: 10px; }

  .services__head { grid-template-columns: 1fr; }
  .services__feature { grid-template-columns: 1fr; }
  .services__feature img { border-radius: 6px 6px 0 0; min-height: 260px; }
  .services__feature-text { border-radius: 0 0 6px 6px; }

  .exp__collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .exp__item--wide { grid-column: span 2; grid-row: span 1; }
  .exp__item--tall { grid-row: span 1; }

  .why__detail { grid-template-columns: 1fr; gap: 1.25rem; }

  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .service { grid-template-columns: 1fr; gap: .4rem; }
  .service__num { font-size: .85rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}
