/* ============================================
   Global Component Styles
   ============================================ */

/* ============================================
   CTA Button Component
   ============================================ */

.button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 2px solid var(--color-gold);
  border-radius: 0.25rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
  min-height: 44px;
  min-width: 44px;
}

.button:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

/* Button outline variant */
.button--outline {
  background-color: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.button--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: background-color var(--transition-base);
    transform: none;
  }

  .button:hover {
    transform: none;
  }

  .button:active {
    transform: none;
  }
}

/* Accessibility: Disable hover on touch devices */
@media (hover: none) {
  .button:hover {
    background-color: var(--color-button-bg);
    transform: none;
  }

  .button--outline:hover {
    background-color: transparent;
    color: #FFFFFF;
  }
}

/* ============================================
   Header Navigation Component
   ============================================ */

header {
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(154, 123, 79, 0.15);
  padding: var(--space-sm) var(--space-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 52px;
  }
}

/* Mobile-first navigation: stacked by default */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
}

/* Desktop navigation: horizontal layout */
@media (min-width: 768px) {
  .nav-links {
    flex-direction: row;
    gap: var(--space-lg);
    margin: 0;
  }
}

.nav-link {
  color: #FFFFFF;
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  padding: var(--space-xs) 0;
}

.nav-link:hover {
  color: var(--color-beige-light);
}

/* ============================================
   Footer Component
   ============================================ */

footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid rgba(154, 123, 79, 0.1);
  padding: var(--space-xl) var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop: multi-column layout */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.footer-column h4 {
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: var(--space-xs);
}

.footer-column a {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(154, 123, 79, 0.1);
}

.footer-bottom p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding: var(--space-2xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .hero-cta {
    flex-direction: row;
    gap: var(--space-md);
  }
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
}

.section-subtitle {
  text-align: center;
  color: #FFFFFF;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
}

/* ============================================
   Process Section
   ============================================ */

.process {
  background-color: var(--color-gray-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  padding: var(--space-lg);
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: 0.5rem;
  transition: border-color var(--transition-base);
}

.process-step:hover {
  border-color: rgba(154, 123, 79, 0.5);
}

.process-step-image {
  display: none;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide broken-image icon when src is empty */
.process-step-image img:not([src]),
.process-step-image img[src=""] {
  visibility: hidden;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(154, 123, 79, 0.18), rgba(154, 123, 79, 0.05));
  border: 1.5px solid rgba(154, 123, 79, 0.45);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.03em;
}

.process-step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--font-size-sm);
  color: #FFFFFF;
  line-height: 1.7;
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
  background-color: var(--color-gray-medium);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  padding: var(--space-lg);
  background: linear-gradient(145deg, rgba(154, 123, 79, 0.05) 0%, rgba(0, 0, 0, 0.18) 100%);
  border: 1px solid rgba(154, 123, 79, 0.15);
  border-radius: 0.75rem;
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: #FFFFFF;
  line-height: 1.7;
}

.benefits-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   Page Hero (Internal Pages)
   ============================================ */

.page-hero {
  padding: var(--space-xl) 0;
  text-align: center;
  border-bottom: 1px solid rgba(154, 123, 79, 0.1);
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  font-size: var(--font-size-lg);
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Services Page
   ============================================ */

.service-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(154, 123, 79, 0.1);
  position: relative;
}

.service-item > .service-layout {
  position: relative;
  z-index: 1;
}

.service-item:last-child {
  border-bottom: none;
}

.service-content h2 {
  margin-bottom: var(--space-sm);
}

.service-content > p {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-features li {
  padding-left: var(--space-md);
  position: relative;
  color: #FFFFFF;
}

.service-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #FFFFFF;
  font-weight: 700;
}

/* ============================================
   Before/After Comparison
   ============================================ */

.before-after {
  background-color: var(--color-gray-light);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .comparison-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.comparison-card {
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.comparison-card:hover {
  border-color: rgba(154, 123, 79, 0.4);
}

.comparison-before,
.comparison-after {
  padding: var(--space-lg);
}

.comparison-before {
  background-color: rgba(0, 0, 0, 0.3);
}

.comparison-after {
  background-color: rgba(154, 123, 79, 0.05);
}

.comparison-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: #FFFFFF;
}

.comparison-before .comparison-label {
  opacity: 0.6;
}

.comparison-card p {
  font-size: var(--font-size-sm);
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Tool Showcase
   ============================================ */

.tool-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tool-content h2 {
  margin-bottom: var(--space-md);
}

.tool-content > p {
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.tool-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .tool-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tool-benefits li {
  padding: var(--space-sm);
  background-color: rgba(154, 123, 79, 0.03);
  border-radius: 0.25rem;
}

.tool-benefits strong {
  color: #FFFFFF;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(154, 123, 79, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(154, 123, 79, 0.1);
}

.faq-cta p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

/* ============================================
   About Page - Founder Split Layout
   ============================================ */

.founder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr 2fr;
  }
}

.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px dashed rgba(154, 123, 79, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .founder-image-col {
    position: sticky;
    top: var(--space-xl);
  }
}

/* ============================================
   About Page - Workspace Gallery
   ============================================ */

.workspace-gallery {
  background-color: var(--color-gray-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
}

.gallery-item--large {
  grid-row: span 2;
}

.gallery-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: rgba(154, 123, 79, 0.06);
  border: 1px solid rgba(154, 123, 79, 0.22);
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
  cursor: pointer;
}

.gallery-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.gallery-item--large .gallery-image-placeholder {
  aspect-ratio: 4 / 3;
}

.gallery-image-placeholder:hover {
  border-color: rgba(212, 178, 122, 0.55);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(212, 178, 122, 0.18),
              0 0 36px rgba(154, 123, 79, 0.18);
  transform: translateY(-3px);
}

.gallery-image-placeholder:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-image-placeholder,
  .gallery-item--large .gallery-image-placeholder {
    aspect-ratio: 5 / 4;
  }
}

@media (min-width: 1100px) {
  .workspace-gallery .container {
    max-width: 1500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-image-placeholder,
  .gallery-image-placeholder img {
    transition: none;
  }
  .gallery-image-placeholder:hover {
    transform: none;
  }
  .gallery-image-placeholder:hover img {
    transform: none;
  }
}

/* ============================================
   Services Page - Service Split Layout
   ============================================ */

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .service-layout--reverse .service-image {
    order: -1;
  }
}

.service-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px dashed rgba(154, 123, 79, 0.25);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-base);
}

.service-image-placeholder:hover {
  border-color: rgba(154, 123, 79, 0.45);
}

/* n8n workflow screenshot */
.tool-screenshot-placeholder {
  width: 100%;
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  aspect-ratio: 16 / 7;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px dashed rgba(154, 123, 79, 0.25);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tool-screenshot-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}

/* ============================================
   Contact Page - Headshot
   ============================================ */

.contact-headshot {
  margin-bottom: var(--space-lg);
}

.contact-headshot-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px solid rgba(154, 123, 79, 0.3);
  display: block;
  padding: 8px;
}

.contact-headshot-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px dashed rgba(154, 123, 79, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xs);
}

.contact-headshot-placeholder .image-placeholder-label {
  font-size: 0.65rem;
}

/* ============================================
   About Page - Founder Story
   ============================================ */

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.story-block {
  margin-bottom: var(--space-xl);
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.story-block p {
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.story-block p:last-child {
  margin-bottom: 0;
}

/* ============================================
   About Page - Values Section
   ============================================ */

.values {
  background-color: var(--color-gray-medium);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  grid-auto-rows: 1fr;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    grid-auto-rows: 1fr;
  }
}

.value-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  padding: var(--space-lg);
  border: 1px solid rgba(154, 123, 79, 0.22);
  border-radius: 0.5rem;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  border-color: rgba(154, 123, 79, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(154, 123, 79, 0.1) inset;
}

.value-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   About Page - CTA Section
   ============================================ */

.about-cta {
  border-top: 1px solid rgba(154, 123, 79, 0.1);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-sm);
}

.cta-content p {
  color: #FFFFFF;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* ============================================
   Contact Page - Booking Section
   ============================================ */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .booking-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.booking-calendar h2 {
  margin-bottom: var(--space-sm);
}

.booking-calendar > p {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.booking-agenda {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.booking-agenda li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: #FFFFFF;
}

.booking-agenda li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFFFFF;
}

/* Custom consultation form (n8n webhook backend) */
.consult-form {
  margin-top: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.85) 0%, rgba(10, 10, 10, 0.92) 100%);
  border: 1px solid rgba(154, 123, 79, 0.22);
  border-radius: 0.85rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.consult-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.consult-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.consult-form .form-field[hidden] {
  display: none;
}

.consult-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(230, 230, 230, 0.92);
}

.consult-form .req {
  color: var(--color-gold-light, #D4B27A);
  font-weight: 600;
  margin-left: 2px;
}

.consult-form .opt {
  color: rgba(180, 180, 180, 0.55);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 4px;
}

.consult-form input,
.consult-form textarea,
.consult-form select {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: #F2F2F2;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: 0.45rem;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  outline: none;
  width: 100%;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: rgba(180, 180, 180, 0.4);
}

.consult-form input:hover,
.consult-form textarea:hover,
.consult-form select:hover {
  border-color: rgba(154, 123, 79, 0.4);
}

.consult-form input:focus,
.consult-form textarea:focus,
.consult-form select:focus {
  border-color: var(--color-gold-light, #D4B27A);
  box-shadow: 0 0 0 3px rgba(212, 178, 122, 0.18);
  background: rgba(0, 0, 0, 0.65);
}

.consult-form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.consult-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23D4B27A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}

.consult-form select option {
  background: #0F0F0F;
  color: #F2F2F2;
}

.consult-form input.invalid,
.consult-form textarea.invalid,
.consult-form select.invalid {
  border-color: rgba(220, 90, 90, 0.7);
  box-shadow: 0 0 0 3px rgba(220, 90, 90, 0.14);
}

.consult-submit {
  margin-top: var(--space-sm);
  align-self: flex-start;
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0E0E0E;
  background: var(--gradient-gold, linear-gradient(135deg, #9A7B4F 0%, #D4B27A 100%));
  border: 1px solid var(--color-gold-dark, #9A7B4F);
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.consult-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(154, 123, 79, 0.32);
  filter: brightness(1.05);
}

.consult-submit:active:not(:disabled) {
  transform: translateY(0);
}

.consult-submit:disabled {
  opacity: 0.6;
  cursor: progress;
}

.consult-disclaimer {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(230, 230, 230, 0.6);
  text-align: center;
}

.consult-disclaimer a {
  color: var(--color-gold-light, #D4B27A);
  text-decoration: underline;
  text-decoration-color: rgba(212, 178, 122, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.consult-disclaimer a:hover {
  color: #FFFFFF;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.consult-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  color: rgba(230, 230, 230, 0.75);
}

.consult-status.success {
  color: var(--color-gold-light, #D4B27A);
  font-weight: 500;
}

.consult-status.error {
  color: rgba(230, 130, 130, 0.95);
}

@media (max-width: 640px) {
  .consult-form {
    padding: var(--space-lg);
  }
  .consult-form .form-row {
    grid-template-columns: 1fr;
  }
  .consult-submit {
    align-self: stretch;
    text-align: center;
  }
}

/* Contact Info Sidebar */
.contact-info h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(154, 123, 79, 0.1);
}

.contact-method {
  margin-bottom: var(--space-lg);
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

.contact-method p {
  color: #FFFFFF;
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.contact-link {
  display: inline-block;
  color: #FFFFFF;
  font-weight: 600;
  transition: opacity var(--transition-base);
}

.contact-link:hover {
  opacity: 0.8;
}

/* ============================================
   Contact Page - FAQ Section
   ============================================ */

.contact-faq {
  background-color: var(--color-gray-dark);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-faq-item {
  text-align: center;
  padding: var(--space-md);
}

.contact-faq-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.contact-faq-item p {
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Hero Split Layout
   ============================================ */

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  background-color: rgba(154, 123, 79, 0.06);
  border: 2px dashed rgba(154, 123, 79, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   Stats Section
   ============================================ */

.stats {
  background-color: var(--color-gray-darkest);
  border-top: 1px solid rgba(154, 123, 79, 0.15);
  border-bottom: 1px solid rgba(154, 123, 79, 0.15);
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   Image Placeholder Shared Style
   ============================================ */

.image-placeholder-label {
  font-size: var(--font-size-sm);
  color: rgba(154, 123, 79, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   Case Studies Grid
   ============================================ */

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-card {
  background-color: var(--color-gray-medium);
  border: 1px solid rgba(154, 123, 79, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-slow);
}

.case-study-card:hover {
  border-color: rgba(154, 123, 79, 0.5);
  transform: translateY(-4px);
}

.case-study-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(154, 123, 79, 0.12) 0%, rgba(154, 123, 79, 0.02) 100%);
  border-bottom: 1px solid rgba(154, 123, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-study-content {
  padding: var(--space-lg);
}

.case-study-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.case-study-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.case-study-content p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.case-study-result {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(154, 123, 79, 0.15);
}

.result-number {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-gold);
}

.result-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.portfolio-cta {
  text-align: center;
}

/* ============================================
   Portfolio Preview / Coming Soon
   ============================================ */

.portfolio-preview {
  background-color: var(--color-gray-dark);
}

.portfolio-placeholder {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-coming-soon {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-gray-medium);
  border: 1px solid rgba(154, 123, 79, 0.3);
  border-radius: 0.5rem;
}

.portfolio-coming-soon h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.portfolio-coming-soon p {
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.portfolio-coming-soon p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta {
  background: linear-gradient(180deg, var(--color-gray-dark) 0%, var(--color-gray-darkest) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: var(--space-sm);
}

.final-cta p {
  color: #FFFFFF;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* ============================================
   Circuit Pattern Backgrounds
   ============================================ */

/* SVG circuit pattern - beige nodes and lines */
.circuit-bg {
  position: relative;
}

.circuit-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%239A7B4F' stroke-width='1'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='50' cy='30' r='2'/%3E%3Ccircle cx='90' cy='15' r='3'/%3E%3Ccircle cx='25' cy='60' r='2'/%3E%3Ccircle cx='70' cy='70' r='3'/%3E%3Ccircle cx='85' cy='50' r='2'/%3E%3Ccircle cx='40' cy='90' r='2'/%3E%3Cpath d='M10 10 L50 30'/%3E%3Cpath d='M50 30 L90 15'/%3E%3Cpath d='M50 30 L25 60'/%3E%3Cpath d='M25 60 L40 90'/%3E%3Cpath d='M50 30 L70 70'/%3E%3Cpath d='M70 70 L85 50'/%3E%3Cpath d='M85 50 L90 15'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hero section with circuit pattern */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%239A7B4F' stroke-width='1.5'%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='80' cy='40' r='3'/%3E%3Ccircle cx='160' cy='25' r='4'/%3E%3Ccircle cx='240' cy='35' r='3'/%3E%3Ccircle cx='280' cy='60' r='4'/%3E%3Ccircle cx='40' cy='100' r='3'/%3E%3Ccircle cx='120' cy='80' r='4'/%3E%3Ccircle cx='180' cy='90' r='3'/%3E%3Ccircle cx='250' cy='100' r='4'/%3E%3Ccircle cx='60' cy='160' r='3'/%3E%3Ccircle cx='140' cy='150' r='4'/%3E%3Ccircle cx='200' cy='140' r='3'/%3E%3Ccircle cx='270' cy='160' r='3'/%3E%3Ccircle cx='30' cy='220' r='4'/%3E%3Ccircle cx='100' cy='200' r='3'/%3E%3Ccircle cx='170' cy='220' r='4'/%3E%3Ccircle cx='230' cy='210' r='3'/%3E%3Ccircle cx='280' cy='240' r='4'/%3E%3Ccircle cx='50' cy='280' r='3'/%3E%3Ccircle cx='130' cy='270' r='4'/%3E%3Ccircle cx='210' cy='280' r='3'/%3E%3Ccircle cx='260' cy='290' r='3'/%3E%3Cpath d='M20 20 L80 40'/%3E%3Cpath d='M80 40 L160 25'/%3E%3Cpath d='M160 25 L240 35'/%3E%3Cpath d='M240 35 L280 60'/%3E%3Cpath d='M80 40 L120 80'/%3E%3Cpath d='M120 80 L180 90'/%3E%3Cpath d='M180 90 L250 100'/%3E%3Cpath d='M40 100 L120 80'/%3E%3Cpath d='M40 100 L60 160'/%3E%3Cpath d='M60 160 L140 150'/%3E%3Cpath d='M140 150 L200 140'/%3E%3Cpath d='M200 140 L270 160'/%3E%3Cpath d='M250 100 L270 160'/%3E%3Cpath d='M30 220 L100 200'/%3E%3Cpath d='M100 200 L140 150'/%3E%3Cpath d='M100 200 L170 220'/%3E%3Cpath d='M170 220 L230 210'/%3E%3Cpath d='M230 210 L280 240'/%3E%3Cpath d='M50 280 L130 270'/%3E%3Cpath d='M130 270 L170 220'/%3E%3Cpath d='M130 270 L210 280'/%3E%3Cpath d='M210 280 L260 290'/%3E%3Cpath d='M280 240 L260 290'/%3E%3Cpath d='M60 160 L30 220'/%3E%3Cpath d='M30 220 L50 280'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 500px;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* Page hero with circuit pattern */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%239A7B4F' stroke-width='1.5'%3E%3Ccircle cx='15' cy='15' r='4'/%3E%3Ccircle cx='75' cy='25' r='3'/%3E%3Ccircle cx='135' cy='20' r='4'/%3E%3Ccircle cx='185' cy='30' r='3'/%3E%3Ccircle cx='45' cy='75' r='3'/%3E%3Ccircle cx='105' cy='60' r='4'/%3E%3Ccircle cx='165' cy='80' r='3'/%3E%3Ccircle cx='25' cy='130' r='4'/%3E%3Ccircle cx='85' cy='120' r='3'/%3E%3Ccircle cx='145' cy='140' r='4'/%3E%3Ccircle cx='180' cy='130' r='3'/%3E%3Ccircle cx='55' cy='180' r='3'/%3E%3Ccircle cx='120' cy='175' r='4'/%3E%3Ccircle cx='175' cy='185' r='3'/%3E%3Cpath d='M15 15 L75 25'/%3E%3Cpath d='M75 25 L135 20'/%3E%3Cpath d='M135 20 L185 30'/%3E%3Cpath d='M75 25 L105 60'/%3E%3Cpath d='M105 60 L165 80'/%3E%3Cpath d='M45 75 L105 60'/%3E%3Cpath d='M45 75 L25 130'/%3E%3Cpath d='M25 130 L85 120'/%3E%3Cpath d='M85 120 L145 140'/%3E%3Cpath d='M145 140 L180 130'/%3E%3Cpath d='M165 80 L180 130'/%3E%3Cpath d='M25 130 L55 180'/%3E%3Cpath d='M55 180 L120 175'/%3E%3Cpath d='M120 175 L175 185'/%3E%3Cpath d='M145 140 L120 175'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 350px 350px;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Circuit pattern for sections */
.benefits,
.values,
.before-after,
.contact-faq,
.final-cta {
  position: relative;
  overflow: hidden;
}

.benefits::before,
.values::before,
.before-after::before,
.contact-faq::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%239A7B4F' stroke-width='1'%3E%3Ccircle cx='15' cy='20' r='3'/%3E%3Ccircle cx='60' cy='15' r='2'/%3E%3Ccircle cx='110' cy='25' r='3'/%3E%3Ccircle cx='140' cy='40' r='2'/%3E%3Ccircle cx='30' cy='70' r='2'/%3E%3Ccircle cx='80' cy='60' r='3'/%3E%3Ccircle cx='125' cy='75' r='2'/%3E%3Ccircle cx='20' cy='120' r='3'/%3E%3Ccircle cx='70' cy='110' r='2'/%3E%3Ccircle cx='115' cy='130' r='3'/%3E%3Ccircle cx='145' cy='115' r='2'/%3E%3Cpath d='M15 20 L60 15'/%3E%3Cpath d='M60 15 L110 25'/%3E%3Cpath d='M110 25 L140 40'/%3E%3Cpath d='M30 70 L80 60'/%3E%3Cpath d='M80 60 L125 75'/%3E%3Cpath d='M60 15 L80 60'/%3E%3Cpath d='M20 120 L70 110'/%3E%3Cpath d='M70 110 L115 130'/%3E%3Cpath d='M115 130 L145 115'/%3E%3Cpath d='M30 70 L20 120'/%3E%3Cpath d='M125 75 L145 115'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 250px 250px;
}

.benefits > *,
.values > *,
.before-after > *,
.contact-faq > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

/* Floating circuit decorations */
.circuit-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.circuit-decoration--top-right {
  top: 5%;
  right: 5%;
  width: 150px;
  height: 150px;
}

.circuit-decoration--bottom-left {
  bottom: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
}

/* Gold accent for headings and highlights */
.text-gold {
  color: var(--color-gold);
}

.accent-gold {
  border-color: var(--color-gold);
}

/* ============================================
   Scroll Animations
   ============================================ */

/* Base state - hidden before animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-left,
  .animate-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Professional Design Enhancements
   ============================================ */

/* Gradient primary button */
.button:not(.button--outline) {
  background: var(--gradient-gold);
  border-color: var(--color-gold-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.05em;
}

.button:not(.button--outline):hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-beige-light) 100%);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Benefit card hover lift + top accent line */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-lg);
  right: var(--space-lg);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 123, 79, 0.55), transparent);
  border-radius: 0 0 1px 1px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 123, 79, 0.32);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

/* Process step hover lift */
.process-step {
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-slow);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Case study card — decorative gradient orbs */
.case-study-image::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 123, 79, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.case-study-image::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 123, 79, 0.2) 0%, transparent 70%);
  top: 30%;
  left: 72%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Per-card accent tints */
.case-study-card:nth-child(1) .case-study-image {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(154, 123, 79, 0.04) 100%);
}

.case-study-card:nth-child(2) .case-study-image {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(154, 123, 79, 0.04) 100%);
}

.case-study-card:nth-child(3) .case-study-image {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(154, 123, 79, 0.04) 100%);
}

.case-study-image .image-placeholder-label {
  display: none;
}

/* Stats dividers between items */
@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(154, 123, 79, 0.3), transparent);
  }
}

/* Tabular numerals for stats */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Final CTA ambient glow */
.final-cta::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(154, 123, 79, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Hero visual ambient glow behind canvas */
.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 123, 79, 0.13) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-visual > * {
  position: relative;
  z-index: 1;
}

/* Section title decorative underline */
.section-title {
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

/* Value card hover */
.value-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Gradient hero headline */
.hero h1 {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter cursor fix for gradient parent */
#typewriter {
  -webkit-text-fill-color: var(--color-gold);
}

/* Section gradient background enhancemen: stats */
.stats {
  background: linear-gradient(180deg, var(--color-gray-darkest) 0%, rgba(10, 10, 10, 0.95) 100%);
}

/* Nav active link indicator */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* ============================================
   Shared decorative gold lines with end-dot
   Used by ROI Calculator (.calc-deco) and any
   pure-black section (.section-deco)
   ============================================ */

.calc-deco,
.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 24%, transparent 34%, transparent 66%, #000 76%, #000 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 24%, transparent 34%, transparent 66%, #000 76%, #000 100%);
}

.cd-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(154, 123, 79, 0.3) 30%, rgba(154, 123, 79, 0.55) 100%);
  pointer-events: none;
}

.cd-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translate(0, -50%);
  box-shadow:
    0 0 10px rgba(184, 149, 110, 0.7),
    0 0 0 3px rgba(154, 123, 79, 0.12);
}

.cd-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(154, 123, 79, 0.45);
  transform: translate(-2px, -50%);
}

.cd-line-1 { top: 14px;    left: 0; width: 13%; }
.cd-line-2 { top: 36px;    left: 0; width: 9%;  }
.cd-line-3 { bottom: 36px; left: 0; width: 14%; }
.cd-line-4 { bottom: 14px; left: 0; width: 10%; }

.cd-line-5,
.cd-line-6,
.cd-line-7,
.cd-line-8 {
  background: linear-gradient(270deg, transparent 0%, rgba(154, 123, 79, 0.3) 30%, rgba(154, 123, 79, 0.55) 100%);
}

.cd-line-5::after,
.cd-line-6::after,
.cd-line-7::after,
.cd-line-8::after {
  right: auto;
  left: -3px;
}

.cd-line-5::before,
.cd-line-6::before,
.cd-line-7::before,
.cd-line-8::before {
  left: auto;
  right: 0;
  transform: translate(2px, -50%);
}

.cd-line-5 { top: 22px;    right: 0; width: 11%; }
.cd-line-6 { top: 44px;    right: 0; width: 13%; }
.cd-line-7 { bottom: 44px; right: 0; width: 12%; }
.cd-line-8 { bottom: 22px; right: 0; width: 14%; }

@media (max-width: 768px) {
  .cd-line-1, .cd-line-3, .cd-line-4 { width: 18%; }
  .cd-line-5, .cd-line-6, .cd-line-8 { width: 18%; }
  .cd-line-2 { display: none; }
  .cd-line-7 { display: none; }
}

@keyframes calc-dot-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(184, 149, 110, 0.7), 0 0 0 3px rgba(154, 123, 79, 0.12); }
  50%      { box-shadow: 0 0 14px rgba(184, 149, 110, 0.9), 0 0 0 5px rgba(154, 123, 79, 0.18); }
}

.cd-line::after {
  animation: calc-dot-pulse 3.5s ease-in-out infinite;
}

.cd-line-2::after { animation-delay: 0.5s; }
.cd-line-3::after { animation-delay: 1s; }
.cd-line-4::after { animation-delay: 1.5s; }
.cd-line-5::after { animation-delay: 0.7s; }
.cd-line-6::after { animation-delay: 1.2s; }
.cd-line-7::after { animation-delay: 1.8s; }
.cd-line-8::after { animation-delay: 2.2s; }

@media (prefers-reduced-motion: reduce) {
  .cd-line::after {
    animation: none;
  }
}

/* Sections that host .section-deco need a positioning context.
   NOTE: no `overflow: hidden` here — .section-deco itself is `inset: 0;
   overflow: hidden;` and clips the lines to the section. Adding overflow:hidden
   on the section breaks position:sticky descendants (e.g. founder photo). */
.roi-calculator,
.faq,
.about-cta,
.founder-story,
.booking,
.privacy-policy {
  position: relative;
}

.roi-calculator > .container,
.faq > .container,
.about-cta > .container,
.founder-story > .container,
.booking > .container,
.privacy-policy > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   Per-item corner deco lines (used inside .service-item)
   One short gold line + dot in each of the 4 corners
   ============================================ */

.item-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Top-left & bottom-left use default left-to-right gradient + right-side dot */
.cd-line-tl { top: 18px;    left: 0; width: 9%; }
.cd-line-bl { bottom: 18px; left: 0; width: 9%; }

/* Top-right & bottom-right mirror: right-to-left gradient + left-side dot */
.cd-line-tr,
.cd-line-br {
  background: linear-gradient(270deg, transparent 0%, rgba(154, 123, 79, 0.3) 30%, rgba(154, 123, 79, 0.55) 100%);
}

.cd-line-tr::after,
.cd-line-br::after {
  right: auto;
  left: -3px;
}

.cd-line-tr::before,
.cd-line-br::before {
  left: auto;
  right: 0;
  transform: translate(2px, -50%);
}

.cd-line-tr { top: 18px;    right: 0; width: 9%; }
.cd-line-br { bottom: 18px; right: 0; width: 9%; }

@media (max-width: 768px) {
  .cd-line-tl,
  .cd-line-tr,
  .cd-line-bl,
  .cd-line-br { width: 16%; }
}

.cd-line-tr::after { animation-delay: 0.4s; }
.cd-line-bl::after { animation-delay: 0.9s; }
.cd-line-br::after { animation-delay: 1.4s; }

/* ============================================
   Footer bottom — Privacy link
   ============================================ */
.footer-bottom a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* ============================================
   Privacy Policy page
   ============================================ */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(230, 230, 230, 0.88);
  line-height: 1.75;
}

.privacy-content .privacy-updated {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.privacy-content h2 {
  font-size: clamp(1.35rem, 1.4vw + 0.9rem, 1.65rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: #FFFFFF;
}

.privacy-content p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 var(--space-md);
}

.privacy-content ul li {
  margin-bottom: 0.4rem;
}

.privacy-content a {
  color: var(--color-gold-light, #D4B27A);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 178, 122, 0.4);
}

.privacy-content a:hover {
  text-decoration-color: rgba(212, 178, 122, 0.85);
  opacity: 1;
}

.privacy-content strong {
  color: #FFFFFF;
  font-weight: 600;
}
