/*
Theme Name: Lads Coffee Landing
Theme URI: https://example.com/lads-coffee
Author: ChatGPT
Author URI: https://openai.com
Description: A responsive Elementor-ready WordPress theme for a professional coffee business landing page.
Version: 1.6.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lads-coffee
*/

:root {
  --lc-navy: #062b4f;
  --lc-navy-2: #0a345d;
  --lc-navy-3: #123f6d;
  --lc-ink: #082c50;
  --lc-muted: #5c6d80;
  --lc-soft: #eff4ff;
  --lc-soft-2: #dce6f5;
  --lc-white: #ffffff;
  --lc-line: rgba(8, 44, 80, 0.14);
  --lc-green: #27c466;
  --lc-green-dark: #1a9f50;
  --lc-cream: #fff8ea;
  --lc-amber: #d59a34;
  --lc-shadow: 0 18px 45px rgba(7, 31, 59, 0.16);
  --lc-shadow-soft: 0 12px 30px rgba(7, 31, 59, 0.10);
  --lc-radius: 12px;
  --lc-serif: Georgia, "Times New Roman", serif;
  --lc-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lc-ink);
  background: var(--lc-white);
  font-family: var(--lc-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.lads-coffee-page { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.lc-container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.lc-svg-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  background: linear-gradient(90deg, #03286e 0%, #062f80 48%, #04276d 100%);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 28px rgba(4, 29, 78, .18);
  backdrop-filter: blur(12px);
}
.lc-header__inner {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}
.lc-header .lc-brand {
  position: absolute;
  left: -8px;
  top: 50%;
  z-index: 2;
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-38%);
  filter: drop-shadow(0 12px 18px rgba(3, 24, 69, .28));
}
.lc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lc-white);
  font-family: var(--lc-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.lc-header .lc-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.lc-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.lc-header .lc-brand img {
  width: 104px;
  height: 104px;
  margin-top: 30px;
  border-radius: 50%;
}
.lc-nav,
.lc-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.lc-nav {
  grid-column: 2;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.lc-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lc-nav a {
  position: relative;
  display: block;
  padding: 9px 0;
}
.lc-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 2px;
  transform: translateX(-50%) scaleX(0);
  background: #fff;
  border-radius: 10px;
  transition: transform .2s ease;
}
.lc-nav a:hover::after,
.lc-nav a:focus-visible::after,
.lc-nav a.is-active::after,
.lc-nav a[aria-current="location"]::after,
.lc-nav:not(.lc-nav--section-aware) .current-menu-item > a:not([href*="#"])::after {
  transform: translateX(-50%) scaleX(1);
}
.lc-mobile-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--lc-white);
  border-radius: 9px;
  cursor: pointer;
}
.lc-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.lc-btn:hover { transform: translateY(-1px); }
.lc-btn--green {
  color: var(--lc-white);
  background: var(--lc-green);
  box-shadow: 0 12px 28px rgba(39, 196, 102, 0.27);
}
.lc-btn--green:hover { background: var(--lc-green-dark); }
.lc-btn--ghost {
  color: var(--lc-ink);
  background: var(--lc-white);
  border-color: rgba(8, 44, 80, 0.18);
  box-shadow: 0 8px 18px rgba(8, 44, 80, 0.06);
}
.lc-btn--nav {
  grid-column: 3;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  border-color: rgba(255,255,255,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 10px 20px rgba(0,0,0,.14);
  white-space: nowrap;
}
.lc-btn .lc-svg-icon { width: 15px; height: 15px; }

.lc-hero {
  position: relative;
  min-height: 590px;
  padding: 118px 0 86px;
  background:
    linear-gradient(135deg, rgba(255,248,234,.68), rgba(239,244,255,.92) 46%, rgba(221,232,247,.98)),
    var(--lc-soft);
  overflow: hidden;
}
.lc-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 32px;
  width: 760px;
  height: 250px;
  background: var(--lc-navy);
  border-radius: 55% 45% 50% 50% / 52% 48% 52% 48%;
  transform: rotate(-2deg);
}
.lc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 58px;
}
.lc-kicker {
  margin: 0 0 12px;
  color: var(--lc-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lc-title {
  margin: 0;
  font-family: var(--lc-serif);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--lc-ink);
}
.lc-hero h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.94;
}
.lc-lead {
  max-width: 520px;
  margin: 18px 0 28px;
  color: #183c5e;
  font-size: 15px;
  font-weight: 700;
}
.lc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}
.lc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--lc-muted);
  font-size: 12px;
  font-weight: 800;
}
.lc-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lc-hero__meta .lc-svg-icon { width: 16px; height: 16px; color: var(--lc-amber); }
.lc-hero__visual {
  position: relative;
  min-height: 372px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lc-hero__visual img {
  position: relative;
  z-index: 2;
  width: min(720px, 105%);
  filter: drop-shadow(0 24px 26px rgba(8, 30, 56, 0.18));
}

.lc-about {
  padding: 58px 0 72px;
  background: var(--lc-soft-2);
}
.lc-about__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
}
.lc-section-title {
  margin: 0 0 18px;
  font-family: var(--lc-serif);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--lc-ink);
}
.lc-section-copy,
.lc-section-subtitle {
  margin: 0;
  color: #264865;
  font-size: 14px;
  font-weight: 700;
}
.lc-section-copy { max-width: 435px; }
.lc-section-subtitle {
  max-width: 620px;
  margin: 12px auto 0;
  color: rgba(255,255,255,.72);
}
.lc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lc-feature-card {
  min-height: 184px;
  padding: 28px 23px;
  background: var(--lc-white);
  border: 1px solid rgba(8, 44, 80, 0.08);
  border-radius: var(--lc-radius);
  box-shadow: var(--lc-shadow-soft);
  text-align: center;
}
.lc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--lc-white);
  background: var(--lc-navy);
  border-radius: 10px;
}
.lc-icon .lc-svg-icon { width: 21px; height: 21px; }
.lc-feature-card h3,
.lc-menu-card h3,
.lc-step h3 {
  margin: 0;
  color: var(--lc-ink);
  font-family: var(--lc-serif);
  font-weight: 800;
  letter-spacing: 0;
}
.lc-feature-card h3 { font-size: 17px; }
.lc-feature-card p {
  margin: 8px auto 0;
  max-width: 220px;
  color: #45586d;
  font-size: 12px;
  font-weight: 700;
}

.lc-menu-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 70px;
  background:
    radial-gradient(circle at 14% 96%, rgba(28, 89, 158, .36) 0 28px, transparent 29px),
    radial-gradient(circle at 96% 18%, rgba(30, 92, 160, .28) 0 30px, transparent 31px),
    radial-gradient(circle at 50% -14%, rgba(25, 93, 178, .58), transparent 46%),
    linear-gradient(180deg, #052f78 0%, #032b70 48%, #022665 100%);
  color: var(--lc-white);
}
.lc-menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}
.lc-menu-section::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: .22;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.35) 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 6%, rgba(255,255,255,.30) 0 12px, transparent 13px),
    radial-gradient(ellipse at 94% 50%, rgba(255,255,255,.30) 0 12px, transparent 13px),
    radial-gradient(ellipse at 50% 94%, rgba(255,255,255,.30) 0 12px, transparent 13px),
    radial-gradient(ellipse at 6% 50%, rgba(255,255,255,.30) 0 12px, transparent 13px);
}
.lc-menu-section .lc-container {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 60px));
}
.lc-section-head {
  text-align: center;
  margin-bottom: 14px;
}
.lc-menu-section .lc-kicker {
  margin-bottom: 2px;
  color: rgba(255,255,255,.9);
  font-size: 8px;
  letter-spacing: .13em;
  text-shadow: none;
}
.lc-section-head .lc-title {
  color: var(--lc-white);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  text-shadow: none;
}
.lc-divider {
  display: block;
  position: relative;
  width: 74px;
  height: 12px;
  margin: 5px auto 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.95) 0 3px, transparent 3.8px),
    radial-gradient(circle at calc(50% - 8px) 50%, rgba(255,255,255,.95) 0 2px, transparent 2.8px),
    radial-gradient(circle at calc(50% + 8px) 50%, rgba(255,255,255,.95) 0 2px, transparent 2.8px);
}
.lc-divider::before,
.lc-divider::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 25px;
  height: 2px;
  background: rgba(255,255,255,.82);
  border-radius: 999px;
}
.lc-divider::before { left: 0; }
.lc-divider::after { right: 0; }
.lc-menu-section .lc-section-subtitle,
.lc-el-catalog-copy {
  display: none;
}
.lc-catalog-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.lc-catalog-toolbar {
  display: none;
}
.lc-catalog-toolbar strong {
  color: var(--lc-white);
  font-weight: 900;
}
.lc-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.lc-menu-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--lc-white);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 8px;
  color: var(--lc-ink);
  box-shadow: 0 4px 0 rgba(0,0,0,.12), 0 12px 22px rgba(0,0,0,.17);
}
.lc-menu-card__image {
  position: relative;
  aspect-ratio: 1.17 / 1;
  overflow: hidden;
  background: #f3f5f8;
}
.lc-menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.lc-menu-card:hover .lc-menu-card__image img { transform: scale(1.035); }
.lc-menu-badge {
  display: none;
}
.lc-menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 8px 8px 7px;
}
.lc-menu-card__top {
  display: block;
  margin-bottom: 6px;
}
.lc-menu-card h3 {
  overflow-wrap: anywhere;
  font-family: var(--lc-sans);
  font-size: 10px;
  line-height: 1.18;
  color: #073071;
}
.lc-price {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  color: #073071;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.lc-menu-card p {
  min-height: 38px;
  margin: 0 0 12px;
  color: #10284d;
  font-size: 8px;
  line-height: 1.45;
  font-weight: 650;
}
.lc-menu-card .lc-btn {
  width: 100%;
  min-height: 23px;
  margin-top: auto;
  border-radius: 5px;
  background: #073071;
  box-shadow: 0 3px 0 rgba(2, 22, 54, .32);
  font-size: 7.5px;
  font-weight: 900;
  gap: 4px;
  padding: 0 6px;
}
.lc-menu-card .lc-btn:hover { background: #0a3b87; }
.lc-menu-card .lc-btn .lc-svg-icon {
  width: 12px;
  height: 12px;
  color: #25d366;
  fill: none;
}
.lc-menu-more {
  margin-top: 18px;
  text-align: center;
}
.lc-btn--outline-light {
  color: var(--lc-white);
  background: transparent;
  border-color: rgba(255,255,255,.58);
  border-width: 2px;
  min-height: 29px;
  min-width: 132px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.lc-btn--outline-light:hover { background: rgba(255,255,255,.08); }
.lc-btn--outline-light::after {
  content: ">";
  margin-left: 12px;
  font-size: 16px;
  line-height: 1;
}

.lc-order {
  padding: 76px 0 84px;
  background: #f8faff;
}
.lc-order .lc-section-head { margin-bottom: 52px; }
.lc-order .lc-title { color: var(--lc-ink); }
.lc-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.lc-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: rgba(8,44,80,.13);
}
.lc-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.lc-step .lc-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  color: var(--lc-ink);
  background: var(--lc-white);
  border: 4px solid var(--lc-ink);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(8, 44, 80, .10);
}
.lc-step h3 { font-size: 17px; }
.lc-step p {
  margin: 5px auto 0;
  max-width: 250px;
  color: #4d5e71;
  font-size: 12px;
  font-weight: 700;
}

.lc-location {
  padding: 84px 0 80px;
  background: var(--lc-white);
}
.lc-location__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 74px;
  align-items: center;
}
.lc-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #344e68;
  font-size: 14px;
  font-weight: 800;
}
.lc-address .lc-svg-icon { width: 18px; height: 18px; color: var(--lc-amber); }
.lc-location-action { margin-top: 28px; }
.lc-map-card {
  overflow: hidden;
  min-height: 286px;
  border-radius: 14px;
  box-shadow: 0 24px 44px rgba(8, 44, 80, .20);
  border: 1px solid rgba(8,44,80,.08);
  background: #d6dfeb;
}
.lc-map-card iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  filter: saturate(.82) contrast(.94);
}

.lc-contact {
  padding: 72px 0;
  background: var(--lc-navy);
}
.lc-contact-grid {
  display: grid;
  grid-template-columns: 1.03fr 1fr 1.03fr;
  gap: 22px;
}
.lc-contact-card {
  min-height: 200px;
  padding: 28px;
  border-radius: 14px;
  background: #1c416d;
  color: rgba(255,255,255,.80);
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.lc-contact-card--primary {
  background: var(--lc-white);
  color: var(--lc-ink);
}
.lc-contact-card .lc-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.12);
  color: var(--lc-white);
}
.lc-contact-card--primary .lc-icon { background: var(--lc-green); }
.lc-contact-label {
  margin: 0 0 10px;
  color: inherit;
  opacity: .72;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lc-contact-value {
  margin: 0 0 15px;
  color: inherit;
  font-family: var(--lc-serif);
  font-size: 22px;
  font-weight: 800;
}
.lc-contact-small {
  margin: 0;
  font-family: var(--lc-sans);
  font-size: 12px;
  font-weight: 800;
  opacity: .72;
}
.lc-contact-card .lc-btn {
  min-height: 32px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 11px;
}
.lc-contact-card .lc-btn--muted {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}

.lc-page-content {
  min-height: 40vh;
  background: var(--lc-white);
}
.lc-page-article {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}
.lc-page-content--elementor,
.lc-page-content--elementor .lc-page-article {
  width: 100%;
  max-width: none;
  padding: 0;
}
.elementor-page .lc-page-content {
  width: 100%;
  max-width: none;
}

.lc-footer {
  padding: 70px 0 30px;
  background: #062747;
  color: rgba(255,255,255,.72);
}
.lc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .85fr 1fr;
  gap: 64px;
}
.lc-footer .lc-brand { margin-bottom: 26px; }
.lc-footer p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}
.lc-footer h3 {
  margin: 0 0 23px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lc-footer ul { list-style: none; padding: 0; margin: 0; }
.lc-footer li + li { margin-top: 13px; }
.lc-footer a:hover { color: var(--lc-white); }
.lc-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.lc-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.09);
}
.lc-socials .lc-svg-icon { width: 15px; height: 15px; }
.lc-footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.lc-footer-contact .lc-svg-icon { width: 14px; height: 14px; flex: 0 0 auto; }
.lc-footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.44);
}

/* Elementor import template styling */
.lc-el-section.elementor-section {
  padding: 76px 24px;
}
.lc-el-hero.elementor-section {
  padding-top: 106px;
  padding-bottom: 86px;
  background: linear-gradient(135deg, rgba(255,248,234,.72), rgba(239,244,255,.95) 48%, rgba(221,232,247,.98));
  overflow: hidden;
}
.lc-el-hero .elementor-container,
.lc-el-section .elementor-container {
  max-width: 1160px;
}
.lc-el-hero-title .elementor-heading-title,
.lc-el-title .elementor-heading-title {
  font-family: var(--lc-serif);
  letter-spacing: 0;
  color: var(--lc-ink);
}
.lc-el-hero-title .elementor-heading-title {
  font-size: clamp(54px, 7vw, 92px);
  line-height: .94;
}
.lc-el-kicker .elementor-heading-title {
  color: var(--lc-amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lc-el-copy {
  color: #264865;
  font-size: 15px;
  font-weight: 700;
}
.lc-el-hero-image img {
  filter: drop-shadow(0 24px 26px rgba(8, 30, 56, 0.18));
}
.lc-el-button .elementor-button {
  border-radius: 8px;
  background: var(--lc-green);
  color: var(--lc-white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(39, 196, 102, .27);
}
.lc-el-button-secondary .elementor-button {
  border-radius: 8px;
  background: var(--lc-white);
  color: var(--lc-ink);
  border: 1px solid rgba(8,44,80,.18);
  font-weight: 800;
}
.lc-el-about.elementor-section,
.lc-el-steps.elementor-section {
  background: #f8faff;
}
.lc-el-catalog.elementor-section,
.lc-el-contact-band.elementor-section {
  background:
    radial-gradient(circle at 14% 96%, rgba(28, 89, 158, .36) 0 28px, transparent 29px),
    radial-gradient(circle at 96% 18%, rgba(30, 92, 160, .28) 0 30px, transparent 31px),
    radial-gradient(circle at 50% -14%, rgba(25, 93, 178, .58), transparent 46%),
    linear-gradient(180deg, #052f78 0%, #032b70 48%, #022665 100%);
}
.lc-el-catalog.elementor-section {
  padding-top: 16px;
  padding-bottom: 14px;
}
.lc-el-catalog-list.elementor-section {
  padding-top: 0;
  padding-bottom: 44px;
}
.lc-el-catalog .elementor-container {
  max-width: 1160px;
}
.lc-el-catalog .lc-el-title .elementor-heading-title,
.lc-el-contact-band .lc-el-title .elementor-heading-title,
.lc-el-catalog .lc-el-copy,
.lc-el-contact-band .lc-el-copy {
  color: var(--lc-white);
}
.lc-el-catalog .lc-el-kicker .elementor-heading-title {
  color: rgba(255,255,255,.9);
  font-size: 8px;
  text-shadow: none;
}
.lc-el-catalog .lc-el-title .elementor-heading-title {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  text-shadow: none;
}
.lc-el-feature-card .elementor-widget-wrap,
.lc-el-step-card .elementor-widget-wrap,
.lc-el-contact-card .elementor-widget-wrap {
  border-radius: var(--lc-radius);
  background: var(--lc-white);
  border: 1px solid rgba(8,44,80,.08);
  box-shadow: var(--lc-shadow-soft);
  padding: 28px 22px;
}
.lc-el-feature-card .elementor-icon,
.lc-el-step-card .elementor-icon,
.lc-el-contact-card .elementor-icon {
  color: var(--lc-navy);
}
.lc-el-product-card .elementor-widget-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 13px;
  background: var(--lc-white);
  box-shadow: 0 16px 32px rgba(0,0,0,.14);
}
.lc-el-product-card .elementor-widget-image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}
.lc-el-product-card .elementor-widget-heading,
.lc-el-product-card .elementor-widget-text-editor,
.lc-el-product-card .elementor-widget-button {
  padding-left: 18px;
  padding-right: 18px;
}
.lc-el-product-card .elementor-widget-button {
  padding-bottom: 18px;
  margin-top: auto;
}
.lc-el-product-card .elementor-button {
  width: 100%;
  border-radius: 8px;
  background: var(--lc-green);
  font-size: 12px;
  font-weight: 800;
}
.lc-el-product-badge .elementor-heading-title {
  display: inline-block;
  margin: 14px 18px 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--lc-cream);
  color: var(--lc-ink);
  border: 1px solid rgba(213,154,52,.24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lc-el-product-title .elementor-heading-title {
  color: var(--lc-ink);
  font-family: var(--lc-serif);
  font-size: 18px;
  line-height: 1.12;
}
.lc-el-product-price .elementor-heading-title {
  color: var(--lc-amber);
  font-size: 13px;
  font-weight: 900;
}
.lc-el-product-card .elementor-widget-text-editor {
  min-height: 64px;
  color: #657386;
  font-size: 12px;
  font-weight: 700;
}
.lc-el-map iframe {
  border-radius: 14px;
  box-shadow: 0 24px 44px rgba(8, 44, 80, .20);
}
.lc-el-contact-card .elementor-widget-wrap {
  background: #1c416d;
  color: rgba(255,255,255,.84);
}
.lc-el-contact-card .elementor-heading-title,
.lc-el-contact-card .elementor-text-editor,
.lc-el-contact-card .elementor-icon {
  color: var(--lc-white);
}

@media (max-width: 1180px) {
  .lc-menu-section .lc-container { width: calc(100% - 60px); }
  .lc-menu-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .lc-hero__grid,
  .lc-about__grid,
  .lc-location__grid,
  .lc-footer-grid { gap: 36px; }
  .lc-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .lc-container { width: min(100% - 32px, 680px); }
  .lc-header__inner {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    min-height: 64px;
  }
  .lc-header .lc-brand {
    width: 78px;
    height: 78px;
    transform: translateY(-36%);
  }
  .lc-header .lc-brand img {
    width: 78px;
    height: 78px;
  }
  .lc-mobile-toggle { display: inline-block; }
  .lc-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    gap: 3px;
    padding: 16px;
    background: #082b4e;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    box-shadow: var(--lc-shadow);
  }
  .lc-nav.is-open { display: flex; }
  .lc-nav__list {
    width: 100%;
    flex-direction: column;
    gap: 3px;
  }
  .lc-nav li { width: 100%; }
  .lc-nav a { width: 100%; padding: 12px 10px; text-align: center; }
  .lc-header .lc-btn--nav { display: none; }
  .lc-hero { min-height: auto; padding: 82px 0 54px; }
  .lc-hero::after {
    right: -36%;
    bottom: 20px;
    width: 620px;
    height: 190px;
  }
  .lc-hero__grid,
  .lc-about__grid,
  .lc-location__grid,
  .lc-contact-grid {
    grid-template-columns: 1fr;
  }
  .lc-hero__visual { order: -1; min-height: 250px; }
  .lc-feature-grid,
  .lc-steps {
    grid-template-columns: 1fr;
  }
  .lc-steps::before { display: none; }
  .lc-contact-grid { gap: 16px; }
}

@media (max-width: 720px) {
  .lc-menu-section .lc-container { width: min(100% - 32px, 520px); }
  .lc-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lc-menu-card h3 { font-size: 14px; }
  .lc-menu-card p { font-size: 12px; min-height: 44px; }
  .lc-price { font-size: 17px; }
  .lc-menu-card .lc-btn { min-height: 34px; font-size: 11px; }
  .lc-menu-card .lc-btn .lc-svg-icon { width: 15px; height: 15px; }
}

@media (max-width: 600px) {
  .lc-brand { font-size: 18px; }
  .lc-brand img { width: 38px; height: 38px; }
  .lc-header__inner {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    min-height: 60px;
  }
  .lc-header .lc-brand {
    width: 68px;
    height: 68px;
    transform: translateY(-34%);
  }
  .lc-header .lc-brand img {
    width: 68px;
    height: 68px;
  }
  .lc-hero h1 { font-size: 54px; }
  .lc-hero__actions { flex-direction: column; align-items: stretch; }
  .lc-btn { width: 100%; }
  .lc-hero__meta { gap: 14px; }
  .lc-catalog-shell { padding: 0; border-radius: 0; }
  .lc-catalog-toolbar { flex-direction: column; gap: 4px; }
  .lc-about, .lc-menu-section, .lc-order, .lc-location, .lc-contact, .lc-footer { padding-left: 0; padding-right: 0; }
  .lc-map-card iframe { height: 280px; }
  .lc-footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .lc-footer-bottom { margin-top: 38px; }
  .lc-page-article {
    width: min(100% - 32px, 680px);
    padding: 52px 0;
  }
}

/* Reference catalog override: keep shortcode output identical in fallback and Elementor. */
body .lc-menu-section,
body .lc-el-catalog.elementor-section {
  background:
    radial-gradient(circle at 12% 96%, rgba(21, 76, 150, .34) 0 28px, transparent 29px),
    radial-gradient(circle at 97% 17%, rgba(29, 84, 157, .28) 0 30px, transparent 31px),
    radial-gradient(circle at 50% -14%, rgba(21, 89, 175, .55), transparent 45%),
    linear-gradient(180deg, #06337c 0%, #032b70 50%, #022867 100%) !important;
}
body .lc-menu-section {
  padding-top: 48px !important;
  padding-bottom: 70px !important;
}
body .lc-el-catalog.elementor-section {
  padding-top: 48px !important;
  padding-bottom: 24px !important;
}
body .lc-el-catalog-list.elementor-section {
  padding-top: 0 !important;
  padding-bottom: 70px !important;
}
body .lc-menu-section .lc-container,
body .lc-el-catalog .elementor-container {
  width: min(1180px, calc(100% - 96px)) !important;
  max-width: 1180px !important;
}
body .lc-menu-section .lc-section-head,
body .lc-el-catalog .elementor-widget-heading,
body .lc-el-catalog .elementor-widget-text-editor {
  margin-bottom: 0 !important;
}
body .lc-menu-section .lc-kicker,
body .lc-el-catalog .lc-el-kicker .elementor-heading-title {
  color: rgba(255,255,255,.92) !important;
  font-size: 8px !important;
  letter-spacing: .13em !important;
  margin: 0 0 2px !important;
  text-shadow: none !important;
}
body .lc-menu-section .lc-title,
body .lc-el-catalog .lc-el-title .elementor-heading-title {
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(22px, 2.5vw, 34px) !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-shadow: none !important;
}
body .lc-menu-section .lc-section-subtitle,
body .lc-el-catalog-copy,
body .lc-catalog-toolbar,
body .lc-menu-badge {
  display: none !important;
}
body .lc-divider {
  width: 74px !important;
  height: 12px !important;
  margin: 5px auto 14px !important;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.95) 0 3px, transparent 3.8px),
    radial-gradient(circle at calc(50% - 8px) 50%, rgba(255,255,255,.95) 0 2px, transparent 2.8px),
    radial-gradient(circle at calc(50% + 8px) 50%, rgba(255,255,255,.95) 0 2px, transparent 2.8px) !important;
}
body .lc-divider::before,
body .lc-divider::after {
  top: 6px !important;
  width: 25px !important;
  height: 2px !important;
  background: rgba(255,255,255,.82) !important;
}
body .lc-catalog-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body .lc-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px)) !important;
  justify-content: center !important;
  gap: 22px !important;
}
body .lc-menu-card {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  background: #fff !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  border-radius: 10px !important;
  color: #073071 !important;
  box-shadow: 0 4px 0 rgba(0,0,0,.12), 0 12px 22px rgba(0,0,0,.17) !important;
}
body .lc-menu-card__image {
  position: relative !important;
  aspect-ratio: 1.17 / 1 !important;
  height: auto !important;
  overflow: hidden !important;
  background: #f3f5f8 !important;
}
body .lc-menu-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
body .lc-menu-card__body {
  display: flex !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: 14px 16px 14px !important;
}
body .lc-menu-card__top {
  display: block !important;
  margin-bottom: 6px !important;
}
body .lc-menu-card h3 {
  overflow-wrap: anywhere !important;
  color: #073071 !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  margin: 0 !important;
}
body .lc-menu-card p {
  min-height: 48px !important;
  margin: 0 0 12px !important;
  color: #10284d !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}
body .lc-price {
  display: block !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  color: #073071 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}
body .lc-menu-card .lc-btn,
body .lc-menu-card .lc-btn--green {
  width: 100% !important;
  min-height: 42px !important;
  margin-top: auto !important;
  padding: 0 6px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #073071 !important;
  box-shadow: 0 3px 0 rgba(2, 22, 54, .32) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  gap: 8px !important;
}
body .lc-menu-card .lc-btn .lc-svg-icon {
  width: 17px !important;
  height: 17px !important;
  color: #25d366 !important;
}
body .lc-menu-more {
  display: none !important;
}
body .lc-btn--outline-light {
  min-width: 132px !important;
  min-height: 29px !important;
  padding: 0 20px !important;
  border: 2px solid rgba(255,255,255,.58) !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12) !important;
  color: #fff !important;
  font-size: 8px !important;
  font-weight: 900 !important;
}
body .lc-btn--outline-light::after {
  content: ">" !important;
  margin-left: 12px !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
@media (max-width: 1180px) {
  body .lc-menu-section .lc-container,
  body .lc-el-catalog .elementor-container {
    width: calc(100% - 48px) !important;
  }
  body .lc-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px)) !important;
  }
}
@media (max-width: 720px) {
  body .lc-menu-section .lc-container,
  body .lc-el-catalog .elementor-container {
    width: min(100% - 32px, 520px) !important;
  }
  body .lc-menu-grid {
    grid-template-columns: 1fr !important;
  }
  body .lc-menu-card h3 { font-size: 17px !important; }
  body .lc-menu-card p { min-height: 44px !important; font-size: 12px !important; }
  body .lc-price { font-size: 20px !important; }
  body .lc-menu-card .lc-btn { min-height: 42px !important; font-size: 12px !important; }
  body .lc-menu-card .lc-btn .lc-svg-icon { width: 15px !important; height: 15px !important; }
}
