/* Lakefront Designs Homepage 2.8.1 — homepage content only. */

.lfd-homepage-active {
  --lfd-navy: #07334a;
  --lfd-deep-navy: #03263a;
  --lfd-blue: #0f5875;
  --lfd-pale-blue: #eef8fb;
  --lfd-warm-white: var(--lf-color-warm-white, #fbfaf6);
  --lfd-text: #173542;
  --lfd-muted: #667b84;
  --lfd-border: #dce6e9;
  --lfd-white: var(--lf-color-white, #ffffff);
}

.lfd-homepage-active .site-content,
.lfd-homepage-active .site-content > .ast-container,
.lfd-homepage-active .ast-container,
.lfd-homepage-active #primary,
.lfd-homepage-active .site-main,
.lfd-homepage-active article,
.lfd-homepage-active .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.lfd-homepage-active .site-content > .ast-container {
  display: block;
}

.lfd-homepage-active .entry-header,
.lfd-homepage-active .entry-title,
.lfd-homepage-active .post-thumb,
.lfd-homepage-active .wp-block-post-title,
.lfd-homepage-active .ast-single-post-order,
.lfd-homepage-active .ast-article-single > header {
  display: none !important;
}

.lfd-homepage-active .wp-block-shortcode {
  margin: 0;
}

.lfd-homepage,
.lfd-homepage *,
.lfd-homepage *::before,
.lfd-homepage *::after {
  box-sizing: border-box;
}

.lfd-homepage {
  width: 100%;
  overflow-x: clip;
  background: var(--lfd-warm-white);
  color: var(--lfd-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.lfd-homepage img {
  display: block;
  max-width: 100%;
}

.lfd-homepage a {
  color: inherit;
  text-decoration: none;
}


/* Accessible labels stay available to assistive technology without becoming
   a second visible label beside the responsive lake-search control. */
.lfd-homepage .lfd-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
}

.lfd-homepage button,
.lfd-homepage input,
.lfd-homepage textarea,
.lfd-homepage select {
  font: inherit;
}

.lfd-container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: var(--lf-page-gutter, 24px);
}

.lfd-homepage :is(a, button, input):focus-visible {
  outline: 3px solid var(--lf-color-accent-gold, #e1b55d);
  outline-offset: 3px;
}

/* Hero */
.lfd-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--lfd-deep-navy);
  background-image: var(--lfd-hero-image);
  background-position: center 55%;
  background-size: cover;
  isolation: isolate;
}

.lfd-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 20, 31, 0.86) 0%, rgba(2, 30, 44, 0.68) 40%, rgba(3, 38, 58, 0.24) 68%, rgba(3, 38, 58, 0.1) 100%),
    linear-gradient(0deg, rgba(2, 27, 41, 0.26), rgba(2, 27, 41, 0.02) 50%);
}

.lfd-hero__inner {
  display: flex;
  min-height: 620px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 56px;
}

.lfd-hero__content {
  width: min(100%, 690px);
}

.lfd-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--lfd-white);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(56px, 5.5vw, 74px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.lfd-hero__content > p {
  max-width: 560px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.45;
}

.lfd-hero-search {
  display: flex;
  width: min(100%, 610px);
  min-height: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  background: var(--lfd-white);
  box-shadow: 0 16px 38px rgba(2, 24, 36, 0.24);
}

.lfd-hero-search__icon {
  display: inline-grid;
  width: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--lfd-blue);
}

.lfd-hero-search__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lfd-hero-search input {
  min-width: 0;
  min-height: 56px;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 12px 10px 0;
  background: transparent;
  color: var(--lfd-text);
  font-size: 15px;
}

.lfd-hero-search input::placeholder {
  color: #798b94;
  opacity: 1;
}

.lfd-hero-search button {
  align-self: stretch;
  min-width: 112px;
  border: 0;
  border-left: 1px solid #d4e0e5;
  padding: 0 22px;
  background: var(--lfd-blue);
  color: var(--lfd-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.lfd-hero-search button:hover {
  background: var(--lfd-deep-navy);
}

.lfd-popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
}

.lfd-popular-searches > span {
  margin-right: 2px;
  font-weight: 700;
}

.lfd-popular-searches a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(3, 38, 58, 0.36);
  color: var(--lfd-white);
  font-weight: 700;
  backdrop-filter: blur(3px);
}

.lfd-popular-searches a:hover {
  border-color: var(--lfd-white);
  background: rgba(255, 255, 255, 0.14);
}

/* Shared sections */
.lfd-section {
  padding-block: 58px;
}

.lfd-eyebrow {
  margin: 0 0 10px;
  color: var(--lfd-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lfd-section h2,
.lfd-request h2 {
  margin: 0;
  color: var(--lfd-navy);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(34px, 3.25vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

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

.lfd-text-link,
.lfd-card-link,
.lfd-region-card > a,
.lfd-region-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--lfd-blue);
  font-size: 12px;
  font-weight: 800;
}

.lfd-text-link:hover,
.lfd-card-link:hover,
.lfd-region-card > a:hover {
  color: var(--lfd-deep-navy);
}

.lfd-directory-cta-link {
  min-height: 42px;
  gap: 7px;
  border: 1px solid rgba(51, 127, 150, 0.34);
  border-radius: 4px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--lfd-blue);
  font-size: 12px;
  text-decoration: none;
}

.lfd-directory-cta-link:hover,
.lfd-directory-cta-link:focus-visible {
  border-color: var(--lfd-blue);
  background: var(--lfd-white);
  color: var(--lfd-deep-navy);
}

.lfd-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 10px 18px;
  background: var(--lfd-blue);
  color: var(--lfd-white);
  font-size: 12px;
  font-weight: 800;
}

.lfd-button:hover {
  background: var(--lfd-deep-navy);
  color: var(--lfd-white);
}

.lfd-button--outline {
  border-color: var(--lfd-blue);
  background: transparent;
  color: var(--lfd-blue);
}

.lfd-button--outline:hover {
  background: var(--lfd-blue);
  color: var(--lfd-white);
}

.lfd-button--light {
  min-width: 250px;
  background: var(--lfd-white);
  color: var(--lfd-blue);
}

.lfd-button--light:hover {
  background: var(--lfd-pale-blue);
  color: var(--lfd-deep-navy);
}

/* Regions */
.lfd-regions {
  padding-block: 54px;
  background: var(--lfd-pale-blue);
}

.lfd-regions__layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.lfd-section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 8px;
}

.lfd-section-intro h2 {
  max-width: 260px;
  font-size: clamp(34px, 3vw, 44px);
}

.lfd-section-intro > p:not(.lfd-eyebrow) {
  max-width: 270px;
  margin: 16px 0 16px;
  color: var(--lfd-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lfd-regions__all-link {
  margin-top: 2px;
  font-size: 12px;
  text-decoration: none;
}

.lfd-regions__all-link:hover,
.lfd-regions__all-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lfd-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  scroll-margin-top: 24px;
}

.lfd-region-grid:focus {
  outline: none;
}

.lfd-region-grid:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--lf-color-accent-gold, #e1b55d);
  outline-offset: 5px;
}

.lfd-region-card {
  display: grid;
  min-height: 204px;
  min-width: 0;
  grid-template-rows: 48px minmax(44px, auto) 38px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--lfd-border);
  border-radius: 5px;
  padding: 22px 14px 20px;
  background: var(--lfd-white);
  box-shadow: 0 5px 16px rgba(7, 51, 74, 0.045);
  text-align: center;
}

.lfd-region-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--lfd-blue);
}

.lfd-region-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.lfd-region-card h3 {
  display: flex;
  min-height: 44px;
  max-width: 150px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--lfd-navy);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.lfd-region-card > a {
  min-height: 38px;
  margin: 0;
  align-self: center;
  font-size: 12px;
  text-decoration: none;
}

.lfd-region-card > a:hover,
.lfd-region-card > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Lake cards */
.lfd-lakes {
  background: var(--lfd-warm-white);
}

.lfd-lake-grid,
.lfd-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lfd-lake-card,
.lfd-story-card,
.lfd-community-card,
.lfd-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lfd-border);
  border-radius: 5px;
  background: var(--lfd-white);
  box-shadow: 0 8px 24px rgba(7, 51, 74, 0.045);
}

.lfd-lake-card {
  display: flex;
  min-height: 518px;
  flex-direction: column;
}

.lfd-card-image {
  display: block;
  overflow: hidden;
}

.lfd-lake-card .lfd-card-image img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lfd-lake-card:hover .lfd-card-image img,
.lfd-story-card:hover .lfd-card-image img,
.lfd-community-card:hover .lfd-card-image img,
.lfd-product-card:hover .lfd-card-image img {
  transform: scale(1.025);
}

.lfd-lake-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 17px 15px;
}

.lfd-lake-card__region {
  margin: 0 0 5px;
  color: var(--lfd-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lfd-lake-card h3,
.lfd-story-card h3,
.lfd-community-card h3,
.lfd-product-card h3 {
  margin: 0;
  color: var(--lfd-blue);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.lfd-lake-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin: 14px 0 13px;
}

.lfd-lake-fact {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 5px;
  color: var(--lfd-muted);
}

.lfd-lake-fact__icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--lfd-blue);
}

.lfd-lake-fact__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.lfd-lake-fact strong,
.lfd-lake-fact small {
  display: block;
}

.lfd-lake-fact strong {
  overflow: hidden;
  color: var(--lfd-text);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.lfd-lake-fact small {
  margin-top: 2px;
  font-size: 8px;
  line-height: 1.25;
}

.lfd-lake-card__description {
  margin: 0 0 13px;
  color: var(--lfd-muted);
  font-size: 12px;
  line-height: 1.55;
}

.lfd-lake-card .lfd-card-link {
  width: fit-content;
  min-height: 36px;
  margin-top: auto;
  border: 1px solid var(--lfd-border);
  border-radius: 3px;
  padding: 7px 11px;
}

/* Stories */
.lfd-stories {
  background: var(--lfd-pale-blue);
}

.lfd-story-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
}

.lfd-story-card .lfd-card-image img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lfd-story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px 16px 14px;
}

.lfd-story-card h3 {
  color: var(--lfd-blue);
  font-size: 15px;
}

.lfd-story-card__body > p {
  margin: 9px 0 16px;
  color: var(--lfd-muted);
  font-size: 12px;
  line-height: 1.48;
}

.lfd-story-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  color: #7f929b;
  font-size: 9px;
}

.lfd-story-card__meta span + span::before {
  content: "•";
  margin-right: 7px;
}

.lfd-story-card.is-placeholder .lfd-story-card__meta {
  font-style: italic;
}

/* Community */
.lfd-community {
  background: var(--lfd-warm-white);
}

.lfd-share-link {
  gap: 8px;
}

.lfd-share-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.lfd-community-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.lfd-community-card {
  min-height: 340px;
}

.lfd-community-card .lfd-card-image img,
.lfd-community-card > img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lfd-community-card__body {
  padding: 14px 14px 16px;
}

.lfd-community-card blockquote {
  min-height: 68px;
  margin: 0 0 13px;
  color: var(--lfd-text);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.42;
}

.lfd-community-card__body > p {
  margin: 0;
  color: var(--lfd-muted);
  font-size: 10px;
  line-height: 1.45;
}

.lfd-community-card__body strong,
.lfd-community-card__body span {
  display: block;
}

.lfd-community-card__body strong {
  color: var(--lfd-text);
  font-size: 11px;
}

/* Products */
.lfd-products {
  background: #f8f4ec;
}

.lfd-products__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 245px;
  align-items: start;
  gap: 28px;
}

.lfd-products__layout--no-personalize {
  grid-template-columns: 240px minmax(0, 1fr);
}

.lfd-products__intro h2 {
  font-size: clamp(31px, 2.7vw, 42px);
}

.lfd-products__intro > p:not(.lfd-eyebrow) {
  margin: 16px 0 18px;
  color: var(--lfd-muted);
  font-size: 13px;
  line-height: 1.62;
}

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

.lfd-product-card {
  position: relative;
  min-height: 332px;
}

.lfd-product-card .lfd-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.lfd-product-card.is-signature {
  border-color: #b9d7e0;
  box-shadow: 0 6px 20px rgba(15, 88, 117, 0.08);
}

.lfd-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  background: var(--lfd-blue);
  color: var(--lfd-white);
  font-size: 9px;
  font-weight: 800;
}

.lfd-product-card__body {
  padding: 13px 14px 15px;
}

.lfd-product-card h3 {
  font-size: 13px;
}

.lfd-product-card__body > p {
  min-height: 38px;
  margin: 6px 0 9px;
  color: var(--lfd-muted);
  font-size: 10px;
  line-height: 1.45;
}

.lfd-product-card__price {
  color: var(--lfd-blue);
  font-size: 10px;
  font-weight: 800;
}

.lfd-product-card__price .amount {
  color: inherit;
}


.lfd-product-custom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  border: 1px solid #d5e2e5;
  border-radius: 6px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.72);
}

.lfd-product-custom-cta .lfd-eyebrow { margin-bottom: 5px; }

.lfd-product-custom-cta h3 {
  max-width: 690px;
  margin: 0;
  color: var(--lfd-navy);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.lfd-product-custom-cta__copy > p:last-child {
  margin: 7px 0 0;
  color: var(--lfd-muted);
  font-size: 11px;
  line-height: 1.45;
}

.lfd-product-custom-cta__button {
  min-width: 220px;
  white-space: nowrap;
}

.lfd-personalize {
  border-left: 1px dashed #bdcbd0;
  padding-left: 26px;
}

.lfd-personalize .lfd-eyebrow {
  margin-bottom: 18px;
}

.lfd-personalize__list {
  display: grid;
  gap: 18px;
}

.lfd-personalize__list > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.lfd-personalize__list > div > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--lfd-blue);
}

.lfd-personalize__list svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lfd-personalize__list p {
  margin: 0;
  color: var(--lfd-muted);
  font-size: 10px;
  line-height: 1.45;
}

.lfd-personalize__list strong {
  display: block;
  color: var(--lfd-text);
  font-size: 11px;
}

/* Lake discovery ribbon */
.lfd-request {
  position: relative;
  overflow: hidden;
  padding-block: 30px;
  background-color: var(--lfd-blue);
  background-image: url("../images/topography.svg");
  background-position: center;
  background-size: 760px auto;
}

.lfd-request__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.lfd-request__message {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.lfd-request__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lfd-white);
}

.lfd-request__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lfd-request h2 {
  margin: 0;
  color: var(--lfd-white);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 1.04;
}

.lfd-request__message p {
  max-width: 650px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.lfd-request__actions {
  display: grid;
  min-width: 250px;
  justify-items: end;
  gap: 10px;
}

.lfd-request__actions .lfd-button--light {
  min-width: 190px;
  justify-content: center;
}

.lfd-request__custom {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 1.35;
  text-align: right;
}

.lfd-request__custom-link {
  color: var(--lfd-white);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 3px;
}

.lfd-request__custom-link:hover,
.lfd-request__custom-link:focus-visible {
  color: var(--lfd-white);
  text-decoration: underline;
}

/* Large tablet / small desktop */
@media (max-width: 1180px) {
  

  

  

  .lfd-regions__layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
  }

  .lfd-region-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lfd-region-card {
    min-height: 196px;
  }

  .lfd-products__layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .lfd-personalize {
    grid-column: 1 / -1;
    border-top: 1px dashed #bdcbd0;
    border-left: 0;
    padding-top: 24px;
    padding-left: 0;
  }

  .lfd-personalize__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  
}

@media (max-width: 1024px) {
  

  

  

  

  

  

  

  

  

  

  

  

  .lfd-hero,
  .lfd-hero__inner {
    min-height: 560px;
  }

  .lfd-section {
    padding-block: 52px;
  }

  .lfd-regions__layout {
    grid-template-columns: 1fr;
  }

  .lfd-section-intro {
    max-width: 640px;
    padding-top: 0;
  }

  .lfd-section-intro h2,
  .lfd-section-intro > p:not(.lfd-eyebrow) {
    max-width: 640px;
  }

  .lfd-region-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lfd-lake-grid,
  .lfd-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfd-community-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lfd-products__layout {
    grid-template-columns: 1fr;
  }

  .lfd-products__intro {
    max-width: 650px;
  }

  .lfd-personalize {
    grid-column: auto;
  }

  

  
}

@media (max-width: 768px) {
  .lfd-container {
    padding-inline: 20px;
  }

  .lfd-hero,
  .lfd-hero__inner {
    min-height: 540px;
  }

  .lfd-hero {
    background-position: 62% center;
  }

  .lfd-hero__inner {
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .lfd-hero h1 {
    font-size: clamp(46px, 12vw, 62px);
  }

  .lfd-hero__content > p {
    max-width: 520px;
    font-size: 16px;
  }

  .lfd-hero-search {
    min-height: 56px;
  }

  .lfd-hero-search input {
    min-height: 54px;
  }

  .lfd-hero-search button {
    min-width: 96px;
  }

  .lfd-popular-searches > span {
    width: 100%;
  }

  .lfd-section {
    padding-block: 44px;
  }

  .lfd-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 23px;
  }

  .lfd-region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .lfd-region-card {
    min-height: 184px;
    padding: 20px 12px 18px;
  }

  .lfd-community-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    overscroll-behavior-inline: contain;
  }

  .lfd-community-card {
    min-width: min(78vw, 310px);
    scroll-snap-align: start;
  }

  .lfd-product-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .lfd-product-card {
    scroll-snap-align: start;
  }

  .lfd-personalize__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfd-request {
    padding-block: 28px;
  }

  .lfd-request__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .lfd-request__message {
    align-items: flex-start;
  }

  .lfd-request__actions {
    width: 100%;
    min-width: 0;
    justify-items: stretch;
  }

  .lfd-request__actions .lfd-button--light {
    width: 100%;
    min-width: 0;
  }

  .lfd-request__custom {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  

  

  
}

@media (max-width: 560px) {
  

  

  .lfd-hero,
  .lfd-hero__inner {
    min-height: 535px;
  }

  .lfd-hero h1 {
    font-size: clamp(42px, 12.5vw, 54px);
  }

  .lfd-hero__content > p {
    margin: 18px 0 22px;
    font-size: 16px;
    font-weight: 500;
  }

  .lfd-hero-search__icon {
    width: 42px;
  }

  .lfd-hero-search button {
    min-width: 88px;
    padding-inline: 12px;
  }

  .lfd-section h2,
  .lfd-request h2 {
    font-size: clamp(31px, 9.5vw, 40px);
  }

  .lfd-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lfd-region-card {
    min-height: 178px;
    grid-template-rows: 44px minmax(40px, auto) 36px;
    padding: 18px 10px 16px;
  }

  .lfd-region-card__icon {
    width: 44px;
    height: 44px;
  }

  .lfd-region-card__icon svg {
    width: 39px;
    height: 39px;
  }

  .lfd-lake-grid,
  .lfd-story-grid {
    grid-template-columns: 1fr;
  }

  .lfd-lake-card {
    min-height: 500px;
  }

  .lfd-product-grid {
    grid-template-columns: 82vw 82vw 82vw;
  }

  .lfd-personalize__list {
    grid-template-columns: 1fr;
  }

  .lfd-request__message {
    gap: 14px;
  }

  .lfd-request__icon {
    width: 44px;
    height: 44px;
  }

  .lfd-request__icon svg {
    width: 22px;
    height: 22px;
  }

  

  

  
}

@media (max-width: 390px) {
  .lfd-container {
    padding-inline: 16px;
  }

  .lfd-region-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .lfd-region-card {
    min-height: 174px;
    padding-inline: 8px;
  }

  .lfd-region-card h3 {
    font-size: 14px;
  }

  .lfd-lake-facts {
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lfd-homepage *,
  .lfd-homepage *::before,
  .lfd-homepage *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Directory destination and post-product CTA refinements — 2.6.2 */
@media (max-width: 780px) {
  .lfd-product-custom-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 22px;
  }
  .lfd-product-custom-cta__button { min-width: 0; justify-self: start; }
}

@media (max-width: 540px) {
  .lfd-directory-cta-link,
  .lfd-product-custom-cta__button { width: 100%; justify-content: center; }
  .lfd-section-heading .lfd-directory-cta-link { width: auto; }
  .lfd-product-custom-cta { padding: 20px; }
}

/* 2.7.0 — final compact homepage hierarchy. */
.lfd-hero,
.lfd-hero__inner {
  min-height: 545px;
}

.lfd-hero__inner {
  padding-top: 34px;
  padding-bottom: 42px;
}

.lfd-hero__content > p {
  margin: 18px 0 22px;
}

.lfd-hero__directory-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 16px;
}

.lfd-hero__directory-primary {
  min-height: 42px;
  padding: 8px 14px;
  background: rgba(255,255,255,.96);
  color: var(--lfd-deep-navy);
}

.lfd-hero__directory-primary:hover,
.lfd-hero__directory-primary:focus-visible {
  background: var(--lfd-pale-blue);
  color: var(--lfd-deep-navy);
}

.lfd-hero__directory-secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--lfd-white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.lfd-hero__directory-secondary:hover,
.lfd-hero__directory-secondary:focus-visible {
  color: var(--lfd-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lfd-section-heading__lede {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--lfd-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Featured Lake Profiles now use compact outline-led cards. */
.lfd-lakes {
  padding-block: 54px;
}

.lfd-lake-card {
  min-height: 0;
}

.lfd-lake-card__outline {
  display: flex;
  height: 148px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #f5f8f6;
}

.lfd-lake-card__outline img,
.lfd-lake-card .lfd-card-image.lfd-lake-card__outline img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  transition: none;
}

.lfd-lake-card:hover .lfd-card-image.lfd-lake-card__outline img {
  transform: none;
}

.lfd-lake-card__body {
  padding: 15px 16px 14px;
}

.lfd-lake-card h3 {
  color: var(--lfd-navy);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: 20px;
  font-weight: 500;
}

.lfd-lake-card__region {
  order: 2;
  margin: 4px 0 0;
}

.lfd-lake-card__description {
  order: 3;
  min-height: 54px;
  margin: 8px 0 10px;
  font-size: 11px;
  line-height: 1.5;
}

.lfd-lake-facts {
  order: 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2px 0 11px;
  padding-top: 9px;
  border-top: 1px solid var(--lfd-border);
}

.lfd-lake-fact strong {
  font-size: 10px;
}

.lfd-lake-card .lfd-card-link {
  order: 5;
  min-height: 38px;
  margin-top: 0;
}

/* Homepage shows only the four Regions with the most published profiles. */
.lfd-regions {
  padding-block: 52px;
}

.lfd-region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lfd-region-card {
  min-height: 174px;
  grid-template-rows: 42px auto auto 34px;
  gap: 7px;
  padding: 17px 12px 15px;
}

.lfd-region-card__icon {
  width: 42px;
  height: 42px;
}

.lfd-region-card__icon svg {
  width: 38px;
  height: 38px;
}

.lfd-region-card h3 {
  min-height: 0;
  max-width: 180px;
  font-size: 15px;
}

.lfd-region-card__count {
  margin: 0;
  color: var(--lfd-muted);
  font-size: 10px;
  font-weight: 700;
}

.lfd-region-card > a {
  min-height: 34px;
}

/* Stories use only real published Posts and remain compact. */
.lfd-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lfd-story-card {
  min-height: 0;
}

.lfd-story-card .lfd-card-image img {
  aspect-ratio: 1.75 / 1;
}

.lfd-story-card--no-image .lfd-story-card__body {
  min-height: 180px;
}

/* Keepsakes stay product-led without becoming a full shop page. */
.lfd-product-card {
  min-height: 0;
}

.lfd-product-card .lfd-card-image img {
  aspect-ratio: 1.12 / 1;
}

.lfd-product-custom-cta {
  margin-top: 22px;
  padding: 20px 24px;
}

/* Guide-building Suggest CTA remains distinct from the commercial product CTA. */
.lfd-request__inner--suggest-only {
  grid-template-columns: minmax(0, 1fr) auto;
}

.lfd-request__eyebrow {
  margin: 0 0 4px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .lfd-hero,
  .lfd-hero__inner {
    min-height: 510px;
  }

  .lfd-lake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfd-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lfd-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lfd-hero,
  .lfd-hero__inner {
    min-height: 500px;
  }

  .lfd-hero__directory-links {
    gap: 10px 14px;
  }

  .lfd-products__layout,
  .lfd-products__layout--no-personalize {
    grid-template-columns: 1fr;
  }

  .lfd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .lfd-request__inner--suggest-only {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lfd-hero,
  .lfd-hero__inner {
    min-height: 0;
  }

  .lfd-hero__inner {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .lfd-hero__directory-links {
    align-items: stretch;
    flex-direction: column;
  }

  .lfd-hero__directory-primary,
  .lfd-hero__directory-secondary {
    width: 100%;
    justify-content: center;
  }

  .lfd-lake-grid,
  .lfd-region-grid,
  .lfd-story-grid,
  .lfd-product-grid {
    grid-template-columns: 1fr;
  }

  .lfd-lake-card__description {
    min-height: 0;
  }

  .lfd-region-card {
    min-height: 166px;
  }

  .lfd-product-grid {
    overflow: visible;
    padding-bottom: 0;
  }
}

/* 2.7.1 coordinated homepage hierarchy and background rhythm. */
.lfd-homepage .lfd-hero,
.lfd-homepage .lfd-hero__inner {
  min-height: 570px;
}

.lfd-homepage .lfd-lakes,
.lfd-homepage .lfd-stories {
  background: var(--lfd-warm-white);
}

.lfd-homepage .lfd-regions,
.lfd-homepage .lfd-products {
  background: var(--lfd-pale-blue);
}

/* Free Ontario Lake Guide contribution path immediately after Featured Lakes. */
.lfd-homepage .lfd-guide-ribbon {
  border-top: 1px solid rgba(51, 127, 150, 0.16);
  border-bottom: 1px solid rgba(51, 127, 150, 0.18);
  padding-block: 20px;
  background: #e4f3f8;
}

.lfd-homepage .lfd-guide-ribbon__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.lfd-homepage .lfd-guide-ribbon__copy {
  min-width: 0;
}

.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow {
  margin-bottom: 4px;
  color: var(--lfd-blue);
}

.lfd-homepage .lfd-guide-ribbon__copy h2 {
  margin: 0;
  color: var(--lfd-navy);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(22px, 2.15vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.lfd-homepage .lfd-guide-ribbon__copy > p:last-child {
  margin: 5px 0 0;
  color: var(--lfd-muted);
  font-size: 12px;
  line-height: 1.45;
}

.lfd-homepage .lfd-guide-ribbon__button,
.lfd-homepage .lfd-guide-ribbon__button:link,
.lfd-homepage .lfd-guide-ribbon__button:visited {
  min-width: 165px;
  background: var(--lfd-navy);
  color: #fff !important;
}

.lfd-homepage .lfd-guide-ribbon__button:hover,
.lfd-homepage .lfd-guide-ribbon__button:focus,
.lfd-homepage .lfd-guide-ribbon__button:focus-visible,
.lfd-homepage .lfd-guide-ribbon__button:active {
  background: var(--lfd-deep-navy);
  color: #fff !important;
}

/* Keep Regions visually distinct even though it belongs to the same pale-blue family. */
.lfd-homepage .lfd-regions {
  border-top: 8px solid var(--lfd-warm-white);
  padding-block: 48px 52px;
}

.lfd-homepage .lfd-stories {
  padding-block: 50px;
}

.lfd-homepage .lfd-products {
  padding-block: 50px 48px;
}

/* Commercial custom-design path follows Keepsakes as its own very-light compact band. */
.lfd-homepage .lfd-product-custom-section {
  padding-block: 26px;
  background: #fbfaf7;
}

.lfd-homepage .lfd-product-custom-cta {
  margin: 0;
  border: 1px solid var(--lfd-border);
  border-radius: 6px;
  padding: 22px 26px;
  background: #fff;
  box-shadow: none;
}

.lfd-homepage .lfd-product-custom-cta__offer {
  margin: 7px 0 0;
  color: var(--lfd-text);
  font-size: 12px;
  line-height: 1.5;
}

.lfd-homepage .lfd-product-custom-cta__note {
  margin: 5px 0 0 !important;
  color: var(--lfd-muted) !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

/* Astra/global link rules must never erase the filled CTA's white label. */
.lfd-homepage .lfd-product-custom-cta__button,
.lfd-homepage .lfd-product-custom-cta__button:link,
.lfd-homepage .lfd-product-custom-cta__button:visited,
.lfd-homepage .lfd-product-custom-cta__button:hover,
.lfd-homepage .lfd-product-custom-cta__button:focus,
.lfd-homepage .lfd-product-custom-cta__button:focus-visible,
.lfd-homepage .lfd-product-custom-cta__button:active {
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .lfd-homepage .lfd-hero,
  .lfd-homepage .lfd-hero__inner {
    min-height: 510px;
  }
}

@media (max-width: 768px) {
  .lfd-homepage .lfd-guide-ribbon__inner,
  .lfd-homepage .lfd-product-custom-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .lfd-homepage .lfd-guide-ribbon__button,
  .lfd-homepage .lfd-product-custom-cta__button {
    min-width: 0;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .lfd-homepage .lfd-hero,
  .lfd-homepage .lfd-hero__inner {
    min-height: 0;
  }

  .lfd-homepage .lfd-guide-ribbon {
    padding-block: 18px;
  }

  .lfd-homepage .lfd-guide-ribbon__button,
  .lfd-homepage .lfd-product-custom-cta__button {
    width: 100%;
  }

  .lfd-homepage .lfd-regions,
  .lfd-homepage .lfd-stories,
  .lfd-homepage .lfd-products {
    padding-block: 40px;
  }

  .lfd-homepage .lfd-product-custom-section {
    padding-block: 20px;
  }

  .lfd-homepage .lfd-product-custom-cta {
    padding: 20px;
  }
}

.lfd-homepage .lfd-product-custom-cta__button,
.lfd-homepage .lfd-product-custom-cta__button:link,
.lfd-homepage .lfd-product-custom-cta__button:visited {
  background: var(--lfd-navy);
}

.lfd-homepage .lfd-product-custom-cta__button:hover,
.lfd-homepage .lfd-product-custom-cta__button:focus,
.lfd-homepage .lfd-product-custom-cta__button:focus-visible,
.lfd-homepage .lfd-product-custom-cta__button:active {
  background: var(--lfd-deep-navy);
}


/* 2.8.0 — approved compact hero, 3 Lakes + signature poster, and distinct section rhythm. */
.lfd-homepage-active { --lfd-warm-cream: #f7f4ed; }

.lfd-homepage .lfd-hero,
.lfd-homepage .lfd-hero__inner { min-height: 350px; }
.lfd-homepage .lfd-hero__inner { padding-top: 28px; padding-bottom: 30px; }
.lfd-homepage .lfd-hero__content { width: min(100%, 720px); }
.lfd-homepage .lfd-hero h1 { max-width: 650px; font-size: clamp(44px, 4.4vw, 58px); line-height: 1; }
.lfd-homepage .lfd-hero__content > p { max-width: 590px; margin: 12px 0 15px; font-size: clamp(15px, 1.25vw, 18px); line-height: 1.4; }
.lfd-homepage .lfd-hero-search { width: min(100%, 650px); min-height: 52px; box-shadow: 0 10px 26px rgba(2, 24, 36, 0.2); }
.lfd-homepage .lfd-hero-search input { min-height: 50px; }
.lfd-homepage .lfd-hero-search input:focus { outline: 2px solid var(--lfd-blue); outline-offset: -3px; }
.lfd-homepage .lfd-hero-search button,
.lfd-homepage .lfd-hero-search button:focus,
.lfd-homepage .lfd-hero-search button:active { min-width: 142px; min-height: 50px; padding-inline: 18px; background: var(--lfd-navy); color: #fff !important; }
.lfd-homepage .lfd-hero-search button:hover,
.lfd-homepage .lfd-hero-search button:focus-visible { background: var(--lfd-deep-navy); color: #fff !important; }
.lfd-homepage .lfd-hero__directory-links { margin-top: 11px; }
.lfd-homepage .lfd-hero__directory-secondary,
.lfd-homepage .lfd-hero__directory-secondary:link,
.lfd-homepage .lfd-hero__directory-secondary:visited { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; border: 1.5px solid rgba(255,255,255,.9); border-radius: 4px; padding: 9px 16px; background: rgba(3,38,58,.24); color: #fff !important; font-size: 12px; font-weight: 800; text-decoration: none; backdrop-filter: blur(2px); }
.lfd-homepage .lfd-hero__directory-secondary:hover,
.lfd-homepage .lfd-hero__directory-secondary:focus,
.lfd-homepage .lfd-hero__directory-secondary:focus-visible,
.lfd-homepage .lfd-hero__directory-secondary:active { border-color: #fff; background: rgba(255,255,255,.16); color: #fff !important; text-decoration: none; }
.lfd-homepage .lfd-popular-searches { display: none; }

.lfd-homepage .lfd-lakes { padding-block: 50px; background: var(--lfd-warm-white); }
.lfd-homepage .lfd-lake-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.lfd-homepage .lfd-directory-cta-link,
.lfd-homepage .lfd-directory-cta-link:link,
.lfd-homepage .lfd-directory-cta-link:visited { min-height: 44px; border-color: rgba(15,88,117,.42); padding: 9px 14px; background: #fff; color: var(--lfd-blue) !important; }
.lfd-homepage .lfd-directory-cta-link:hover,
.lfd-homepage .lfd-directory-cta-link:focus,
.lfd-homepage .lfd-directory-cta-link:focus-visible,
.lfd-homepage .lfd-directory-cta-link:active { border-color: var(--lfd-blue); background: var(--lfd-pale-blue); color: var(--lfd-deep-navy) !important; }

.lfd-homepage .lfd-poster-promo { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid #cfe1e7; border-radius: 5px; background: #eef7f9; box-shadow: 0 8px 24px rgba(7,51,74,.045); }
.lfd-homepage .lfd-poster-promo__image { display: flex; height: 148px; align-items: center; justify-content: center; overflow: hidden; padding: 12px 16px; background: #e5f2f6; }
.lfd-homepage .lfd-poster-promo__image img { width: 100%; height: 100%; object-fit: contain; }
.lfd-homepage .lfd-poster-promo__body { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 15px 16px 14px; }
.lfd-homepage .lfd-poster-promo__eyebrow { margin: 0 0 5px; color: var(--lfd-blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.lfd-homepage .lfd-poster-promo h3 { margin: 0; color: var(--lfd-navy); font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif); font-size: 20px; font-weight: 500; line-height: 1.12; }
.lfd-homepage .lfd-poster-promo__body > p:not(.lfd-poster-promo__eyebrow) { margin: 8px 0 12px; color: var(--lfd-muted); font-size: 11px; line-height: 1.5; }
.lfd-homepage .lfd-poster-promo__button,
.lfd-homepage .lfd-poster-promo__button:link,
.lfd-homepage .lfd-poster-promo__button:visited { width: fit-content; min-height: 38px; margin-top: auto; padding: 7px 11px; background: var(--lfd-navy); color: #fff !important; }
.lfd-homepage .lfd-poster-promo__button:hover,
.lfd-homepage .lfd-poster-promo__button:focus,
.lfd-homepage .lfd-poster-promo__button:focus-visible,
.lfd-homepage .lfd-poster-promo__button:active { background: var(--lfd-deep-navy); color: #fff !important; }
.lfd-homepage .lfd-poster-promo--no-image .lfd-poster-promo__body { justify-content: center; }

.lfd-homepage .lfd-guide-ribbon { border-top: 1px solid rgba(15,88,117,.2); border-bottom: 1px solid rgba(15,88,117,.24); padding-block: 18px; background: #e2f2f7; }
.lfd-homepage .lfd-guide-ribbon__inner { gap: 22px; }
.lfd-homepage .lfd-guide-ribbon__copy h2 { font-size: clamp(19px, 1.8vw, 24px); }
.lfd-homepage .lfd-guide-ribbon__button { min-height: 44px; }
.lfd-homepage .lfd-regions { border-top: 0; padding-block: 48px 50px; background: var(--lfd-warm-cream); }
.lfd-homepage .lfd-region-card { min-height: 164px; background: #fff; }
.lfd-homepage .lfd-stories { padding-block: 48px; background: var(--lfd-warm-white); }
.lfd-homepage .lfd-products { padding-block: 48px; background: var(--lfd-pale-blue); }

@media (max-width: 1024px) {
  .lfd-homepage .lfd-hero, .lfd-homepage .lfd-hero__inner { min-height: 335px; }
  .lfd-homepage .lfd-lake-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .lfd-homepage .lfd-hero, .lfd-homepage .lfd-hero__inner { min-height: 0; }
  .lfd-homepage .lfd-hero__inner { padding-top: 42px; padding-bottom: 34px; }
  .lfd-homepage .lfd-hero h1 { font-size: clamp(39px, 8vw, 52px); }
}
@media (max-width: 560px) {
  .lfd-homepage .lfd-hero__inner { padding-top: 40px; padding-bottom: 32px; }
  .lfd-homepage .lfd-hero-search { min-height: 0; flex-wrap: wrap; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .lfd-homepage .lfd-hero-search__icon { display: none; }
  .lfd-homepage .lfd-hero-search input { width: 100%; min-height: 48px; flex: 0 0 100%; border: 1px solid rgba(255,255,255,.85); border-radius: 4px; padding: 10px 13px; background: #fff; color: var(--lfd-deep-navy); }
  .lfd-homepage .lfd-hero-search input::placeholder { color: #667b84; opacity: 1; }
  .lfd-homepage .lfd-hero-search button { width: 100%; min-height: 46px; margin-top: 8px; border: 0; border-radius: 4px; }
  .lfd-homepage .lfd-hero__directory-secondary { width: 100%; }
  .lfd-homepage .lfd-lake-grid, .lfd-homepage .lfd-region-grid, .lfd-homepage .lfd-story-grid, .lfd-homepage .lfd-product-grid { grid-template-columns: 1fr; }
  .lfd-homepage .lfd-poster-promo__button { width: 100%; }
  .lfd-homepage .lfd-guide-ribbon { padding-block: 16px; }
  .lfd-homepage .lfd-regions, .lfd-homepage .lfd-stories, .lfd-homepage .lfd-products, .lfd-homepage .lfd-lakes { padding-block: 40px; }
}


/* 2.8.2 — subtle external separation between homepage modules.
 * These are margins between section containers, not extra internal padding. */
.lfd-homepage .lfd-main-content {
  background: var(--lfd-warm-white);
}

/* Related guide-action ribbon is intentionally grouped tightly with Featured Lakes. */
.lfd-homepage .lfd-lakes + .lfd-guide-ribbon {
  margin-top: 10px;
}

/* Give the next browsing module slightly more separation after the related action ribbon. */
.lfd-homepage .lfd-guide-ribbon + .lfd-regions {
  margin-top: 20px;
}

/* Major homepage modules receive a restrained neutral reveal between backgrounds. */
.lfd-homepage .lfd-regions + .lfd-stories,
.lfd-homepage .lfd-stories + .lfd-products {
  margin-top: 20px;
}

/* Commercial CTA remains tied to Keepsakes while still reading as its own module. */
.lfd-homepage .lfd-products + .lfd-product-custom-section {
  margin-top: 14px;
}

/* Graceful spacing when an optional section is absent. */
.lfd-homepage .lfd-lakes + .lfd-regions,
.lfd-homepage .lfd-lakes + .lfd-stories,
.lfd-homepage .lfd-lakes + .lfd-products,
.lfd-homepage .lfd-guide-ribbon + .lfd-stories,
.lfd-homepage .lfd-guide-ribbon + .lfd-products,
.lfd-homepage .lfd-regions + .lfd-products,
.lfd-homepage .lfd-stories + .lfd-product-custom-section,
.lfd-homepage .lfd-regions + .lfd-product-custom-section {
  margin-top: 20px;
}

@media (max-width: 560px) {
  .lfd-homepage .lfd-lakes + .lfd-guide-ribbon {
    margin-top: 8px;
  }

  .lfd-homepage .lfd-guide-ribbon + .lfd-regions {
    margin-top: 14px;
  }

  .lfd-homepage .lfd-regions + .lfd-stories,
  .lfd-homepage .lfd-stories + .lfd-products,
  .lfd-homepage .lfd-products + .lfd-product-custom-section,
  .lfd-homepage .lfd-lakes + .lfd-regions,
  .lfd-homepage .lfd-lakes + .lfd-stories,
  .lfd-homepage .lfd-lakes + .lfd-products,
  .lfd-homepage .lfd-guide-ribbon + .lfd-stories,
  .lfd-homepage .lfd-guide-ribbon + .lfd-products,
  .lfd-homepage .lfd-regions + .lfd-products,
  .lfd-homepage .lfd-stories + .lfd-product-custom-section,
  .lfd-homepage .lfd-regions + .lfd-product-custom-section {
    margin-top: 14px;
  }
}

/* Product-option cues: real WooCommerce colours, sizes and frame finishes. */
.lfd-homepage .lfd-product-card { position: relative; }
.lfd-homepage .lfd-product-card__badge--colours {
  max-width: calc(100% - 24px);
  border-radius: 3px;
  font-family: Arial, sans-serif;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.lfd-homepage .lfd-product-option-meta {
  margin: 7px 0 0;
  color: #557487;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.lfd-homepage .lfd-poster-promo__body > .lfd-product-option-meta {
  margin: 3px 0 11px;
  color: #557487;
  font-size: 11px;
}
@media (max-width: 520px) {
  .lfd-homepage .lfd-product-card__badge--colours {
    max-width: calc(100% - 18px);
    padding: 5px 7px;
    font-size: 8px;
    letter-spacing: .07em;
    white-space: normal;
  }
  .lfd-homepage .lfd-product-option-meta { font-size: 11px; }
}

/* 2.11.0 mobile usability refinements, maintained with the homepage component. */
@media (max-width: 768px) {
  .lfd-homepage input,
  .lfd-homepage select { font-size: 16px; }
  .lfd-homepage .lfd-container { padding-inline: 18px; }
  .lfd-homepage .lfd-hero__directory-secondary,
  .lfd-homepage .lfd-directory-cta-link,
  .lfd-homepage .lfd-guide-ribbon__button,
  .lfd-homepage .lfd-poster-promo__button,
  .lfd-homepage .lfd-product-card a,
  .lfd-homepage .lfd-story-card a { min-height: 44px; }
}

@media (max-width: 560px) {
  .lfd-homepage .lfd-container { padding-inline: 16px; }
  .lfd-homepage .lfd-hero h1 { font-size: clamp(36px, 11vw, 46px); }
  .lfd-homepage .lfd-hero__content > p { font-size: 16px; line-height: 1.48; }
}

@media (max-width: 360px) {
  .lfd-homepage .lfd-hero h1 { font-size: 35px; }
}

/* 2.12.0 — restrained shared gold accent system; layout remains unchanged. */
.lfd-homepage .lfd-lakes > .lfd-container > .lfd-section-heading .lfd-eyebrow,
.lfd-homepage .lfd-regions > .lfd-container > .lfd-section-heading .lfd-eyebrow,
.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow {
  position: relative;
}

.lfd-homepage .lfd-lakes > .lfd-container > .lfd-section-heading .lfd-eyebrow::after,
.lfd-homepage .lfd-regions > .lfd-container > .lfd-section-heading .lfd-eyebrow::after,
.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: var(--lf-accent-rule-width, 34px);
  height: var(--lf-accent-rule-height, 2px);
  border-radius: 999px;
  background: var(--lf-color-accent-gold, #e1b55d);
}

.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow::after {
  width: 28px;
}

/* 2.12.1 — focused gold accent refinement; visual-only, no layout changes. */
/* Keep the Featured Lake Profiles rule explicitly below the complete eyebrow text. */
.lfd-homepage .lfd-lakes > .lfd-container > .lfd-section-heading .lfd-eyebrow::after,
.lfd-homepage .lfd-regions > .lfd-container > .lfd-section-heading .lfd-eyebrow::after,
.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow::after {
  top: calc(100% + 6px);
  bottom: auto;
  width: 34px;
  height: 2px;
  background: var(--lf-color-accent-gold);
}

.lfd-homepage .lfd-guide-ribbon__copy .lfd-eyebrow::after {
  top: calc(100% + 2px);
  width: 30px;
}

/* Signature Lake Map remains a small premium designation, never a gold-filled badge. */
.lfd-homepage .lfd-poster-promo__eyebrow {
  position: relative;
  color: var(--lfd-blue);
}

.lfd-homepage .lfd-poster-promo__eyebrow::after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--lf-color-accent-gold);
}

.lfd-homepage .lfd-product-card.is-signature .lfd-product-card__badge {
  box-shadow: inset 0 -2px 0 var(--lf-color-accent-gold);
}

/* Secondary guide CTA: retain navy/white while adding only a gold edge and arrow. */
.lfd-homepage .lfd-guide-ribbon__button,
.lfd-homepage .lfd-guide-ribbon__button:link,
.lfd-homepage .lfd-guide-ribbon__button:visited,
.lfd-homepage .lfd-guide-ribbon__button:hover,
.lfd-homepage .lfd-guide-ribbon__button:focus,
.lfd-homepage .lfd-guide-ribbon__button:focus-visible,
.lfd-homepage .lfd-guide-ribbon__button:active {
  border-color: var(--lf-color-accent-gold);
}

.lfd-homepage .lfd-guide-ribbon__button span[aria-hidden="true"],
.lfd-homepage .lfd-region-card > a span[aria-hidden="true"],
.lfd-homepage .lfd-region-card__link span[aria-hidden="true"] {
  color: var(--lf-color-accent-gold);
}

