/* ── THEME TOKENS (SAGE PAPER THEME FROM INDEX (COPY).HTML) ── */
:root {
  --paper: #faf8f5;
  --paper2: #f2efe9;
  --paper3: #ebe7e0;
  --card: #ffffff;
  --ink: #1a1815;
  --ink2: #3d3a35;
  --muted: #7a7570;
  --border: #ddd9d2;
  --sage: #4a7c59;
  --sage2: #5c9470;
  --sage-light: #e8f0eb;
  --sage-pale: #f2f6f3;
  --gold: #d4af37;
  --gold-hover: #bfa02c;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-pale: rgba(212, 175, 55, 0.05);
  --shadow-sm: 0 2px 12px rgba(26, 24, 21, .06);
  --shadow-md: 0 8px 32px rgba(26, 24, 21, .10);
  --shadow-lg: 0 20px 60px rgba(26, 24, 21, .13);
  --radius: 12px;
  --radius-lg: 18px;
  --nav-h: 68px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] {
  --paper: #0f1117;
  --paper2: #161b24;
  --paper3: #1d2333;
  --card: #1a2030;
  --ink: #eef0f4;
  --ink2: #c8cdd8;
  --muted: #7a8499;
  --border: rgba(255, 255, 255, .09);
  --sage: #5fa87a;
  --sage2: #72c491;
  --sage-light: rgba(95, 168, 122, .14);
  --sage-pale: rgba(95, 168, 122, .07);
  --gold: #f3ca40;
  --gold-hover: #ffd95c;
  --gold-light: rgba(243, 202, 64, 0.15);
  --gold-pale: rgba(243, 202, 64, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ── SCROLL PROGRESS INDICATOR ── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--sage);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* ── PREMIUM PRELOADER WIZARD OVERLAY ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.7s;
  visibility: visible;
  opacity: 1;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  animation: preloaderPulse 1.8s infinite ease-in-out;
}

.preloader-logo span {
  color: var(--sage);
  font-weight: 300;
  font-style: italic;
}

.preloader-spinner-wrap {
  width: 140px;
  height: 2px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  height: 100%;
  width: 50%;
  background: var(--sage);
  border-radius: 4px;
  animation: preloaderSlide 1.4s infinite ease-in-out;
}

.preloader-status {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 500;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.8; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloaderSlide {
  0% { left: -50%; }
  100% { left: 100%; }
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  transition: background .35s, color .35s;
}

/* Subtle Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .35s, border-color .35s, box-shadow .3s;
}

[data-theme="dark"] nav {
  background: rgba(15, 17, 23, .94);
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .02em;
}

.nav-logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-btn {
  width: 38px;
  height: 38px;
  background: var(--paper2);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: all .3s;
  flex-shrink: 0;
}

.theme-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-light);
}

.nav-cta {
  padding: 8px 22px;
  background: var(--sage);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 40px;
  transition: all .3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--sage2);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(74, 124, 89, .3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink2);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px;
  z-index: 499;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--sage);
  padding-left: 14px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 56px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--sage-light);
  border: 1px solid rgba(74, 124, 89, .25);
  border-radius: 40px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
  width: fit-content;
  animation: heroTagIn .7s ease both;
}

.hero-tag::before {
  content: '●';
  font-size: .45rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1 }
  50% { opacity: .3 }
}

@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(-12px) }
  to { opacity: 1; transform: translateY(0) }
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  animation: heroNameIn .85s .1s ease both;
}

.hero-name strong {
  font-weight: 700;
  display: block;
}

@keyframes heroNameIn {
  from { opacity: 0; transform: translateX(-24px) }
  to { opacity: 1; transform: translateX(0) }
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 22px;
  animation: heroFadeUp .75s .25s ease both;
}

.hero-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 36px;
  animation: heroFadeUp .75s .35s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px) }
  to { opacity: 1; transform: translateY(0) }
}

.hero-inline-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: heroFadeUp .75s .45s ease both;
}

.hero-inline-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-inline-stat+.hero-inline-stat {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}

.hero-inline-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}

.hero-inline-stat-label {
  font-size: .68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  animation: heroFadeUp .75s .55s ease both;
}

.btn-sage {
  padding: 13px 32px;
  background: var(--sage);
  color: #fff;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(74, 124, 89, .25);
}

.btn-sage:hover {
  background: var(--sage2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 124, 89, .35);
}

.btn-ghost {
  padding: 12px 32px;
  background: transparent;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .05em;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s;
}

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

/* ── HERO RIGHT — Photo Animations ── */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--paper) 0%, transparent 15%),
              linear-gradient(to top, var(--paper) 0%, transparent 10%);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: none;
  z-index: 0;
}

@keyframes orbPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.12); opacity: .7; }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 124, 89, .15);
  z-index: 1;
  pointer-events: none;
}

.hero-ring-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3.5s ease-in-out infinite;
}

.hero-ring-2 {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3.5s .6s ease-in-out infinite;
}

.hero-ring-3 {
  width: 620px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 3.5s 1.2s ease-in-out infinite;
}

@keyframes ringExpand {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .25; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 3;
  animation: heroImgEntrance 1s .2s cubic-bezier(.22, .68, 0, 1.4) both,
             heroFloat 5s 1.3s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(74, 124, 89, .22));
  transform-origin: bottom center;
}

@keyframes heroImgEntrance {
  from { opacity: 0; transform: translateY(60px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 24px 48px rgba(74, 124, 89, .22)); }
  50% { transform: translateY(-12px); filter: drop-shadow(0 36px 56px rgba(74, 124, 89, .30)); }
}

/* ── SCROLLING BADGES ── */
.scroll-badges {
  background: var(--paper2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
}

.badges-track {
  display: flex;
  gap: 10px;
  animation: slideLeft 30s linear infinite;
  width: max-content;
}

.badges-track:hover {
  animation-play-state: paused;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: .73rem;
  font-weight: 500;
  color: var(--ink2);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.badge i {
  color: var(--sage);
  font-size: .62rem;
}

@keyframes slideLeft {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ── SECTIONS ── */
section {
  padding: 88px 56px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sage);
}

.eyebrow-text {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sage);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 52px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}

.about-text p em {
  font-style: italic;
  color: var(--sage);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card {
  padding: 18px 22px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  text-decoration: none;
  color: inherit;
}

.about-card:hover {
  transform: translateX(5px);
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-card-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 2px;
}

.about-card-value {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
}

/* ── SERVICES / SKILLS ── */
.skills-bg {
  background: var(--paper2);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.skill-card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 124, 89, 0.3);
}

.skill-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.skill-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  padding: 3px 10px;
  background: var(--sage-pale);
  border: 1px solid rgba(74, 124, 89, .15);
  border-radius: 40px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--sage);
}

/* ── MAP CARDS ── */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.map-card {
  background: var(--card);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 124, 89, 0.3);
}

.map-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.map-addr {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.map-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sage-light);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 14px;
}

.map-detail {
  font-size: .82rem;
  color: var(--ink2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.map-detail:last-of-type {
  border-bottom: none;
}

.map-detail-label {
  color: var(--muted);
  min-width: 60px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--sage-light);
  border: 1px solid rgba(74, 124, 89, .2);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: all .3s;
}

.map-link:hover {
  background: var(--sage);
  color: #fff;
}

/* ── SOCIAL SECTION (UPGRADED PREMIUN SETUP WITH MASSIVE EXPANDED INTERACTIVE CARDS) ── */
.social-group-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 32px auto 16px auto;
  max-width: 680px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-group-label i {
  font-size: .9rem;
  color: var(--sage);
}

.social-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  width: 100%;
}

.social-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 8px;
}

.social-column-header i {
  font-size: 1.1rem;
  color: var(--sage);
}

.social-column-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink2);
}

.social-column-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-big {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: var(--card);
  transition: var(--transition);
  text-decoration: none;
  min-height: 150px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
}

.social-big::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.social-big:hover::after {
  transform: scaleX(1);
}

.social-big:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.social-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.social-big .s-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform .3s;
}

.social-big:hover .s-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-badge-verify {
  padding: 4px 10px;
  background: var(--sage-light);
  border-radius: 20px;
  font-size: .62rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-card-mid {
  margin: 18px 0 10px 0;
}

.social-big .s-platform {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .5;
  margin-bottom: 2px;
  display: block;
}

.social-big .s-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.social-card-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

.social-card-bot span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-action-btn {
  color: var(--sage);
  font-weight: 600;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-big:hover .social-action-btn {
  color: var(--sage2);
}

/* Branded dynamic card setups */
.social-big.fb { border-color: rgba(24,119,242,0.18); }
.social-big.fb .s-icon { background: #e7f0ff; color: #1877f2; }
.social-big.fb:hover { border-color: #1877f2; background: rgba(24,119,242,0.02); }
[data-theme="dark"] .social-big.fb:hover { background: rgba(24,119,242,0.08); }

.social-big.ig { border-color: rgba(225,48,108,0.18); }
.social-big.ig .s-icon { background: linear-gradient(135deg, #fff0f5, #ffebe6); color: #e1306c; }
.social-big.ig:hover { border-color: #e1306c; background: rgba(225,48,108,0.02); }
[data-theme="dark"] .social-big.ig:hover { background: rgba(225,48,108,0.08); }

.social-big.wa { border-color: rgba(37,211,102,0.18); }
.social-big.wa .s-icon { background: #eafbf1; color: #25d366; }
.social-big.wa:hover { border-color: #25d366; background: rgba(37,211,102,0.02); }
[data-theme="dark"] .social-big.wa:hover { background: rgba(37,211,102,0.08); }

.social-big.web { border-color: rgba(74, 124, 89, 0.18); }
.social-big.web .s-icon { background: var(--sage-light); color: var(--sage); }
.social-big.web:hover { border-color: var(--sage); background: var(--sage-pale); }

/* ── INTERACTIVE BUDGET PLANNER (CALCULATOR TOOL SECTION) ── */
.calculator-box {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink2);
}

.input-field,
.select-field,
.textarea-field {
  padding: 12px 16px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  resize: none;
  transition: border-color .3s, box-shadow .3s;
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, .1);
}

.textarea-field {
  height: 125px;
}

.submit-btn {
  padding: 14px 38px;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: all .3s;
  box-shadow: 0 4px 18px rgba(74, 124, 89, .25);
  display: inline-block;
}

.submit-btn:hover {
  background: var(--sage2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(74, 124, 89, .4);
}

/* ── SUPPLY CHAIN ── */
.supply-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}

.supply-row:last-child {
  border-bottom: none;
}

.supply-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.supply-name {
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 2px;
}

.supply-desc {
  color: var(--muted);
  font-size: .8rem;
}

/* ── FAQ ACCORDION SECTION ── */
.faq-box {
  max-width: 800px;
  margin: 32px auto 0 auto;
}

.faq-search-wrap {
  margin-bottom: 24px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  outline: none;
  font-family: inherit;
  font-size: .9rem;
  background: var(--card);
  color: var(--ink);
  transition: all 0.3s;
}

.faq-search-input:focus {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .95rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
}

.faq-icon-arrow {
  color: var(--sage);
  font-size: .85rem;
  transition: transform 0.3s;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--paper-2);
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.68;
}

.faq-item.open .faq-body {
  max-height: 200px;
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-item.open {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

/* ── LEGAL ── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.legal-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.legal-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.legal-item .label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.legal-item .value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}

.badge-green {
  display: inline-block;
  padding: 4px 12px;
  background: #dcfce7;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  color: #166534;
}

[data-theme="dark"] .badge-green {
  background: rgba(22, 163, 74, .15);
  color: #4ade80;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.contact-heading strong {
  font-weight: 700;
  color: var(--sage);
  display: block;
}

.contact-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all .3s;
  color: inherit;
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item:hover {
  padding-left: 7px;
  border-bottom-color: var(--sage);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: .9rem;
  flex-shrink: 0;
  transition: all .3s;
}

.contact-item:hover .contact-item-icon {
  background: var(--sage);
  color: #fff;
}

.contact-item-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.contact-item-val {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1px;
}

/* ── FOOTER ── */
footer {
  background: var(--paper2);
  border-top: 1px solid var(--border);
  padding: 44px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-name span {
  color: var(--sage);
}

.footer-copy {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .05em;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all .3s;
}

.footer-social a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(35px) scale(0.96);
  transition: opacity .8s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.175, 0.885, 0.32, 1.12);
}

.sr.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(74, 124, 89, .35);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--sage2);
  transform: translateY(-3px);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--paper2);
}

::-webkit-scrollbar-thumb {
  background: var(--sage);
  border-radius: 10px;
}

/* ── RESPONSIVE SETUP ── */
@media(max-width:1100px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    height: 50vh;
    min-height: 300px;
  }

  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 22px;
  }

  .hero-left {
    padding: 56px 22px 48px;
  }

  .hero-inline-stats {
    gap: 20px;
  }

  .hero-inline-stat+.hero-inline-stat {
    padding-left: 20px;
  }

  footer {
    padding: 30px 22px;
  }

  .nav-cta {
    font-size: .72rem;
    padding: 7px 16px;
  }



  .social-big {
    padding: 20px;
    min-height: 150px;
  }
}

@media(max-width:560px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .hero-inline-stats {
    gap: 14px;
  }

  .hero-inline-stat+.hero-inline-stat {
    padding-left: 14px;
  }

  .hero-name {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .hero-desc {
    font-size: .88rem;
  }

  .section-title {
    margin-bottom: 36px;
  }
}



/* 3D nested elements layering on hover */
.social-big .s-icon,
.skill-card .skill-icon,
.social-big .social-badge-verify {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.social-big:hover .s-icon,
.skill-card:hover .skill-icon {
  transform: translateZ(35px);
}
.social-big:hover .social-badge-verify {
  transform: translateZ(20px);
}

.contact-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
}
.contact-intro .contact-heading strong {
  display: inline;
  margin-left: 5px;
}
.contact-intro .contact-tagline {
  margin-bottom: 0;
}

/* Apply Times New Roman font strictly to the Social Media & Websites columns, the Direct Contact Information items list, and the Hero Inline Stats counters as requested */
.social-column,
.social-column *:not(i):not(.fa):not(.fab):not(.fas),
.contact-item,
.contact-item *:not(i):not(.fa):not(.fab):not(.fas),
.hero-inline-stats,
.hero-inline-stats *:not(i):not(.fa):not(.fab):not(.fas) {
  font-family: 'Times New Roman', Times, Baskerville, Georgia, serif !important;
}

.times-new-roman {
  font-family: 'Times New Roman', Times, Baskerville, Georgia, serif !important;
}

/* ── MULTI-PAGE GLOBAL LOGO INTEGRATION ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.nav-logo:hover .logo-img {
  transform: scale(1.08) rotate(-2deg);
}

/* ── OWNER PAGE EDITORIAL LAYOUT ── */
.owner-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.owner-photo-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.owner-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--card);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--paper2);
}
.owner-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.owner-photo-frame:hover img {
  transform: scale(1.05);
}
.owner-photo-deco {
  position: absolute;
  inset: -15px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 10px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  transition: transform 0.3s;
}
.owner-photo-container:hover .owner-photo-deco {
  transform: scale(1.02);
}
.owner-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.5;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  margin: 28px 0;
}
.contract-highlight-box {
  background: linear-gradient(135deg, var(--card), var(--paper3));
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 36px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.contract-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  pointer-events: none;
}
.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.contract-item-spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contract-item-spec i {
  color: var(--gold);
  margin-top: 4px;
}
.contract-spec-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contract-spec-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── SERVICES SPECIFIC DETAILS ── */
.venue-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.venue-spec-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.venue-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.venue-spec-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.venue-spec-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.venue-spec-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.venue-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.venue-spec-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.venue-spec-list li i {
  color: var(--sage);
  font-size: 0.8rem;
}

/* ── GALLERY FILTER & CARD STYLING ── */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 40px;
  background: var(--paper2);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.25);
}
.filter-btn.active:hover {
  background: var(--sage2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.gallery-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.gallery-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-img-container svg {
  width: 80px;
  height: 80px;
  color: var(--muted);
  opacity: 0.4;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-img-container svg {
  transform: scale(1.1) rotate(3deg);
}
.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-img-container img {
  transform: scale(1.05);
}
.gallery-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(26, 24, 21, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gallery-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.gallery-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  flex-grow: 1;
}

/* ── RESPONSIVE OVERRIDES FOR NEW PAGES ── */
@media(max-width:992px) {
  .owner-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .owner-quote {
    border-left: none;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 16px 0;
    max-width: 600px;
    margin: 24px auto;
  }
  .venue-specs-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width:768px) {
  .contract-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SMOOTH PAGE SWITCH ENTRANCE ANIMATIONS ── */
.page-entrance {
  animation: pageEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pageEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

