@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  background: #050505;
  color: #f7f1e7;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: 'Inter', sans-serif;
}

.lk-homepage {
  --gold: #d9be78;
  --line: rgba(217,190,120,0.18);
  --text: #f7f1e7;
  --muted: rgba(247,241,231,0.72);
  --muted2: rgba(247,241,231,0.56);

  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding-top: 92px;
  overflow-x: hidden;
  overflow-y: visible;

  background:
    radial-gradient(circle at 10% 10%, rgba(217,190,120,0.10), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(217,190,120,0.08), transparent 18%),
    linear-gradient(180deg, #040404 0%, #090909 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.lk-container {
  width: 1320px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
}

.lk-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(5,5,5,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.lk-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.lk-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.lk-logo:link,
.lk-logo:visited,
.lk-logo:hover,
.lk-logo:active {
  text-decoration: none;
}

.lk-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.lk-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s ease;
}

.lk-logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 6px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.lk-logo:hover .lk-logo-text,
.lk-logo:hover .lk-logo-sub {
  color: #f7f1e7;
}

.lk-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lk-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.lk-hero {
  padding: 44px 0 24px;
}

.lk-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 130px);
  min-width: 0;
}

.lk-pretitle {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.lk-left h1,
.lk-section h2,
.lk-small-heading,
.lk-order-left h2,
.lk-order-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.lk-left h1 {
  font-size: 84px;
  line-height: .92;
  letter-spacing: -1.6px;
  margin-bottom: 22px;
}

.lk-subtext {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}

.lk-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.lk-btn {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-size: 14px;
  letter-spacing: .4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 8px 0 8px;
  box-sizing: border-box;
}

.lk-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.lk-gold {
  background: var(--gold);
  color: #070707;
}

.lk-outline {
  background: transparent;
  color: var(--text);
}

.lk-meta {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.lk-locations {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 24px;
}

.lk-book {
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(180deg, rgba(217,190,120,0.08) 0%, rgba(217,190,120,0.03) 100%);
  border-radius: 0 14px 0 6px;
}

.lk-book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text);
}

.lk-book-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.lk-small {
  min-height: 48px;
  padding: 0 22px;
}

.lk-right {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 18px;
  min-height: 760px;
  min-width: 0;
}

.lk-right img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #111;
  border-radius: 0 14px 0 6px;
  display: block;
}

.lk-right img:first-child {
  grid-row: 1 / 3;
}

.lk-right img:nth-child(2),
.lk-right img:nth-child(3) {
  height: calc((760px - 18px) / 2);
}

.lk-proof {
  padding: 20px 0 0;
}

.lk-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lk-proof-item {
  background: #090909;
  text-align: center;
  padding: 26px 22px;
  border-radius: 0 14px 0 6px;
}

.lk-proof-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 6px;
}

.lk-proof-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.lk-why {
  padding: 60px 0;
  border-top: 1px solid rgba(217,190,120,0.15);
  border-bottom: 1px solid rgba(217,190,120,0.15);
}

.lk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lk-why-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #d9be78;
  margin-bottom: 10px;
}

.lk-why-item p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.lk-section {
  padding: 92px 0;
}

.lk-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}

.lk-section-head h2 {
  font-size: 56px;
  line-height: .95;
}

.lk-section-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.lk-gallery {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  gap: 18px;
}

.lk-card,
.lk-card:link,
.lk-card:visited,
.lk-card:hover,
.lk-card:active {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 0 14px 0 6px;
  transition: all 0.4s ease;
}

.lk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.lk-card img {
  width: 100%;
  max-width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  border-radius: 0 14px 0 6px;
}

.lk-card-bottom {
  padding: 18px 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.lk-card-bottom strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--text) !important;
  font-weight: 500;
  text-decoration: none !important;
}

.lk-card-bottom span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted2) !important;
  text-decoration: none !important;
}

.lk-gallery a,
.lk-gallery a:link,
.lk-gallery a:visited,
.lk-gallery a:hover,
.lk-gallery a:active,
.lk-gallery a *,
.lk-gallery a *::before,
.lk-gallery a *::after {
  text-decoration: none !important;
  color: inherit;
}

.lk-center-btn {
  text-align: center;
  margin-top: 40px;
}

.lk-mini-title {
  font-size: 12px;
  color: #8f7a45;
  margin-bottom: 6px;
}

.lk-small-heading {
  font-size: 28px;
  margin-bottom: 30px;
}

.lk-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}

.lk-testimonial {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 0 14px 0 6px;
}

.lk-testimonial p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  margin: 0 0 10px;
}

.lk-testimonial span {
  color: var(--gold);
  font-size: 12px;
}

.lk-head-gap {
  margin-top: 12px;
}

.lk-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lk-service {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  padding: 30px 26px;
  border-radius: 0 14px 0 6px;
}

.lk-service strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.lk-service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lk-top-note {
  margin-bottom: 20px;
  color: #bfa76a;
  font-size: 13px;
}

.lk-order-box {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  border-radius: 0 14px 0 6px;
}

.lk-order-left,
.lk-order-right {
  padding: 44px;
}

.lk-order-left {
  border-right: 1px solid var(--line);
}

.lk-order-left h2,
.lk-order-right h2 {
  font-size: 44px;
  line-height: .95;
  margin: 0 0 14px;
}

.lk-order-left p,
.lk-order-right p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.lk-steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.lk-step {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.lk-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gold);
}

.lk-step span {
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

.lk-form-mock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.lk-field {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--muted2);
  font-size: 14px;
}

.lk-field-full {
  grid-column: 1 / -1;
  min-height: 92px;
  align-items: flex-start;
  padding-top: 16px;
}

.lk-order-actions {
  margin-top: 18px;
}

.lk-order-link {
  margin-top: 15px;
}

.lk-order-link a {
  color: var(--gold);
  text-decoration: none;
}

.lk-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--gold);
  color: #000;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 14px;
  z-index: 99999;
  box-shadow: 0 0 25px rgba(217,190,120,0.25);
  border-radius: 0 8px 0 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.lk-whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(217,190,120,0.35);
}

.lk-hero .lk-left > *,
.lk-hero .lk-right img,
.lk-hero .lk-book {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.lk-homepage.is-loaded .lk-hero .lk-left > *,
.lk-homepage.is-loaded .lk-hero .lk-right img,
.lk-homepage.is-loaded .lk-hero .lk-book {
  opacity: 1;
  transform: translateY(0);
}

.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(1) { transition-delay: 0.05s; }
.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(2) { transition-delay: 0.12s; }
.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(3) { transition-delay: 0.18s; }
.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(4) { transition-delay: 0.25s; }
.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(5) { transition-delay: 0.32s; }
.lk-homepage.is-loaded .lk-hero .lk-left > *:nth-child(6) { transition-delay: 0.39s; }

.lk-homepage.is-loaded .lk-hero .lk-right img:nth-child(1) { transition-delay: 0.18s; }
.lk-homepage.is-loaded .lk-hero .lk-right img:nth-child(2) { transition-delay: 0.28s; }
.lk-homepage.is-loaded .lk-hero .lk-right img:nth-child(3) { transition-delay: 0.38s; }

/* Créations */

.lk-creations-page {
  padding-bottom: 80px;
}

.lk-creations-page #collection,
.lk-creations-page #why-lk,
.lk-creations-page #process {
  scroll-margin-top: 120px;
}

.lk-creations-hero {
  padding: 44px 0 24px;
}

.lk-creations-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: end;
  min-width: 0;
}

.lk-creations-copy h1,
.lk-creations-final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.lk-creations-copy h1 {
  font-size: 78px;
  line-height: .92;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.lk-creations-copy .lk-subtext {
  max-width: 620px;
}

.lk-creations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.lk-creations-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  box-sizing: border-box;
}

.lk-creations-meta-line {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
}

.lk-creations-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 18px 0 8px;
  background: #0a0a0a;
}

.lk-creations-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lk-creations-visual-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(8,8,8,0.74) 0%, rgba(8,8,8,0.92) 100%);
  backdrop-filter: blur(8px);
  border-radius: 0 14px 0 6px;
}

.lk-creations-visual-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.lk-creations-visual-badge span {
  color: var(--muted);
  font-size: 14px;
}

.lk-creations-proofline {
  padding: 0 0 24px;
}

.lk-creations-proofline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lk-creations-proofline-item {
  background: #090909;
  padding: 24px 22px;
  border-radius: 0 14px 0 6px;
}

.lk-creations-proofline-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
}

.lk-creations-proofline-item span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.lk-creations-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  grid-auto-rows: 320px;
  gap: 18px;
}

.lk-creation-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 0 14px 0 6px;
  background: #0a0a0a;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lk-creation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.lk-creation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.lk-creation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 20%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.lk-creation-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.lk-creation-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 20px 20px;
}

.lk-creation-card-kicker {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.lk-creation-card-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  line-height: .98;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text);
}

.lk-creation-card-overlay p {
  margin: 0 0 10px;
  color: rgba(247,241,231,0.78);
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
}

.lk-creation-card-overlay span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lk-creation-card--tall {
  grid-row: span 2;
}

.lk-creation-card--wide {
  grid-column: span 2;
}

.lk-creations-band {
  margin-top: 22px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(217,190,120,0.08) 0%, rgba(217,190,120,0.03) 100%);
  border-radius: 0 14px 0 6px;
}

.lk-creations-band-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.lk-creations-band-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.lk-creations-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lk-creations-feature {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  padding: 30px 26px;
  border-radius: 0 14px 0 6px;
}

.lk-creations-feature strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.lk-creations-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lk-creations-faq-wrap {
  padding-top: 34px;
}

.lk-creations-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lk-creations-faq-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  padding: 26px 24px;
  border-radius: 0 14px 0 6px;
}

.lk-creations-faq-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.lk-creations-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lk-creations-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lk-creations-step {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  border-radius: 0 14px 0 6px;
}

.lk-creations-step span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.lk-creations-step strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.lk-creations-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.lk-creations-final-cta {
  margin-top: 34px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
  border-radius: 0 14px 0 6px;
}

.lk-creations-final-cta h2 {
  font-size: 48px;
  line-height: .95;
  margin: 0 0 12px;
}

.lk-creations-final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}

.lk-creations-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Home upgrades */

.lk-home-quickstart {
  padding-top: 34px;
}

.lk-home-faq {
  padding-top: 34px;
}

.lk-home-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lk-home-faq-grid .lk-testimonial p strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

/* Responsive */

@media (max-width: 1180px) {
  .lk-creations-hero-grid {
    grid-template-columns: 1fr;
  }

  .lk-creations-copy h1 {
    font-size: 62px;
  }

  .lk-creations-visual {
    min-height: 580px;
  }

  .lk-creations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lk-creation-card--wide {
    grid-column: span 2;
  }

  .lk-creations-features,
  .lk-creations-steps {
    grid-template-columns: 1fr 1fr;
  }

  .lk-creations-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk-creations-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .lk-header {
    position: relative;
  }

  .lk-homepage {
    padding-top: 0;
  }

  .lk-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .lk-hero-grid,
  .lk-gallery,
  .lk-testimonials,
  .lk-services,
  .lk-order-box,
  .lk-why-grid {
    grid-template-columns: 1fr;
  }

  .lk-right {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lk-right img:first-child {
    grid-row: auto;
  }

  .lk-right img:nth-child(2),
  .lk-right img:nth-child(3) {
    height: 420px;
  }

  .lk-order-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lk-left h1 {
    font-size: 56px;
  }

  .lk-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk-creations-proofline-grid,
  .lk-creations-faq,
  .lk-home-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .lk-creations-copy h1 {
    font-size: 52px;
  }

  .lk-creations-grid,
  .lk-creations-features,
  .lk-creations-steps {
    grid-template-columns: 1fr;
  }

  .lk-creation-card--tall,
  .lk-creation-card--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .lk-creations-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk-creations-visual {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .lk-container {
    max-width: calc(100% - 28px);
  }

  .lk-nav {
    display: none;
  }

  .lk-left h1 {
    font-size: 42px;
  }

  .lk-buttons {
    flex-direction: column;
  }

  .lk-btn {
    width: 100%;
  }

  .lk-book {
    flex-direction: column;
    align-items: stretch;
  }

  .lk-form-mock {
    grid-template-columns: 1fr;
  }

  .lk-field-full {
    grid-column: auto;
  }

  .lk-whatsapp-float {
    right: 12px;
    left: 12px;
    bottom: 12px;
    text-align: center;
  }

  .lk-creations-hero {
    padding: 22px 0 8px;
  }

  .lk-creations-copy h1 {
    font-size: 42px;
  }

  .lk-creations-tags {
    gap: 8px;
  }

  .lk-creations-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .lk-creations-visual {
    min-height: 380px;
  }

  .lk-creations-visual-badge,
  .lk-creations-band,
  .lk-creations-feature,
  .lk-creations-step,
  .lk-creations-final-cta,
  .lk-creations-faq-item {
    padding: 22px;
  }

  .lk-creation-card-overlay h3 {
    font-size: 28px;
  }

  .lk-creations-band-text strong {
    font-size: 28px;
  }

  .lk-creations-final-cta h2 {
    font-size: 38px;
  }

  .lk-creations-final-actions {
    width: 100%;
  }

  .lk-creations-final-actions .lk-btn {
    width: 100%;
  }
}