.elementor-6 .elementor-element.elementor-element-dee8ffb{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-dee8ffb *//* =============================================
   CASABELLA — 804 N. Maria
   Design System
   ============================================= */

:root {
  --linen:      #F9F5EF;
  --terracotta: #C4622D;
  --charcoal:   #1A1714;
  --stone:      #8C7B6B;
  --gold:       #D4A853;
  --dark:       #111009;
  --white:      #FDFAF5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-reveal:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--linen);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============ NAVIGATION ============ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: background 0.5s var(--ease-smooth),
              padding 0.4s var(--ease-smooth),
              box-shadow 0.4s ease;
}

#nav.scrolled {
  background: var(--linen);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(26, 23, 20, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.4s ease;
}

#nav.scrolled .nav-brand {
  color: var(--charcoal);
}

.nav-phone {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(253, 250, 245, 0.85);
  transition: color 0.4s ease;
}

.nav-phone:hover {
  color: var(--gold);
}

#nav.scrolled .nav-phone {
  color: var(--stone);
}

#nav.scrolled .nav-phone:hover {
  color: var(--terracotta);
}

/* ============ HERO ============ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: kenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 9, 0.25) 0%,
    rgba(17, 16, 9, 0.1)  40%,
    rgba(17, 16, 9, 0.55) 75%,
    rgba(17, 16, 9, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.6s var(--ease-smooth) 0.3s both;
}

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

.hero-address {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: rgba(253, 250, 245, 0.65);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 245, 0.55);
  text-transform: uppercase;
}

.hero-price {
  position: absolute;
  bottom: 44px;
  right: 48px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  animation: heroFadeIn 1.6s var(--ease-smooth) 0.9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: heroFadeIn 1.6s var(--ease-smooth) 1.4s both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(253, 250, 245, 0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============ STATS ============ */
#stats {
  background: var(--white);
  padding: 72px 48px;
  border-bottom: 1px solid rgba(140, 123, 107, 0.12);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-unit,
.stat-label-only {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--stone);
  text-transform: uppercase;
  line-height: 1.4;
}

.stat-label-only {
  font-size: 9px;
  padding-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(140, 123, 107, 0.25);
  flex-shrink: 0;
}

/* ============ SECTION TAG (shared label above each section headline) ============ */
.section-tag {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ============ STORY ============ */
#story {
  background: var(--linen);
  padding: 120px 48px;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.story-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 40px;
}

.story-headline em {
  font-style: italic;
  color: var(--terracotta);
}

.story-body p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 22px;
}

.story-byline {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em;
  color: var(--stone) !important;
  text-transform: uppercase;
  margin-top: 36px !important;
}

.story-photo {
  position: sticky;
  top: 100px;
}

.story-photo img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 20%;
}

.story-photo-caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 14px;
}

.story-pullquote {
  max-width: 900px;
  margin: 80px auto 0;
  text-align: center;
  padding-top: 64px;
  border-top: 1px solid rgba(140, 123, 107, 0.2);
}

.story-pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1.25;
  margin-bottom: 20px;
}

.story-pullquote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
  font-style: normal;
}

/* ============ GALLERY ============ */
#gallery {
  background: var(--linen);
  padding-bottom: 80px;
}

.gallery-header {
  padding: 100px 48px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 2px;
}

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.1;
}

.gallery-headline em {
  font-style: italic;
  color: var(--stone);
}

.gallery-view-all {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 8px;
}

.gallery-view-all:hover {
  background: var(--terracotta);
}

/* Featured 6-photo grid */
.gallery-grid {
  padding: 0 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 520px 300px;
  gap: 5px;
}

.gallery-main {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-side {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.gallery-side-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.gallery-bottom-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-main img,
.gallery-side-item img,
.gallery-bottom-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-main:hover img,
.gallery-side-item:hover img,
.gallery-bottom-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 9, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-main:hover .gallery-overlay,
.gallery-side-item:hover .gallery-overlay,
.gallery-bottom-item:hover .gallery-overlay {
  background: rgba(17, 16, 9, 0.12);
}

/* ============ LIGHTBOX ============ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 16, 9, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#lightbox.lb-active {
  opacity: 1;
  pointer-events: all;
}

.lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 64px 90px;
  min-height: 0;
}

#lbImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

#lbImg.lb-loading {
  opacity: 0;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(253, 250, 245, 0.55);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 10px;
  transition: color 0.2s ease;
  z-index: 1;
}

.lb-close:hover {
  color: var(--white);
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 250, 245, 0.08);
  border: 1px solid rgba(253, 250, 245, 0.15);
  color: rgba(253, 250, 245, 0.6);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 18px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 1;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-prev:hover,
.lb-next:hover {
  background: rgba(253, 250, 245, 0.15);
  border-color: rgba(253, 250, 245, 0.4);
  color: var(--white);
}

.lb-footer {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 90px;
  flex-shrink: 0;
}

.lb-caption {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 245, 0.35);
  text-transform: uppercase;
}

.lb-counter {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  color: rgba(253, 250, 245, 0.25);
  letter-spacing: 0.08em;
}

/* ============ FEATURES ============ */
#features {
  background: var(--white);
  padding: 120px 48px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.features-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 72px;
}

.features-headline em {
  font-style: italic;
  color: var(--stone);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(140, 123, 107, 0.1);
  border: 1px solid rgba(140, 123, 107, 0.1);
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.3s ease, opacity 0.6s var(--ease-reveal), transform 0.6s var(--ease-reveal);
  transition-delay: var(--delay, 0ms);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: var(--linen);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ============ CONTACT ============ */
#contact {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.8);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 9, 0.72);
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(253, 250, 245, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.contact-group {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(253, 250, 245, 0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  transition: color 0.3s ease;
}

.contact-phone:hover {
  color: var(--white);
}

.contact-cta {
  display: inline-block;
  border: 1px solid rgba(253, 250, 245, 0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 44px;
  margin-bottom: 40px;
  transition: background 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.contact-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.contact-address {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(253, 250, 245, 0.35);
  text-transform: uppercase;
}

/* ============ FOOTER ============ */
#footer {
  background: var(--dark);
  padding: 28px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(253, 250, 245, 0.45);
  letter-spacing: 0.04em;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(253, 250, 245, 0.25);
  text-transform: uppercase;
}

/* ============ ANIMATIONS (shared) ============ */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s var(--ease-reveal);
}

.reveal-clip.visible {
  clip-path: inset(0 0% 0 0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-reveal), transform 0.8s var(--ease-reveal);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  #nav {
    padding: 20px 28px;
  }

  #nav.scrolled {
    padding: 14px 28px;
  }

  .hero-price {
    right: 28px;
    bottom: 56px;
  }

  #stats {
    padding: 52px 24px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    flex: 0 0 calc(50% - 16px);
  }

  #story {
    padding: 80px 28px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-photo {
    position: static;
  }

  .story-photo img {
    height: 420px;
  }

  #features {
    padding: 80px 28px;
  }

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

  .contact-content {
    padding: 60px 28px;
  }

  .footer-inner {
    padding: 0;
    flex-direction: column;
    text-align: center;
  }
}

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

  #nav.scrolled {
    padding: 14px 24px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-price {
    right: 24px;
    bottom: 48px;
  }

  #stats {
    padding: 48px 20px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 28px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    flex: 0 0 calc(50% - 14px);
  }

  #story {
    padding: 72px 24px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-photo {
    position: static;
  }

  .story-photo img {
    height: 360px;
  }

  .gallery-header {
    padding: 72px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery-grid {
    padding: 0 24px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 200px;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-side {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .gallery-bottom {
    grid-row: 3;
    grid-template-columns: repeat(3, 1fr);
  }

  #features {
    padding: 72px 24px;
  }

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

  .contact-content {
    padding: 60px 24px;
  }

  .lb-stage {
    padding: 56px 56px;
  }

  .lb-footer {
    padding: 0 56px;
  }

  #footer {
    padding: 24px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
  }

  .gallery-grid {
    padding: 0 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px 180px;
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-bottom {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .lb-stage {
    padding: 56px 16px;
  }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  .lb-footer {
    padding: 0 16px;
  }
}/* End custom CSS */