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

:root {
  --lp-bg: #f7f9fc;
  --lp-white: #ffffff;
  --lp-navy: #14365c;
  --lp-navy-deep: #0d2540;
  --lp-blue-soft: #e8f1f8;
  --lp-gold: #b98e3f;
  --lp-gold-light: #d9bc7a;
  --lp-text: #2c3a4a;
  --lp-muted: #64748b;
  --lp-line: #d8e2ec;
  --lp-line-gold: rgba(185, 142, 63, .45);
  --lp-radius: 16px;
  --lp-shadow: 0 4px 16px rgba(20, 54, 92, .08);
  --lp-shadow-hover: 0 14px 34px rgba(20, 54, 92, .16);
  --lp-serif: "Cormorant Garamond", Georgia, serif;
  --lp-sans: "Manrope", system-ui, sans-serif;
}

body {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-sans);
  overflow-x: hidden;
}

body .wp-block-button__link,
body .wp-block-read-more {
  font-family: var(--lp-sans);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: .2s ease;
}

body .wp-block-button__link:not(.has-background),
body .wp-block-read-more {
  background: var(--lp-navy);
  color: #fff;
  box-shadow: 0 3px 12px rgba(20, 54, 92, .25);
}

body .wp-block-button__link:hover,
body .wp-block-read-more:hover {
  background: var(--lp-navy-deep);
  color: #fff;
  text-decoration: none;
}

body .wp-block-heading {
  color: var(--lp-navy);
}

.page-id-2 .site-content {
  padding-top: 0 !important;
  padding-bottom: 90px !important;
}

.page-id-2 .entry-content {
  max-width: none;
  padding: 0 !important;
}

.lp-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow: hidden;
  background: var(--lp-navy-deep);
}

.lp-hero .wp-block-cover__background {
  background: linear-gradient(180deg, rgba(13,37,64,.42) 0%, rgba(13,37,64,.68) 100%) !important;
}

.lp-hero .wp-block-cover__inner-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 20px 150px;
}

.lp-kicker {
  display: inline-block;
  color: #fff4d1;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .45em;
  text-transform: uppercase;
  text-shadow: 0 2px 3px rgba(0,0,0,.95), 0 8px 20px rgba(13,37,64,.8);
  background: rgba(13,37,64,.34);
  border: 1px solid rgba(217,188,122,.42);
  border-radius: 999px;
  padding: 8px 14px 8px 18px;
  margin-bottom: 18px;
}

.lp-hero__title {
  margin: 0;
  font-family: var(--lp-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 8.5vw, 5.6rem);
  letter-spacing: .16em;
  line-height: 1.02;
  background: linear-gradient(100deg, #ffffff 25%, #d9bc7a 50%, #ffffff 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 16px rgba(13, 37, 64, .55));
}

.lp-hero__subtitle {
  max-width: 560px;
  margin: 22px auto 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.18rem);
  text-shadow: 0 2px 10px rgba(13, 37, 64, .6);
}

.lp-hero__actions {
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.lp-hero__actions .wp-block-button__link {
  padding: 13px 30px;
  font-size: .92rem;
}

.lp-button-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  box-shadow: none !important;
}

.lp-button-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,.14) !important;
}

.lp-section {
  width: min(1180px, calc(100vw - 40px));
  max-width: 1180px;
  margin: 72px auto 0;
}

.lp-category-shell,
.single-post .entry-content {
  width: min(1180px, calc(100vw - 40px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.lp-section-title,
.page-template-no-title .wp-block-post-content > .lp-category-shell .wp-block-heading:first-child,
.single-post .wp-block-post-content > h2 {
  font-family: var(--lp-serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
}

.lp-section-head {
  margin-bottom: 46px;
}

.lp-card-grid {
  width: 100% !important;
  max-width: none !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lp-card,
.lp-listing-card,
.single-post .wp-block-gallery,
.single-post .wp-block-post-content > ul,
.single-post .wp-block-post-content > ol {
  background: var(--lp-white);
  border: 1px solid var(--lp-line-gold);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-card,
.lp-listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 24px;
  transition: .25s ease;
}

.lp-card:hover,
.lp-listing-card:hover {
  box-shadow: var(--lp-shadow-hover);
  transform: translateY(-4px);
}

.lp-card .wp-block-buttons,
.lp-listing-card .wp-block-buttons {
  margin-top: auto;
}

.lp-card-media,
.lp-listing-card .wp-block-post-featured-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--lp-line);
  margin: 0 0 18px;
  background: var(--lp-blue-soft);
}

.lp-card-media img,
.lp-listing-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.lp-card:hover .lp-card-media img,
.lp-listing-card:hover .wp-block-post-featured-image img {
  transform: scale(1.06);
}

.lp-card h3,
.lp-listing-card h2,
.lp-listing-card h3 {
  font-family: var(--lp-serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-navy);
  margin-bottom: 16px;
}

.lp-card p,
.lp-listing-card .wp-block-post-excerpt {
  color: var(--lp-muted);
  line-height: 1.8;
}

.lp-price {
  color: var(--lp-gold) !important;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--lp-sans);
}

.page-template-no-title .site-content {
  padding-top: 28px !important;
  padding-bottom: 80px !important;
}

.page-template-no-title .entry-content,
.single-post .entry-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-category-shell {
  display: block;
}

.lp-category-hero {
  max-width: 780px;
  margin: 0 auto 42px;
  padding: 34px 30px;
  text-align: center;
  border: 1px solid var(--lp-line-gold);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(232,241,248,.88) 100%);
  box-shadow: var(--lp-shadow);
}

.lp-category-hero .wp-block-heading:first-child,
.single-post .wp-block-post-content > h1 {
  margin: 0 0 10px;
  font-family: var(--lp-serif);
  font-weight: 600;
  color: var(--lp-navy);
}

.lp-category-hero .wp-block-heading:first-child {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: .08em;
}

.lp-category-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--lp-muted);
  font-size: 1.05rem;
}

.lp-listing-query {
  width: 100% !important;
  max-width: none !important;
}

.lp-listing-query .wp-block-post-template {
  width: 100% !important;
  max-width: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lp-listing-query .wp-block-post {
  margin: 0;
}

.lp-listing-card .wp-block-post-excerpt {
  font-size: .95rem;
  margin-bottom: 16px;
}

.lp-listing-card .wp-block-post-terms {
  margin-bottom: 12px;
  color: var(--lp-gold);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

.lp-listing-card .wp-block-read-more {
  display: inline-block;
  padding: 13px 22px;
  margin-top: auto;
  border-radius: 8px;
}

.single-post .site-content {
  padding-top: 24px !important;
  padding-bottom: 84px !important;
}

.single-post .wp-block-post-content > h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: .08em;
  text-align: center;
}

.single-post .wp-block-post-content > p:first-of-type {
  text-align: center;
  margin: 12px auto 10px;
  color: var(--lp-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.single-post .wp-block-post-content > p:nth-of-type(2) {
  text-align: center;
  margin: 0 auto 8px;
  color: var(--lp-navy);
  font-weight: 700;
}

.single-post .wp-block-post-content > p:nth-of-type(3) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--lp-muted);
  font-size: 1.06rem;
  text-align: center;
}

.single-post .wp-block-gallery {
  padding: 18px;
  margin: 34px 0 42px;
  gap: 14px;
  align-items: stretch;
}

.single-post .wp-block-gallery.has-nested-images figure.wp-block-image,
.single-post .wp-block-gallery .wp-block-image {
  aspect-ratio: 1 / 1;
  width: 112px !important;
  max-width: 112px !important;
  flex: 0 0 112px !important;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 !important;
}

.single-post .wp-block-gallery.has-nested-images figure.wp-block-image img,
.single-post .wp-block-gallery .wp-block-image img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.single-post .wp-block-post-content > ul {
  padding: 22px 24px 22px 44px;
  margin: 16px 0 34px;
}

.single-post .wp-block-post-content > h2 {
  margin-top: 42px;
  margin-bottom: 18px;
}

.single-post .wp-block-post-content > p,
.single-post .wp-block-post-content > ul li {
  color: var(--lp-text);
  line-height: 1.8;
}

.single-post .wp-block-post-content > .wp-block-buttons {
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.single-post .wp-block-post-content > .wp-block-buttons .wp-block-button__link {
  padding: 13px 24px;
}

.lp-cta-card {
  text-align: center;
  border: 1px solid var(--lp-line-gold);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(232,241,248,.88) 100%);
  box-shadow: var(--lp-shadow);
  padding: 42px 24px;
}

.lp-cta-card p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--lp-muted);
}

.lp-cta-card .wp-block-buttons {
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .lp-card-grid,
  .lp-listing-query .wp-block-post-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-card-grid,
  .lp-listing-query .wp-block-post-template {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: 560px !important;
  }

  .lp-hero__inner {
    padding: 72px 12px 110px;
  }

  .lp-hero__actions {
    gap: 10px;
  }

  .lp-hero__actions .wp-block-button__link {
    padding: 12px 16px;
    font-size: .74rem;
    white-space: nowrap;
  }

  .lp-card,
  .lp-listing-card,
  .lp-cta-card,
  .lp-category-hero,
  .single-post .wp-block-gallery,
  .single-post .wp-block-post-content > ul {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-post .wp-block-post-content > .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .single-post .wp-block-gallery.has-nested-images figure.wp-block-image,
  .single-post .wp-block-gallery .wp-block-image {
    width: 88px !important;
    max-width: 88px !important;
    flex-basis: 88px !important;
  }
}
