/* ============================================================
   Cannes Photographer — landing page
   Mobile-first. No framework. Conversion-focused.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f5f1;
  --ink: #0a0a0a;
  --ink-soft: #444;
  --muted: #6b6b6b;
  --line: #e7e5df;
  --wa: #128A3D;
  --wa-dark: #0E7531;
  --accent: #c9a55c;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1100px;
  --pad: clamp(16px, 4vw, 32px);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(28px, 6.5vw, 52px); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(24px, 4.2vw, 36px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 18px 28px; font-size: 17px; line-height: 1.25; }
.btn span { min-width: 0; }
.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 22px rgba(18,138,61,.30);
  max-width: 100%;
  text-align: center;
}
.btn--wa:hover { background: var(--wa-dark); }
@media (max-width: 480px) {
  .hero .btn--lg { padding: 15px 18px; font-size: 16px; width: 100%; }
  .btn--lg { font-size: 16px; }
}

/* ---------- Urgency banner + lang toggle ---------- */
.urgency {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.urgency__msg {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.urgency .dot {
  flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  padding: 3px;
  border-radius: 999px;
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 6px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.lang__btn:hover { color: #fff; }
.lang__btn.is-active {
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.lang__btn span:first-child {
  font-size: 14px;
  line-height: 1;
}
.lang__code {
  font-size: 11px;
  letter-spacing: .12em;
}
@media (max-width: 480px) {
  .lang__code { display: none; }
  .lang__btn { padding: 5px 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 8vw, 80px) 0;
  background: #1a1a1a;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.9) 100%),
    url("images/hero.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__badge svg { color: var(--wa); flex-shrink: 0; }

.hero h1 { color: #fff; max-width: 22ch; }
.hero .sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 2.4vw, 20px);
  margin: 14px 0 26px;
  max-width: 36ch;
}
.hero .sub strong { color: #fff; }
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(13px, 1.6vw, 14.5px);
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.45;
  max-width: 38ch;
}
.hero__trust svg {
  color: var(--wa);
  flex-shrink: 0;
  margin-top: 1px;
}

.micro {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  margin: 8px 0 0;
}
.section .micro { color: var(--muted); }

/* ---------- Sections ---------- */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--alt { background: var(--bg-alt); }
.section h2 { max-width: 22ch; }

/* ---------- Services (editorial cards) ---------- */
.section--services { padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(56px, 9vw, 110px); }

.section__head {
  max-width: 760px;
  margin: 0 0 clamp(28px, 5vw, 56px);
}
.section__head h2 {
  font-size: clamp(30px, 5.4vw, 52px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 8px 0 14px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.lede {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .services { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--ink);
  transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
  isolation: isolate;
}
.card:hover {
  transform: translateY(-4px);
  border-color: #d6d2c8;
  box-shadow: var(--shadow);
}
.card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-alt);
}
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
}
.card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.card__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--ink);
}
.card__arrow {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: background-color .25s ease, transform .25s ease;
}
.card:hover .card__arrow { background: var(--wa); transform: translateX(2px); }

.services__note {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.services__note a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  text-decoration: none !important;
}
.services__note a:hover { color: var(--wa); border-color: var(--wa); }

/* ---------- Trust (stats version) ---------- */
.section--trust {
  background: var(--bg-alt);
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 9vw, 110px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stat__num {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum" on;
}
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
  line-height: 1.35;
}

.trust__foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  align-items: flex-start;
}
@media (min-width: 760px) {
  .trust__foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.trust__note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: .01em;
}

/* ---------- Mosaic gallery ---------- */
.section--gallery {
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(40px, 7vw, 80px);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
}
@media (min-width: 760px) {
  .mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  /* Feature image: spans 2 cols x 2 rows -> creates editorial rhythm */
  .mosaic__item--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.mosaic__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  aspect-ratio: 1/1;
}
.mosaic__item--feature { aspect-ratio: 1/1; }
.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
/* Portrait-oriented images cropped to square need to keep the head visible. */
.mosaic__item--feature img { object-position: center top; }
.mosaic__item:hover img { transform: scale(1.05); }

.mosaic__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.7) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 1;
}
.mosaic__item:hover::before { opacity: 1; }

.mosaic__item figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.mosaic__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.mosaic__foot {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none !important;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.link-arrow:hover {
  color: var(--wa);
  border-color: var(--wa);
  gap: 12px;
}

/* ---------- Pricing strip ---------- */
.pricing {
  background: var(--ink);
  color: #fff;
  padding: clamp(32px, 6vw, 56px) 0;
}
.pricing__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .pricing__row { flex-direction: row; justify-content: space-between; align-items: center; gap: 28px; }
}
.pricing__line {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: -.005em;
  line-height: 1.35;
}
.pricing__line strong {
  color: #fff;
  font-weight: 800;
  font-size: 1.25em;
  letter-spacing: -.015em;
  margin: 0 .04em;
}

/* ---------- Testimonials ---------- */
.section--testimonials {
  padding-top: clamp(56px, 9vw, 110px);
  padding-bottom: clamp(56px, 9vw, 110px);
  background: var(--bg-alt);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .quotes { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

.quote {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote__mark {
  color: var(--accent);
  opacity: .85;
  flex-shrink: 0;
}
.quote blockquote {
  margin: 0;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.005em;
  font-weight: 500;
  quotes: none;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quote__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
}
.quote__role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Final CTA (polished) ---------- */
.section--final {
  padding-top: clamp(60px, 9vw, 120px);
  padding-bottom: clamp(80px, 12vw, 160px);
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .eyebrow {
  display: inline-block;
}
.section__head--center .lede {
  margin-left: auto;
  margin-right: auto;
}

.final { max-width: 720px; margin: 0 auto; }
.final__cta {
  display: flex;
  justify-content: center;
  margin: 8px 0 36px;
}
.final__cta .btn { min-width: 280px; }

.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .contact-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  color: var(--ink);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-tile:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.contact-tile__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border-radius: 999px;
  color: var(--ink);
}
.contact-tile:first-child .contact-tile__ico {
  background: var(--wa);
  color: #fff;
}
.contact-tile__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.contact-tile__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-tile__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 24px 0 100px;
  font-size: 14px;
  color: var(--muted);
}
.foot a { color: var(--muted); }

/* ---------- Sticky FAB ---------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 60;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(18,138,61,.36);
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .2s ease;
}
.fab:hover { background: var(--wa-dark); transform: translateY(-2px); }
.fab__txt { display: none; }
@media (min-width: 600px) { .fab__txt { display: inline; } }

/* ---------- Exit popup ---------- */
.exit {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(92vw, 420px);
  height: fit-content;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  text-align: center;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.exit::backdrop { background: rgba(0,0,0,.55); }
.exit h3 { font-size: 22px; margin-bottom: 8px; }
.exit p { margin: 0 0 16px; color: var(--ink-soft); }
.exit .btn { width: 100%; }
.exit__close {
  position: absolute;
  top: 8px; right: 10px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
}
.exit__close:hover { background: var(--bg-alt); color: var(--ink); }

/* ---------- Cookie consent ---------- */
.consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  background: rgba(20, 20, 22, .96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 18px;
  animation: consent-in .35s ease-out;
}
@keyframes consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.consent[hidden] { display: none; }

.consent__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.consent__copy { min-width: 0; }
.consent__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.consent__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}

.consent__actions {
  display: flex;
  gap: 10px;
  justify-content: stretch;
}
.consent__btn {
  flex: 1;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.consent__btn--decline {
  background: transparent;
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
}
.consent__btn--decline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.32);
}
.consent__btn--accept {
  background: var(--wa);
  color: #fff;
}
.consent__btn--accept:hover {
  background: var(--wa-dark);
}

@media (min-width: 720px) {
  .consent {
    left: auto;
    right: 18px;
    bottom: 18px;
    max-width: 480px;
    padding: 18px 20px;
  }
  .consent__inner {
    flex-direction: column;
    gap: 14px;
  }
}

/* Make sure consent sits above the sticky FAB */
.fab { z-index: 70; }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
