
:root {
  --cream: #fbf6ee;
  --card: #fdfaf5;
  --ink: #40342c;
  --muted: #7a6a5c;
  --clay: #b06a44;
  --clay-dark: #96522f;
  --border: #e6dccd;
  --sage: #9bb79a;
  --gradient-warm: linear-gradient(170deg, #fdf8f0 0%, #f8efe1 55%, #f3e6d5 100%);
  --gradient-clay: linear-gradient(120deg, #bd7247, #98502e);
  --shadow-soft: 0 18px 50px -28px rgba(150, 82, 47, 0.45);
  --shadow-lift: 0 28px 70px -34px rgba(150, 82, 47, 0.55);
  --paper-grain: radial-gradient(rgba(176, 106, 68, 0.08) 1px, transparent 1px);
}

body {
  background-color: var(--cream);
  background-image: var(--paper-grain);
  background-size: 22px 22px;
  color: var(--ink);
  font-family: "Karla", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

::selection { background: rgba(176, 106, 68, 0.22); }

a { text-decoration: none; }

.bg-panel { background-color: rgba(253, 250, 245, 0.6); }
.border-y-soft { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.text-clay { color: var(--clay) !important; }
.text-muted-warm {
    color: #a55c37 !important;
    font-size: 16px;
    font-weight: 700;
}
.text-hand { font-family: "Caveat", cursive; }

.section { padding: 4rem 0; }

.surface-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.section.border-y-soft.bg-panel .eyebrow {
    margin: 0 0 5px;
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-lift { box-shadow: var(--shadow-lift); }
.rounded-2rem { border-radius: 2rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.rule-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(176, 106, 68, 0.7);
}

.btn-clay {
  background-image: var(--gradient-clay);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.btn-clay:hover { color: #fff; transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { color: var(--clay); border-color: var(--clay); }

/* Header */
.site-header { transition: background-color 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled {
  background-color: rgba(253, 250, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.nav-link-warm { color: #000000; font-size: 0.95rem; transition: color 0.25s ease; }
.nav-link-warm:hover { color: var(--clay); }

/* Hero */
.hero-title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.03; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.lead-warm {
    font-size: 1.1rem;
    line-height: 22px;
    color: var(--muted);
}
.quote-line { border-left: 2px solid rgba(176, 106, 68, 0.4); padding-left: 1.5rem; color: var(--ink); }

.hero-badge { position: absolute; bottom: -1.5rem; left: 1.5rem; max-width: 13rem; padding: 1rem 1.25rem; }

.lift-hover { transition: transform 0.3s ease; }
.lift-hover:hover { transform: translateY(-4px); }

.play-badge {
  width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background-image: var(--gradient-clay); color: #fff; box-shadow: var(--shadow-soft);
}
.video-tile { aspect-ratio: 4 / 5; background-color: #f1e7d9; display: flex; align-items: center; justify-content: center; }

/* Animations */
@keyframes joy-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.animate-rise { animation: joy-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }

@keyframes joy-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
.animate-float { animation: joy-float 9s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .animate-rise, .animate-float { animation: none; }
}




@media (min-width: 320px) and (max-width: 767px) {
#contact .container.text-center {
    text-align: left !important;
}
    
    
}


.sticky-top {
    z-index: 99;
    background-color: #faebd7;
}
.video-container { position: relative; width: 280px; background: #e8e2d0; border-radius: 20px 20px 0 0; overflow: hidden; cursor: pointer; } 
.video-container video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;  aspect-ratio: 3 / 4;     object-position: top;} 
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, #c97b52, #a85a3a); z-index: 2; transition: opacity 0.2s ease, transform 0.2s ease; } 
.video-container .play-icon path { fill: #fff; } 
.video-container .play-icon svg { margin-left: 3px;} 
.video-container .video-container.playing .play-icon { opacity: 0; pointer-events: none; } 
.video-container .caption { width: 280px; margin: 0; padding: 16px 20px; background: #fdfbf6; border-radius: 0 0 20px 20px; font-size: 14px; color: #a85a3a; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }



.video-container { position: relative; cursor: pointer; } 
.video-container video { width: 100%; height: 100%; display: block; } 
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgb(182 108 66 / 75%); border-radius: 50%; transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; 
} 

.video-container.is-playing .play-icon { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
.surface-card .btn-n {color: #b66b42;font-size: 16px;}
.created-btn a { color: #40342c;}

.gallery-wrap h2 {text-align: center; padding: 20px 0 70px;}
.gallery{ columns:4 250px; column-gap:16px; } 
.gallery img{ width:100%; display:block; margin-bottom:16px; border-radius:14px; cursor:pointer; box-shadow:0 8px 20px rgba(42,27,46,0.12); transition:transform .3s ease; } 
.gallery img:hover{ transform:scale(1.03); }  
.lightbox{ position:fixed; inset:0; background:rgba(0,0,0,0.85); display:none; align-items:center; justify-content:center; z-index:100; padding:20px; } 
.lightbox.open{ display:flex; } .lightbox img{ max-width:90vw; max-height:85vh; border-radius:12px; } 
.lightbox-close{ position:absolute; top:24px; right:5vw; color:#fff; font-size:2.4rem; cursor:pointer; line-height:1; } 

.lightbox-arrow{ position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:1.2rem; cursor:pointer; padding:10px 16px; user-select:none; border-radius:50%; transition:background .2s ease; } 
.lightbox-prev{ left:20px; } 
.lightbox-next{ right:20px; }



@media (max-width:600px){ 
    
    .gallery{ columns:1 100%; } 
    .lightbox-arrow{ font-size:1.4rem; padding:8px 12px; } 
.lightbox-prev{ left:8px; } .lightbox-next{ right:8px; } .gallery{ columns:1 100%; }
    
} 






