/*initial*/
body{
	background-color: #f9f3f3 !important;
}
body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

html, .body {
    background-image: none !important;
}
a {
    color: #d66787;
}
p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.75;
}
#header .header-nav.header-nav-divisor nav > ul > li > a {
    border-right: 1px solid rgb(0 0 0 / 0%);
}
h2{ color: #6d5a5a; }
#header .header-logo img {
    width: 150px !important;
    max-width: 150px !important;
    height: auto;
    margin-right: 10px;
}
#header .header-body {
    background: #ffe8f000 !important;
}
#header .header-row {
    background: #f9eff4 !important;
    padding: 0px 15px !important;
    border-radius: 20px !important;
}
#header .header-nav.header-nav-links:not(.header-nav-light-text) nav > ul > li > a,
#header .header-nav.header-nav-line:not(.header-nav-light-text) nav > ul > li > a {
    color: #d46686 !important;
}
#header .header-logo {
    margin: 0rem 0 !important;
}
#header {
    position: relative !important;
    top: 10px !important;
}
#header .header-btn-collapse-nav {
    background-color: #d66787 !important;
}
html.sticky-header-active #header .header-body {
    background: #faeff4 !important;
}
section.section {
    padding: 0px !important;
}
.quote-card {
    margin-top: 60px !important;
}
.tb-color1 {
    color: val(--primaryColor-text) !important;
    background-color: #d66787 !important;
}
.tb-color2 {
    color: val(--primaryColor-text) !important;
    background-color: #d66787 !important;
}
.tb-color3 {
    color: val(--primaryColor-text) !important;
    background-color: #d66787 !important;
}
.site-button, a.bttn-form-default, input.bttn-form-default, button.bttn-form-default {
    background-color: #d66787 !important;
}
.pageTitle, h1 {
    font-family: 'Playfair Display', serif !important;
    color: #d66787 !important;
    font-size: clamp(32px, 5vw, 52px);
}

/* ===================== RESET & VARIABLES ===================== */
:root {
  --bg: #f9f3f3;
  --primary: #c55c7a;
  --primary-dark: #a84565;
  --secondary: #eaa0b6;
  --border: #f1d5dc;
  --text: #6d5a5a;
  --text-dark: #3d2b2b;
  --cream: #fdf8f0;
  --pale-yellow: #fef9ec;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 4px 30px rgba(197,92,122,0.10);
  --shadow-hover: 0 12px 48px rgba(197,92,122,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f9f3f3; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* ===================== FALLING PETALS ===================== */
#blossom-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; overflow: hidden;
}
.fp {
  position: absolute; top: -40px; opacity: 0;
  will-change: transform, opacity;
  animation: petalDrift linear infinite;
}
.fp svg { display: block; }
@keyframes petalDrift {
  0%   { opacity: 0;   transform: translateY(-40px)  rotate(0deg)   translateX(0px); }
  8%   { opacity: 0.7; }
  80%  { opacity: 0.45; }
  100% { opacity: 0;   transform: translateY(105vh)  rotate(520deg) translateX(var(--drift)); }
}

/* ===================== CARD CORNER BLOSSOM ===================== */
.card-blossom-corner {
  position: absolute; top: -1px; right: -1px;
  width: 56px; height: 56px; pointer-events: none;
  opacity: 0.18; color: var(--primary); transition: opacity 0.3s;
}
.q-card:hover .card-blossom-corner,
.ess-card:hover .card-blossom-corner,
.dir-card:hover .card-blossom-corner { opacity: 0.32; }

/* ===================== SECTION BLOSSOM ACCENT ===================== */
.section-blossom-accent {
  position: absolute; pointer-events: none;
  opacity: 0.07; color: var(--primary);
}

/* ===================== HERO — DESKTOP DEFAULT (≥1025px) ===================== */
.hero {
  position: relative;
  min-height: 480px;
  max-height: 600px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  margin-top: -95px;
  padding-top: 95px;
  padding-bottom: 80px;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-img {
  --hero-scale: 1.04;
  --hero-shift: 0px;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.14s linear;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-scale));
  transform-origin: center center;
}
.hero-img.desktop-img {
  display: block;
  object-position: center 35%;
}
.hero-img.mobile-img { display: none; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(110, 50, 78, 0.22) 0%,
    rgba(197,92,122,0.10) 30%,
    rgba(220,160,180,0.06) 55%,
    rgba(249,243,243,0.55) 82%,
    rgba(249,243,243,0.72) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: 0 28px;
  animation: heroIn 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  padding: 28px 44px;
  box-shadow: 0 6px 40px rgba(197, 92, 122, 0.13);
  max-width: 600px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 900; letter-spacing: 4px;
  text-transform: uppercase; color: #444;
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-eyebrow svg { width: 13px; height: 13px; color: #d56787; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 700; line-height: 1.05;
  color: #983e58;
  text-shadow: 0 2px 24px rgba(90,40,60,0.22);
  margin-bottom: 0; letter-spacing: -0.5px;
}
.hero-title .accent { color: #d56686; }

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgb(130, 55, 80); font-weight: 300;
  letter-spacing: 0.3px;
  margin: 10px auto 10px;
  max-width: 380px; line-height: 1.6;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, #d9698a 100%);
  color: white; text-decoration: none; padding: 13px 32px;
  border-radius: 50px; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(197,92,122,0.36);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); cursor: pointer; border: none;
}
.btn-primary svg { width: 15px; height: 15px; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(197,92,122,0.5);
  background: linear-gradient(135deg, #b84d6b 0%, #c85c7a 100%);
}

/* ===================== SECTIONS ===================== */
section { padding: 80px 60px; }
.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 10.5px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--secondary);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border); max-width: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500; color: var(--text-dark); line-height: 1.15;
  margin-bottom: 14px; text-align: center;
}
.section-title em { font-style: italic; color: var(--primary); }

/* ===================== QUICK CARDS ===================== */
.quick-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px;
  margin: -80px auto 0;
  position: relative; z-index: 10;
  padding: 0 60px;
}
.q-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(197,92,122,0.13);
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.q-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}
.q-icon-wrap {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #fce8ef, #f8d6e3);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 4px; flex-shrink: 0;
}
.q-icon-wrap svg { width: 22px; height: 22px; }
.q-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--text-dark);
}
.q-sub { font-family: 'Lato', sans-serif; font-size: 13px; color: var(--text); }

/* ===================== QUOTE BANNER ===================== */
.quote-section { padding: 40px 60px 0; }
.contact-banner.quote-style {
  background: linear-gradient(135deg, var(--primary) 0%, #b84870 50%, #a03a60 100%);
  border-radius: var(--radius); padding: 52px 64px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 60px rgba(197,92,122,0.28);
  position: relative; overflow: hidden; text-align: center;
  margin-top: 60px;
}
.contact-blossom {
  position: absolute; right: 160px; top: -20px;
  color: rgba(255,255,255,0.12); pointer-events: none;
}
.contact-blossom svg { width: 160px; height: 160px; }
.quote-banner-text { position: relative; z-index: 1; }
.quote-banner-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 36px); font-style: italic;
  color: white; font-weight: 500; margin-bottom: 10px; line-height: 1.4;
}
.quote-banner-text p {
  font-family: 'Lato', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.65;
}

/* ===================== ESSENTIALS ===================== */
.essentials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 48px;
}
.ess-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.ess-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ess-label-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ess-label-row svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; }
.ess-label {
  font-family: 'Lato', sans-serif;
  font-size: 9.5px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--secondary);
}
.ess-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.2;
}
.ess-lines p { font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text); line-height: 1.75; }
.ess-link {
  color: var(--primary); font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Lato', sans-serif; font-size: 14px;
}
.ess-link svg { width: 13px; height: 13px; }
.ess-link:hover { text-decoration: underline; }

/* ===================== ON-SITE EXPERIENCES ===================== */
.discover { background: var(--bg); position: relative; overflow: hidden; }
.experience-highlight { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.experience-highlight__card {
  display: flex; flex-direction: column; gap: 24px;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
}
.experience-highlight__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.experience-highlight__media img { width: 100%; border-radius: 18px; display: block; }
.experience-highlight__content { text-align: center; max-width: 700px; margin: 0 auto; }
.experience-highlight__text {
  font-family: 'Lato', sans-serif;
  font-size: 15px; color: var(--text); line-height: 1.75;
}
.experience-highlight__tags {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 18px;
}
.experience-highlight__tags span {
  background: #fce8ef; border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 12.5px; color: var(--primary);
}
.experience-icon {
  width: 50px; height: 50px; margin: 0 auto 10px;
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  background: #fce8ef; border-radius: 50%; border: 1px solid var(--border);
}
.experience-icon svg { width: 24px; height: 24px; }

/* ===================== WICKET CARD ===================== */
.wicket-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(15,52,96,0.28);
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.wicket-card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(15,52,96,0.38); }
.wicket-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,179,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,179,237,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.wicket-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,179,237,0.12) 0%, transparent 70%);
  top: -80px; right: -60px;
  pointer-events: none;
}
.wicket-card__left { position: relative; z-index: 1; }
.wicket-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(99,179,237,0.12);
  border: 1px solid rgba(99,179,237,0.28);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 20px;
}
.wicket-badge span {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #90cdf4;
}
.wicket-badge svg { width: 12px; height: 12px; color: #90cdf4; flex-shrink: 0; }
.wicket-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.wicket-headline em { font-style: italic; color: #90cdf4; }
.wicket-steps {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px;
}
.wicket-step { display: flex; align-items: center; gap: 12px; }
.wicket-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(99,179,237,0.15);
  border: 1px solid rgba(99,179,237,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; color: #90cdf4;
}
.wicket-step-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.2px;
}
.wicket-desc {
  font-family: 'Lato', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.75;
  margin-bottom: 22px;
}
.wicket-opt-in {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 10px 16px;
}
.wicket-opt-in svg { width: 15px; height: 15px; color: #68d391; flex-shrink: 0; }
.wicket-opt-in span {
  font-family: 'Lato', sans-serif;
  font-size: 12.5px; color: rgba(255,255,255,0.72); font-weight: 500;
}
.wicket-opt-in strong { color: #68d391; }
.wicket-card__right { position: relative; z-index: 1; }
.wicket-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.wicket-scan-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: rgba(99,179,237,0.10);
  border: 2px solid rgba(99,179,237,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #90cdf4;
  position: relative;
}
.wicket-scan-icon svg { width: 34px; height: 34px; }
.wicket-scan-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1.5px solid rgba(99,179,237,0.2);
  border-radius: 50%;
  animation: wicketPulse 2.4s ease-out infinite;
}
.wicket-scan-icon::after {
  content: '';
  position: absolute; inset: -18px;
  border: 1px solid rgba(99,179,237,0.10);
  border-radius: 50%;
  animation: wicketPulse 2.4s ease-out infinite 0.6s;
}
@keyframes wicketPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.wicket-powered-by {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.wicket-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: white;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.wicket-leagues {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.wicket-league {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 5px 12px;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
}
.wicket-cta-text {
  font-family: 'Lato', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65;
}
.wicket-cta-text strong { color: #90cdf4; }

/* ===================== DIRECTIONS ===================== */
.directions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.dir-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.dir-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dir-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #fce8ef, #f8d6e3);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 12px;
}
.dir-icon-wrap svg { width: 20px; height: 20px; }
.dir-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px;
}
.dir-text { font-family: 'Lato', sans-serif; font-size: 14px; color: var(--text); line-height: 1.75; }
.dir-links { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.dir-links a {
  color: var(--primary); font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
}
.dir-links a svg { width: 13px; height: 13px; }
.dir-links a:hover { text-decoration: underline; }

/* ===================== WEATHER ===================== */
.weather-card {
  background: var(--pale-yellow); border: 1.5px solid #e8d490;
  border-radius: var(--radius); padding: 36px 40px;
  margin-top: 24px; display: flex; gap: 22px; align-items: flex-start;
  box-shadow: 0 4px 24px rgba(200,180,80,0.10);
  position: relative; overflow: hidden;
}
.weather-icon-wrap { color: #c0920a; flex-shrink: 0; margin-top: 3px; }
.weather-icon-wrap svg { width: 32px; height: 32px; }
.weather-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: #7a5e10; margin-bottom: 10px;
}
.weather-text { font-family: 'Lato', sans-serif; font-size: 14px; color: #8a6e20; line-height: 1.8; }

/* ===================== CONTACT BANNER ===================== */
.contact-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #b84870 50%, #a03a60 100%);
  border-radius: var(--radius); padding: 60px 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  box-shadow: 0 16px 60px rgba(197,92,122,0.28);
  position: relative; overflow: hidden;
}
.contact-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px); font-style: italic;
  color: white; font-weight: 500; margin-bottom: 8px;
}
.contact-text p {
  font-family: 'Lato', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.82);
  max-width: 400px; line-height: 1.65;
}
.btn-call {
  flex-shrink: 0;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  color: white; font-family: 'Lato', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 16px 28px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(8px); white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-call:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center; padding: 44px 60px 40px;
  background: white; border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer-blossoms { display: flex; justify-content: center; gap: 14px; margin-bottom: 14px; }
.footer-blossoms svg { width: 18px; height: 18px; color: var(--secondary); }
.footer-text {
  font-family: 'Lato', sans-serif;
  font-size: 12px; color: var(--text); letter-spacing: 0.5px; opacity: 0.75;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.footer-text svg { width: 14px; height: 14px; color: var(--secondary); }

/* ===================== FADE IN ===================== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===================== INNER PAGES ===================== */
@media (min-width: 992px) {
  #header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active {
    color: #d66787 !important;
    background: #f7c9d68a !important;
  }
  #header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active:before {
    background: #d66787;
  }
  #header .header-nav.header-nav-line nav > ul li:hover > a:before {
    background: #d66787 !important;
  }
}
@media (max-width: 991px) {
  #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active:focus,
  #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active:hover {
    background: #faeff4 !important;
  }
  #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active {
    background: #faeff4 !important;
  }
  .dropdown-item.active, .dropdown-item:active {
    color: #d66787;
    text-decoration: none;
    background-color: #faeff4;
  }
}

/* ===================== RESPONSIVE — DESKTOP MID (1025px–1199px) ===================== */
@media (min-width: 1025px) and (max-width: 1199px) {
  .hero {
    min-height: 460px;
    max-height: 580px;
    height: 58vh;
    padding-bottom: 85px;
  }
  .hero-glass { padding: 26px 40px; }
  .quick-cards { margin-top: -75px; }
}

/* ===================== RESPONSIVE — TABLET (993px–1024px) ===================== */
@media (min-width: 993px) and (max-width: 1024px) {
  .hero {
    min-height: 480px;
    max-height: 560px;
    height: 56vh;
    padding-bottom: 85px;
  }
  .hero-glass { padding: 24px 36px; }
  .quick-cards { margin-top: -70px; }
}

/* ===================== RESPONSIVE — TABLET (768px–992px) ===================== */
@media (max-width: 992px) {
  .hero {
    min-height: 480px;
    max-height: 520px;
    height: auto;
    padding-top: 95px;
    padding-bottom: 85px;
  }
  .hero-glass {
    padding: 24px 32px;
    border-radius: 22px;
    max-width: 520px;
    margin-top: 0;
  }
  .hero-title { font-size: clamp(28px, 5vw, 44px); }
  .hero-subtitle { font-size: 14px; margin: 10px auto 16px; }
  section { padding: 64px 28px; }
  .quick-cards {
    padding: 0 28px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -48px;
  }
  .essentials-grid, .directions-grid { grid-template-columns: 1fr; }
  .contact-banner { flex-direction: column; padding: 44px 32px; }
  footer { padding: 40px 28px; }
  .quote-section { padding: 40px 28px 0; }
  .contact-banner.quote-style { padding: 44px 36px; }
  .wicket-card { grid-template-columns: 1fr; gap: 28px; }
}

/* ===================== RESPONSIVE — MOBILE (≤600px) ===================== */
@media (max-width: 600px) {
  .hero {
    min-height: 65svh;
    max-height: none;
    height: auto;
    padding-top: 95px;
    padding-bottom: 80px;
  }
  .hero-img.desktop-img { display: none; }
  .hero-img.mobile-img {
    display: block;
    object-position: center 54%;
    --hero-scale: 1.03;
  }
  .hero-glass {
    padding: 28px 22px;
    max-width: min(92vw, 520px);
    border-radius: 20px;
    margin-top: 0;
  }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 14px; margin: 12px auto 22px; }
  section { padding: 56px 20px; }
  .quick-cards {
    padding: 0 20px;
    margin-top: -40px;
    grid-template-columns: 1fr;
  }
  .contact-banner { padding: 32px 20px; }
  .contact-banner.quote-style { padding: 36px 22px; }
  .quote-section { padding: 32px 20px 0; }
  .weather-card { flex-direction: column; padding: 28px 20px; }
  .contact-blossom { display: none; }
  footer { padding: 36px 20px; }
  .wicket-card { padding: 28px 20px; }
}

/* ===================== RESPONSIVE — MOBILE SMALL (≤375px) ===================== */
@media (max-width: 450px) {
  .hero {
    min-height: 80svh;
    max-height: none;
  }
@media (max-width: 375px) {
  .hero {
    min-height: 80svh;
    max-height: none;
  }
  .hero-glass { padding: 22px 18px; }
  .hero-title { font-size: 30px; }
}

html .scroll-to-top.visible {
  display: none !important;
}