/* ============================================================
   Etiqkate — Shared styles
   Brand tokens: Deep Green / Moss / Pearl / Pearl 2 / Parchment / Grey Blue
   Type: Awesome (display) + Proxima (text)
   Container: 1440px max
   ============================================================ */

:root {
  --deep-green: #333F24;
  --deep-green-2: #2F4022;
  --moss:       #88996B;
  --moss-soft:  #A9B68C;
  --moss-deep:  #6E8553;
  --pearl:      #F5F2ED;
  --pearl-2:    #EDE9E2;
  --parchment:  #CEBEB2;
  --grey-blue:  #94ACBF;

  --ink:        #0E0E0E;
  --ink-soft:   #1C1C1C;

  --container:  1440px;
  --gutter:     clamp(20px, 4vw, 64px);

  --serif: "Awesome", "Georgia", serif;
  --sans:  "Proxima", "Helvetica Neue", sans-serif;

  --radius-pill: 999px;
  --radius-md:   22px;
  --radius-lg:   28px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; overflow-x: hidden; }
html {
  scroll-behavior: smooth;
  background: var(--deep-green);
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--deep-green);
  background: var(--deep-green);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .14em;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }
.btn--blue      { background: var(--grey-blue); color: var(--ink); }
.btn--blue:hover{ background: #a8bdcd; }
.btn--parchment { background: var(--parchment); color: var(--ink); }
.btn--parchment:hover { background: #d9cbc0; }
.btn--wide      { padding: 17px 56px; }
.btn--outline   { background: transparent; color: var(--pearl); border: 1px solid rgba(245,242,237,.4); }
.btn--outline:hover { background: rgba(245,242,237,.08); }
.btn--sm        { padding: 11px 26px; font-size: 12px; }

/* ============= NAV ============= */
.page-nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
.page-nav-wrap .nav__backdrop {
  position: absolute;
  inset: -120px 0 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(15, 18, 10, 0.08);
  mask-image: linear-gradient(black 62%, rgba(0,0,0,.75) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(black 62%, rgba(0,0,0,.75) 80%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.page-nav-wrap.is-scrolled .nav__backdrop {
  opacity: 1;
}
.nav {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--pearl);
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { border-bottom-color: var(--parchment); }

/* ---- Work with Me dropdown (desktop) ---- */
.nav__item--has-drop { position: relative; }
.nav__item--has-drop::after {
  content: '';
  position: absolute;
  top: 100%; left: -16px; right: -16px;
  height: 14px;
}
.nav__drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 272px;
  background: rgba(20, 26, 13, 0.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(245,242,237,0.11);
  border-radius: 10px;
  padding: 5px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 100;
}
.nav__item--has-drop:hover .nav__drop,
.nav__item--has-drop:focus-within .nav__drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item--has-drop .nav__drop a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  letter-spacing: .025em;
  color: rgba(245,242,237,.78);
  white-space: nowrap;
  border-bottom: none !important;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav__item--has-drop .nav__drop a + a { border-top: 1px solid rgba(245,242,237,0.07); }
.nav__item--has-drop .nav__drop a:hover { color: var(--parchment); background: rgba(245,242,237,0.06); }

.nav__cta { white-space: nowrap; }
.nav__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}
.nav__social a {
  display: flex;
  align-items: center;
  color: var(--pearl);
  opacity: 0.7;
  padding: 0;
  border-bottom: none;
  transition: opacity .2s var(--ease);
}
.nav__social a:hover,
.nav__social a.is-active { opacity: 1; border-bottom-color: transparent; }
.nav__social svg { width: 20px; height: 20px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(245,242,237,.4);
  border-radius: 999px;
  position: relative;
  z-index: 60;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav__toggle span {
  position: absolute; left: 12px; right: 12px;
  height: 1.5px; background: var(--pearl);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle.is-open { border-color: rgba(245,242,237,.7); background: rgba(245,242,237,.06); }
.nav__toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.nav__drawer { display: contents; }
.nav__drawer-cta,
.nav__drawer-meta { display: none; }

/* ============= VIDEO ============= */
.video-wrap {
  margin-top: clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: center;
}
.video {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--deep-green-2);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  cursor: pointer;
  color: var(--pearl);
}
.video__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.video:hover .video__poster { transform: scale(1.03); }
.video__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 84px; height: 84px;
  border-radius: 999px;
  background: rgba(245,242,237,.92);
  color: var(--deep-green);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video__play svg { margin-left: 4px; }
.video:hover .video__play { transform: translate(-50%,-50%) scale(1.06); background: var(--pearl); }

/* ============= INTRO BLOCK (service pages) ============= */
.intro-block {
  background: var(--parchment);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}
.intro-block__inner {
  max-width: 760px;
  margin: 0 auto;
}
.intro-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 28px;
  color: var(--deep-green);
}
.intro-block p {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: rgba(51,63,36,.85);
  margin: 0;
  text-wrap: pretty;
}

/* ============= STEPS (service pages) ============= */
.steps-block__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 70px);
  text-align: center;
  margin: 0 0 clamp(60px, 8vw, 100px);
  color: var(--grey-blue);
  letter-spacing: -.005em;
  line-height: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 64px);
  position: relative;
  padding-inline: clamp(0px, 4vw, 80px);
}
.step__head { margin-bottom: 28px; }
.step__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 1.5vw, 24px);
  margin: 0 0 6px;
  color: var(--pearl);
  letter-spacing: -.005em;
}
.step__time {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--grey-blue);
  margin: 0;
}
.step__line {
  position: relative;
  height: 1px;
  background: rgba(245,242,237,.25);
  margin: 0 0 28px;
}
.step__line::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 11px; height: 11px;
  border-radius: 999px;
  background: var(--grey-blue);
  transform: translateY(-50%);
}
.step__body {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245,242,237,.85);
  margin: 0;
  max-width: 340px;
}

/* ============= FINAL CTA (service pages) ============= */
.final-cta {
  background: var(--parchment);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  color: var(--deep-green);
  position: relative;
  z-index: 1; 
  top: -1px;
}
.final-cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0 0 38px;
  text-wrap: balance;
}
.final-cta .btn { margin-bottom: 36px; }
.final-cta__alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.final-cta__alt-label {
  margin: 0;
  color: rgba(51,63,36,.7);
}
.final-cta__alt-link {
  display: inline-block;
  font-size: 16px;
  color: var(--deep-green);
  border-bottom: 1px solid rgba(51,63,36,.45);
  padding-bottom: 3px;
  transition: border-color .2s var(--ease);
}
.final-cta__alt-link:hover { border-bottom-color: var(--deep-green); }

/* ============= SVC HERO shared (in-depth + situational) ============= */
.svc-hero__text {
  grid-column: 2;
  padding: clamp(120px, 16vh, 200px) clamp(24px, 4vw, 80px) clamp(80px, 10vh, 120px) clamp(40px, 5vw, 90px);
  max-width: 640px;
}
.svc-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 26px;
  color: var(--pearl);
}
.svc-hero__title em { font-style: italic; font-weight: 500; }
.svc-hero__price {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.svc-hero__chip {
  display: inline-block;
  padding: 11px 24px;
  background: var(--deep-green);
  color: var(--grey-blue);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .03em;
  border-radius: 999px;
}
.svc-hero__mode {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--pearl);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--deep-green);
  color: var(--pearl);
  padding: clamp(60px, 7vw, 90px) 0 50px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.footer__brand { grid-column: 1 / 2; }
.footer__brand img {
  width: clamp(280px, 26vw, 380px);
  height: auto;
  filter: brightness(0) invert(1);
}
.footer__cta {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer__cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  margin: 0;
  color: var(--pearl);
}
.footer__cta-sub {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 300;
  color: rgba(245,242,237,.85);
}
.footer__cta .btn--wide { width: fit-content; }
.footer__links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 40px clamp(28px, 4vw, 60px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 80px);
  padding-top: 30px;
  border-top: 1px solid rgba(245,242,237,.12);
}
.footer__nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.footer__nav a { color: var(--pearl); }
.footer__nav a:hover { color: var(--parchment); }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--parchment);
}
.footer__col p { margin: 0; }
.footer__col-label { color: var(--pearl); font-weight: 500; margin: 0 0 6px !important; }
.footer__col a { color: var(--parchment); border-bottom: 1px solid transparent; transition: border-color .2s; }
.footer__col a:hover { border-bottom-color: var(--parchment); }
.footer__social { display: flex; gap: 14px; margin-top: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(245,242,237,.06);
  color: var(--pearl);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover {
  background: var(--pearl);
  color: var(--deep-green);
  transform: translateY(-1px);
}
.footer__social svg { width: 18px; height: 18px; display: block; }
.footer__motto {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 26px);
  color: var(--grey-blue);
  line-height: 1.25;
  margin: 0;
  text-align: right;
  max-width: 320px;
  justify-self: end;
}
.footer__motto em { font-style: italic; }

/* ============= RESPONSIVE ============= */
@media (min-width: 721px) and (max-width: 1024px) {
  .nav__links li:first-child { display: none; }
}

@media (max-width: 1024px) {
  /* Svc hero */
  .svc-hero { min-height: 0; background: var(--moss-deep); }
  .svc-hero__split { position: relative; grid-template-columns: 1fr; grid-template-rows: 56vh 0; inset: auto; }
  .svc-hero__photo { background-position: center 30%; }
  .svc-hero__panel { display: none; }
  .svc-hero__content { position: relative; display: block; height: auto; min-height: 0; }
  .svc-hero__text {
    grid-column: 1;
    padding: clamp(28px, 5vw, 48px) var(--gutter) clamp(40px, 6vw, 60px);
    max-width: 640px;
    margin: 0 auto;
  }
  .steps { grid-template-columns: 1fr; padding-inline: 0; gap: 40px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand, .footer__cta { grid-column: 1; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__motto { grid-column: 1 / -1; text-align: left; justify-self: start; max-width: 100%; }
}

@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav__cta { display: none; }
  .nav__toggle { display: grid; place-items: center; justify-self: end; }

  .nav__drawer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 6vh, 56px);
    position: fixed;
    inset: 0;
    z-index: 55;
    padding: 120px var(--gutter) 64px;
    background: var(--deep-green);
    background-image:
      radial-gradient(80% 50% at 100% 0%, rgba(206,190,178,.18), transparent 60%),
      radial-gradient(60% 50% at 0% 100%, rgba(148,172,191,.18), transparent 60%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .4s var(--ease), visibility .35s;
  }
  .nav__drawer.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__drawer .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(20px, 4vh, 36px);
  }
  .nav__drawer .nav__links a {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1;
    letter-spacing: -.01em;
    padding: 0;
    border-bottom: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s var(--ease);
  }
  .nav__drawer.is-open .nav__links a { opacity: 1; transform: none; }
  .nav__drawer.is-open .nav__links li:nth-child(1) a { transition-delay: .08s; }
  .nav__drawer.is-open .nav__links li:nth-child(2) a { transition-delay: .14s; }
  .nav__drawer.is-open .nav__links li:nth-child(3) a { transition-delay: .20s; }
  .nav__drawer.is-open .nav__links li:nth-child(4) a { transition-delay: .26s; }
  .nav__drawer .nav__links a:hover,
  .nav__drawer .nav__links a.is-active { color: var(--parchment); }
  .nav__drawer-cta {
    display: inline-flex;
    align-self: stretch;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s var(--ease) .32s, transform .4s var(--ease) .32s;
  }
  .nav__drawer.is-open .nav__drawer-cta { opacity: 1; transform: none; }
  .nav__drawer-meta {
    display: block;
    margin-top: auto;
    font-size: 14px;
    color: rgba(245,242,237,.6);
    letter-spacing: .04em;
    opacity: 0;
    transition: opacity .4s var(--ease) .4s;
  }
  .nav__drawer.is-open .nav__drawer-meta { opacity: 1; }
  body.menu-open { overflow: hidden; }
  .nav__item--has-drop .nav__drop { display: none; }

  /* Video */
  .video__play { width: 64px; height: 64px; }
  .video__play svg { width: 24px; height: 24px; }

  /* Svc hero */
  .svc-hero__title { font-size: clamp(40px, 12vw, 64px); }
  .svc-hero__split { grid-template-rows: 48vh 0; }
  .svc-hero__lede { font-size: clamp(15px, 4vw, 18px); margin-bottom: 20px; }

  /* Buttons */
  .btn--wide { padding: 17px 36px; }

  /* Footer */
  .footer__links { grid-template-columns: 1fr; }
  .footer__brand img { width: 240px; }

  /* Cookie consent */
  .cookie-consent__inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-consent__actions { justify-content: flex-end; }
}

/* ============= COOKIE CONSENT ============= */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--deep-green);
  color: var(--pearl);
  box-shadow: 0 -8px 32px rgba(0,0,0,.24);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 24px;
}
.cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,242,237,.85);
}
.cookie-consent__text a { text-decoration: underline; }
.cookie-consent__text a:hover { color: var(--parchment); }
.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
