/* =========================================================
   TM VISUALS — styles.css
   Compatible with the current index.html
   ========================================================= */

:root {
  --black: #0A0A0A;
  --anthracite: #1F1F1F;
  --white: #F5F5F5;
  --gold: #D4AF37;
  --muted: #9A9A9A;
  --line: rgba(245,245,245,.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body,
a,
button {
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 86px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

/* IMPORTANT:
   These selectors match the actual HTML:
   .logo-link > img
*/

.logo-link {
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    max-height: 55px !important;

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

    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.logo-link img {
    width: 55px !important;
    height: 55px !important;

    max-width: 55px !important;
    max-height: 55px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    display: block !important;
    object-fit: contain !important;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.nav a {
  position: relative;
  color: #ddd;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 25px;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 7vw 100px;
  background:
    radial-gradient(circle at 75% 40%, rgba(212,175,55,.13), transparent 28%),
    linear-gradient(120deg, #0A0A0A 0%, #0A0A0A 55%, #151515 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(60px, 10vw, 135px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  margin: 35px 0 0;
  color: #aaa;
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.hero-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-top: 55px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-link span {
  color: var(--gold);
  font-size: 17px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 720px;
  height: 720px;
  right: -220px;
  top: 18%;
}

.orbit-two {
  width: 460px;
  height: 460px;
  right: -90px;
  top: 30%;
  border-color: rgba(245,245,245,.06);
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  width: min(var(--max), 90%);
  margin: 0 auto;
  padding: 125px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 700;
}

.section-link {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  white-space: nowrap;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

/* =========================================================
   INSTAGRAM PORTFOLIO
   ========================================================= */

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.instagram-grid a {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--anthracite);
}

.instagram-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.instagram-grid a:hover img {
  transform: scale(1.05);
}

.ig-loading {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   À PROPOS
   ========================================================= */

.about {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.about-grid h2 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .94;
  letter-spacing: -.05em;
}

.about-copy {
  max-width: 600px;
  color: #c8c8c8;
  font-size: 16px;
  line-height: 1.9;
}

.about-copy p {
  margin: 0 0 24px;
}

.about-copy .location {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* =========================================================
   TARIFS
   ========================================================= */

.pricing {
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  min-height: 480px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #101010;
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.55);
}

.price-card.featured {
  border-color: var(--gold);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.price-number {
  color: #666;
  font-size: 11px;
  letter-spacing: .18em;
}

.price-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.price-card h3 {
  margin: 0 0 15px;
  font-size: 23px;
  line-height: 1.15;
}

.price-description {
  min-height: 72px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #bbb;
  font-size: 13px;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.price {
  margin-top: auto;
  padding-top: 30px;
  color: var(--muted);
  font-size: 12px;
}

.price strong {
  color: var(--white);
  font-size: 25px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  padding: 130px 7vw;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,.08), transparent 30%),
    #0A0A0A;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.055em;
}

.final-cta h2 span {
  color: var(--gold);
}

.cta-button {
  display: inline-block;
  margin-top: 42px;
  padding: 15px 25px;
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: all .25s ease;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--black);
}

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

.footer {
  padding: 50px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #777;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 90px;
  height: 55px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-logo img {
  width: 90px;
  height: 55px;
  object-fit: contain;
}

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

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 650px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .logo-link {
    width: 82px;
    height: 52px;
  }

  .logo-link img {
    width: 82px;
    height: 52px;
  }

  .nav {
    gap: 15px;
    font-size: 9px;
    letter-spacing: .08em;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 120px 20px 80px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 82px);
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: .15em;
  }

  .hero-orbit {
    opacity: .45;
  }

  .orbit-one {
    width: 480px;
    height: 480px;
    right: -300px;
  }

  .orbit-two {
    width: 320px;
    height: 320px;
    right: -200px;
  }

  .section {
    width: calc(100% - 30px);
    padding: 85px 0;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
