@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Brand Design System */
:root {
  --color-roasted-coffee: #20130F;
  --color-roasted-coffee-rgb: 32, 19, 15;
  --color-charcoal: #0D0D0D;
  --color-charcoal-rgb: 13, 13, 13;
  --color-cream: #FFF4E5;
  --color-cream-rgb: 255, 244, 229;
  --color-orange: #D96B2B;
  --color-orange-rgb: 217, 107, 43;
  --color-gold: #F3B13D;
  --color-gold-rgb: 243, 177, 61;
  --color-teal: #006D72;
  --color-teal-rgb: 0, 109, 114;
  --color-clay: #B86B45;
  --color-clay-rgb: 184, 107, 69;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;
  
  --container-max-width: 1200px;
  --header-height-full: 90px;
  --header-height-shrunk: 70px;
}

/* Base Reset & Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-roasted-coffee);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  padding-top: var(--header-height-full);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-roasted-coffee);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(var(--color-roasted-coffee-rgb), 0.85);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Progress Bar */
#progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-orange), var(--color-gold));
  transform-origin: 0 50%;
  z-index: 10001;
  transform: scaleX(0);
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    @keyframes grow-progress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    #progress {
      animation: grow-progress auto linear;
      animation-timeline: scroll(block root);
    }
  }
}

/* Sticky Header styling */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-full);
  background-color: rgba(var(--color-cream-rgb), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.08);
  display: flex;
  align-items: center;
  z-index: 10000;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-img {
  height: 34px;
  width: auto;
  transition: var(--transition-smooth);
  object-fit: contain;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-clay);
  font-weight: 600;
  transition: var(--transition-smooth);
  border-left: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.15);
  padding-left: 16px;
  height: 20px;
  display: flex;
  align-items: center;
}

.header-ctas {
  display: flex;
  gap: 12px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--color-orange-rgb), 0.25);
}

.btn-primary:hover {
  background-color: #c4571c;
  box-shadow: 0 6px 20px rgba(var(--color-orange-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-roasted-coffee);
  border: 1px solid var(--color-roasted-coffee);
}

.btn-secondary:hover {
  background-color: var(--color-roasted-coffee);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  font-size: 0.85rem;
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp i {
  margin-right: 6px;
  font-size: 1.1rem;
}

/* Shrinking Header scroll effect */
@keyframes shrink-header {
  to {
    height: var(--header-height-shrunk);
    background-color: rgba(var(--color-cream-rgb), 0.98);
    box-shadow: 0 4px 20px rgba(var(--color-roasted-coffee-rgb), 0.08);
  }
}

@keyframes shrink-logo {
  to {
    height: 26px;
  }
}

@keyframes hide-sub {
  to {
    opacity: 0;
    transform: translateX(-10px);
    border-left-color: transparent;
    padding-left: 0;
    margin: 0;
    width: 0;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: scroll()) and (animation-range: 0px 100px)) {
    .header-wrapper {
      animation: shrink-header auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 100px;
    }
    .logo-img {
      animation: shrink-logo auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 100px;
    }
    .logo-sub {
      animation: hide-sub auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 50px;
    }
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  z-index: 1;
}

/* Ambient Spotlight */
.hero-spotlight {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle 500px at 50% 50%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 80%);
  z-index: 2;
  pointer-events: none;
  animation: spotlightMove 15s ease-in-out infinite alternate;
}

@keyframes spotlightMove {
  0% { transform: translate(-10%, -10%); }
  100% { transform: translate(10%, 10%); }
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--color-cream);
  line-height: 1.05;
}

.hero-line-span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-line-span:nth-child(1) { animation-delay: 0.1s; }
.hero-line-span:nth-child(2) { animation-delay: 0.3s; }
.hero-line-span:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-family: var(--font-body);
  color: rgba(var(--color-cream-rgb), 0.85);
  font-weight: 300;
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards;
}

.hero-ctas .btn {
  font-size: 0.9rem;
  padding: 16px 28px;
}

.hero-ctas .btn-secondary {
  color: var(--color-cream);
  border-color: rgba(var(--color-cream-rgb), 0.4);
}

.hero-ctas .btn-secondary:hover {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  border-color: var(--color-cream);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 16px;
  border-top: 1px solid rgba(var(--color-cream-rgb), 0.15);
  padding-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.1s forwards;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
}

.hero-proof-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Cards */
.hero-card {
  background: rgba(32, 19, 15, 0.65);
  border: 1px solid rgba(255, 244, 229, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 8px;
  width: 290px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.3s forwards, floating 6s ease-in-out infinite;
}

.hero-card-1 {
  top: -80px;
  left: 20px;
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.3s forwards, floating 6s ease-in-out infinite;
}

.hero-card-2 {
  bottom: -120px;
  right: 20px;
  animation-delay: 1.5s, 0.5s;
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.5s forwards, floatingAlt 7s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatingAlt {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-card h4 {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.hero-card p {
  color: var(--color-cream);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-card-meta {
  font-size: 0.75rem;
  color: var(--color-clay);
  margin-top: 12px;
  display: block;
}

/* Sections Common styling */
section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-roasted-coffee);
  color: var(--color-cream);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-cream);
}

.section-dark p {
  color: rgba(var(--color-cream-rgb), 0.85);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section-title-wrap p {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 300;
}

/* Section 3: Search Intent Reassurance */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reassurance-card {
  background-color: #fff;
  border: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.05);
  padding: 48px 36px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(var(--color-roasted-coffee-rgb), 0.03);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.reassurance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--color-roasted-coffee-rgb), 0.08);
  border-color: rgba(var(--color-orange-rgb), 0.2);
}

/* Texture overlay logic for cards */
.reassurance-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 100% 100%, rgba(var(--color-orange-rgb), 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.reassurance-card:hover::after {
  opacity: 1;
}

.reassurance-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.reassurance-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* Scroll entry reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section 4: Venue Use-cases */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.venue-card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--color-roasted-coffee-rgb), 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(var(--color-roasted-coffee-rgb), 0.1);
}

.venue-img-wrap {
  position: relative;
  padding-bottom: 110%; /* Tall ratio */
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.venue-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.venue-card:hover .venue-img {
  transform: scale(1.08);
}

/* Light sweep effect */
.venue-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15) 50%, transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.venue-card:hover .venue-img-wrap::after {
  animation: sweep 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes sweep {
  100% { left: 125%; }
}

.venue-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-dark .venue-card h3,
.venue-body h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--color-roasted-coffee) !important;
}

.section-dark .venue-card p,
.venue-body p {
  font-size: 0.9rem;
  color: rgba(var(--color-roasted-coffee-rgb), 0.8) !important;
  margin-bottom: 24px;
  line-height: 1.5;
  flex-grow: 1;
}

.venue-body .btn-whatsapp {
  margin-top: auto;
  font-size: 0.75rem;
  padding: 10px 14px;
}

/* Section 5: Featured Styles Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-chip {
  background-color: #fff;
  border: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.1);
  color: var(--color-roasted-coffee);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-chip:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.filter-chip.active {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--color-orange-rgb), 0.2);
}

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

.gallery-card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(var(--color-roasted-coffee-rgb), 0.03);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: scale(1);
}

.gallery-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  display: none;
}

.gallery-img-wrap {
  position: relative;
  padding-bottom: 90%;
  overflow: hidden;
  background-color: var(--color-roasted-coffee);
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

/* Texture overlay on hover */
.gallery-texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 19, 15, 0.4);
  background-image: radial-gradient(circle, transparent 20%, rgba(13,13,13,0.8) 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-card:hover .gallery-texture-overlay {
  opacity: 1;
}

.gallery-overlay-btn {
  background-color: #fff;
  color: var(--color-roasted-coffee);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info {
  padding: 24px;
}

.gallery-info h4 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.gallery-info p.gallery-best {
  font-size: 0.8rem;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.06);
}

.gallery-custom-label {
  font-size: 0.8rem;
  color: var(--color-clay);
  font-weight: 500;
}

.gallery-ask-link {
  font-size: 0.8rem;
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gallery-ask-link:hover {
  text-decoration: underline;
}

/* Section 6: Commercial Value */
.value-section-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  z-index: 1;
}

.value-section .container {
  position: relative;
  z-index: 2;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.value-point {
  text-align: center;
  padding: 20px;
}

.value-point h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--color-gold);
}

.value-point p {
  max-width: 320px;
  margin: 0 auto;
}

.value-cta-wrap {
  text-align: center;
}

.value-cta-wrap .btn {
  padding: 16px 36px;
}

/* Section 7: Material and Durability */
.durability-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.durability-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(var(--color-roasted-coffee-rgb), 0.12);
  padding-bottom: 85%;
}

.durability-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out; /* Parallax speed */
}

.durability-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.durability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}

.durability-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.durability-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(var(--color-orange-rgb), 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.durability-icon::before {
  content: '✓';
  font-weight: 700;
  font-size: 0.75rem;
}

.durability-item-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.durability-item-text p {
  font-size: 0.9rem;
  color: rgba(var(--color-roasted-coffee-rgb), 0.75);
}

.durability-note {
  font-size: 0.85rem;
  color: var(--color-clay);
  font-style: italic;
}

/* Section 8: Project Process */
.process-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline-bar {
  position: absolute;
  top: 40px;
  left: 36px;
  width: 2px;
  height: calc(100% - 80px);
  background-color: rgba(var(--color-roasted-coffee-rgb), 0.08);
  z-index: 1;
}

.process-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-orange), var(--color-gold));
  transition: height 0.1s ease-out;
}

.process-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-num-wrap {
  display: flex;
  justify-content: center;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid rgba(var(--color-roasted-coffee-rgb), 0.1);
  color: var(--color-roasted-coffee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.process-step.active .process-num {
  border-color: var(--color-orange);
  background-color: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--color-orange-rgb), 0.3);
}

.process-step-content {
  padding-top: 10px;
}

.process-step-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-cta-wrap {
  text-align: center;
  margin-top: 60px;
}

.process-cta-wrap .btn {
  padding: 16px 36px;
}

/* Section 9: Lead Qualification Form */
.form-section {
  background: linear-gradient(to bottom, var(--color-cream), #fff4e5bb);
  position: relative;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.04);
  border-radius: 12px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(var(--color-roasted-coffee-rgb), 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-roasted-coffee);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.15);
  background-color: #fff;
  color: var(--color-roasted-coffee);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(var(--color-orange-rgb), 0.1);
}

/* Custom File Uploader */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed rgba(var(--color-roasted-coffee-rgb), 0.15);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  background-color: rgba(var(--color-cream-rgb), 0.2);
  transition: var(--transition-smooth);
}

.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
  border-color: var(--color-orange);
  background-color: rgba(var(--color-orange-rgb), 0.02);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 1.8rem;
  color: var(--color-clay);
  margin-bottom: 8px;
  display: block;
}

.file-upload-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(var(--color-roasted-coffee-rgb), 0.75);
}

.file-upload-text span {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: underline;
}

.file-upload-preview {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal);
  display: none;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.form-submit-row .btn {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  font-size: 0.95rem;
}

.form-microcopy {
  font-size: 0.8rem;
  color: var(--color-clay);
  font-style: italic;
}

.form-submit-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  font-size: 0.75rem;
  color: rgba(var(--color-roasted-coffee-rgb), 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-submit-divider::before, .form-submit-divider::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: rgba(var(--color-roasted-coffee-rgb), 0.1);
}

.form-submit-divider::before { margin-right: 16px; }
.form-submit-divider::after { margin-left: 16px; }

/* Section 10: FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-disclosure {
  background-color: #fff;
  border: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.06);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(var(--color-roasted-coffee-rgb), 0.02);
  transition: var(--transition-smooth);
}

.faq-disclosure[open] {
  box-shadow: 0 10px 25px rgba(var(--color-roasted-coffee-rgb), 0.05);
  border-color: rgba(var(--color-orange-rgb), 0.15);
}

.faq-summary {
  padding: 24px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-orange);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-disclosure[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.04);
  padding-top: 20px;
}

.faq-content p {
  font-size: 0.95rem;
  color: rgba(var(--color-roasted-coffee-rgb), 0.75);
}

/* Section 11: Final CTA */
.final-cta {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-cream);
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(var(--color-cream-rgb), 0.85);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.final-cta-buttons .btn {
  padding: 16px 36px;
}

.final-cta-buttons .btn-secondary {
  color: var(--color-cream);
  border-color: rgba(var(--color-cream-rgb), 0.4);
}

.final-cta-buttons .btn-secondary:hover {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  border-color: var(--color-cream);
}

/* Footer styling */
footer {
  background-color: #080808;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 100px 0; /* Extra bottom padding for mobile sticky CTA */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p,
footer address {
  color: rgba(255, 255, 255, 0.65);
}

footer p strong,
footer address strong {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

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

.footer-logo {
  height: 36px;
  width: auto;
  align-self: flex-start;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  font-size: 0.9rem;
}

.footer-info address {
  font-style: normal;
  line-height: 1.6;
}

.footer-info a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-info a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Mobile Sticky WhatsApp Button */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--color-cream-rgb), 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(var(--color-roasted-coffee-rgb), 0.08);
  padding: 12px 24px;
  z-index: 9999;
  display: none; /* Desktop hidden */
}

.mobile-sticky-cta .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Breakpoints (Mobile First overrides) */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }
  
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .durability-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: var(--header-height-shrunk);
  }
  
  .header-wrapper {
    height: var(--header-height-shrunk);
  }
  
  .logo-img {
    height: 26px;
  }
  
  .logo-sub {
    display: none;
  }
  
  .header-ctas {
    display: none; /* Hide on mobile header, rely on Hero and floating footer CTAs */
  }
  
  .hero {
    min-height: auto;
    padding: 50px 0 120px 0;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-visual {
    height: 200px;
    margin-top: 40px;
  }
  
  .hero-card-1 {
    top: -30px;
    left: 5%;
    width: 90%;
  }
  
  .hero-card-2 {
    bottom: -60px;
    right: 5%;
    width: 90%;
  }
  
  .venue-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    align-self: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .mobile-sticky-cta {
    display: block; /* Visible only on mobile */
  }
  
  .final-cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
