/* Landing-page layout, light theme.
 *
 * A light port of the section layout used by lp-tattoo-pune.html (hero split, trust
 * strip, style cards, numbered steps, artist block, closing band), for pages that take
 * paid traffic but still live inside the normal site shell (header, nav, footer).
 *
 * Every class is prefixed `lp-`: the original used bare .hero/.card/.btn/.steps, which
 * would collide with bootstrap.min.css and the theme's own components on these pages.
 * Colours come from the theme's light variables so this stays in step with the site.
 */

.lp {
  --lp-ink: #1b1f1c;
  --lp-ink-soft: #4a554d;
  --lp-text: #585858;
  --lp-line: rgba(27, 31, 28, 0.12);
  --lp-surface: #ffffff;
  --lp-surface-alt: #f4f5f3;
  --lp-accent: var(--color-one, #4a554d);
  --lp-wa: #25d366;
  --lp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color: var(--lp-text);
  font-family: var(--font-family-base, "Sora", sans-serif);
}

.lp-wrap {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.lp-section {
  padding: 84px 0;
}

.lp-section--alt {
  background: var(--lp-surface-alt);
}

/* ---------- shared type ---------- */

.lp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 14px;
}

.lp-eyebrow--center { text-align: center; }

.lp h2,
.lp h3 {
  color: var(--lp-ink);
  font-family: var(--font-family-two, "Playfair Display", serif);
}

.lp-sec-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.lp-sec-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lp-sec-head p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.lp-em {
  color: var(--lp-accent);
  font-style: italic;
}

/* ---------- buttons ---------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: var(--fw-semibold, 600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--lp-ease), background 0.25s var(--lp-ease),
    color 0.25s var(--lp-ease);
}

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--primary {
  background: var(--lp-ink);
  color: #fff;
}

.lp-btn--primary:hover { background: var(--lp-accent); color: #fff; }

.lp-btn--ghost {
  background: transparent;
  border-color: var(--lp-line);
  color: var(--lp-ink);
}

.lp-btn--ghost:hover { border-color: var(--lp-accent); color: var(--lp-accent); }

.lp-btn--wa { background: var(--lp-wa); color: #fff; }
.lp-btn--wa:hover { background: #1fb457; color: #fff; }

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- hero ---------- */

.lp-hero {
  padding: 70px 0 60px;
}

.lp-hero__inner {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.lp-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 18px;
}

.lp-hero__title {
  font-family: var(--font-family-two, "Playfair Display", serif);
  color: var(--lp-ink);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.lp-hero__title em { color: var(--lp-accent); }

.lp-hero__sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 30px;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-hero__note {
  font-size: 13.5px;
  color: var(--lp-ink-soft);
  margin: 0;
}

.lp-hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.lp-hero__visual-main { grid-column: 1 / 2; aspect-ratio: 3 / 4; }
.lp-hero__visual-accent { grid-column: 2 / 3; aspect-ratio: 3 / 4; margin-top: 42px; }

/* Single-image hero (no accent frame): one full-bleed image instead of the split pair. */
.lp-hero__visual--single {
  display: block;
}

.lp-hero__visual--single .lp-hero__visual-main {
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(27, 31, 28, 0.25);
}

@media (min-width: 992px) {
  .lp-hero__visual--single .lp-hero__visual-main {
    max-width: 480px;
    margin-left: auto;
  }
}

/* ---------- trust strip ---------- */

.lp-trust {
  border-block: 1px solid var(--lp-line);
  background: var(--lp-surface);
  padding: 34px 0;
}

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.lp-trust-item b {
  display: block;
  font-family: var(--font-family-two, "Playfair Display", serif);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--lp-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-trust-item span {
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

/* ---------- reassurance row ---------- */

.lp-reassure {
  background: var(--lp-surface-alt);
  padding: 22px 0;
}

.lp-reassure-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 42px;
}

.lp-reassure-in p {
  margin: 0;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.lp-reassure-in i { color: var(--lp-accent); }

/* ---------- style cards ---------- */

.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.lp-card {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--lp-ease), border-color 0.3s var(--lp-ease),
    box-shadow 0.3s var(--lp-ease);
}

.lp-card:hover {
  transform: translateY(-5px);
  border-color: var(--lp-accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.lp-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lp-ease);
}

.lp-card:hover .lp-card-img img { transform: scale(1.05); }

.lp-card-body { padding: 22px 24px 26px; }

.lp-card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lp-card-body p {
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.lp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent);
  font-weight: var(--fw-semibold, 600);
}

/* ---------- steps ---------- */

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.lp-step {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 2px;
  padding: 30px 24px;
}

.lp-step-n {
  font-family: var(--font-family-two, "Playfair Display", serif);
  font-size: 30px;
  color: var(--lp-accent);
  line-height: 1;
  margin-bottom: 14px;
}

.lp-step h3 { font-size: 19px; margin-bottom: 10px; }

.lp-step p { font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- artist ---------- */

.lp-artist {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.lp-artist img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.lp-artist h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }

.lp-artist p { font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }

/* ---------- closing band ---------- */

.lp-close {
  background: var(--lp-ink);
  padding: 80px 0;
  text-align: center;
}

.lp-close h2 { color: #fff; font-size: clamp(28px, 4.2vw, 46px); margin-bottom: 16px; }

.lp-close p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 auto 30px;
}

.lp-close .lp-eyebrow { color: #a9b6ad; }

.lp-close .lp-em { color: #c9d3cb; }

.lp-close .lp-btn--primary { background: #fff; color: var(--lp-ink); }
.lp-close .lp-btn--primary:hover { background: var(--lp-accent); color: #fff; }

.lp-close-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.lp-locline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-locline span { display: inline-flex; align-items: center; gap: 8px; }
.lp-locline i { color: #a9b6ad; }
.lp-locline a { color: inherit; text-decoration: underline; }

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .lp-section { padding: 60px 0; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__visual-accent { margin-top: 0; }
  .lp-cards { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-artist { grid-template-columns: 1fr; gap: 32px; }
  .lp-artist img { max-width: 420px; }
}

@media (max-width: 575px) {
  .lp-wrap,
  .lp-hero__inner { width: min(1180px, 100% - 32px); }
  .lp-cards { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-hero__actions .lp-btn,
  .lp-close-cta .lp-btn { width: 100%; }
}
