:root {
  /* Backgrounds */
  --color-ivory:       #F9F5F0;   /* Main page background — warm ivory */
  --color-petal:       #FDF0E8;   /* Alternate sections, cards — warm blush */
  --color-white:       #FFFFFF;   /* Cards, trust bar */
  
  /* Brand Colors — Dark Copper Palette */
  --color-forest:      #7C3D1E;   /* Primary brand — Dark Copper */
  --color-dark-forest: #4A2210;   /* Deep Copper — hero sections, footer */
  --color-copper:      #7C3D1E;   /* Alias — Dark Copper */
  --color-copper-dark: #4A2210;   /* Alias — Deep Copper */
  --color-copper-light:#C4723A;   /* Light Copper — hover states */
  --color-gold:        #C5A059;   /* Gold accents — unchanged */
  --color-gold-light:  #E8D5A3;   /* Hover states, badges */
  
  /* Typography */
  --color-ink:         #2C2C2C;   /* Body text */
  --color-muted:       #7A7A7A;   /* Captions, secondary text */
  
  /* Functional */
  --color-border:      rgba(197, 160, 89, 0.25);
  --color-shadow:      rgba(124, 61, 30, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-ink);
  background-color: var(--color-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-copper);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

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

/* Typography Classes */
.italic-accent {
  font-style: italic;
  color: var(--color-gold);
  font-family: 'Cormorant Garamond', serif;
}

.micro-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-gold);
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

section {
  padding: 7rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
}

.btn-primary {
  background-color: var(--color-copper);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-copper-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(124, 61, 30, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-copper);
  transform: translateY(-3px);
  border-color: var(--color-white);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-gold:hover {
  background-color: var(--color-copper-dark);
  transform: translateY(-3px);
}

/* Animations */
/* FIX: CSS @keyframes animation removed — JS IntersectionObserver owns all reveal animations.
   This prevents the double-fire flash where CSS animates THEN JS resets and re-animates.
   Initial state (opacity:0, translateY) is set by JS on DOMContentLoaded before paint. */
.fade-up {
  /* Initial invisible state — JS sets this immediately before first paint */
  /* opacity and transform intentionally NOT set here to prevent FOUC */
}

/* Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(249, 247, 242, 0);
  transition: all 0.5s ease;
}

.site-header.scrolled {
  background: rgba(249, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 30px rgba(27, 48, 34, 0.03);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-copper);
  font-weight: 500;
}

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

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--color-copper);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text img {
  height: 28px;
}

.logo-tagline {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.3em;
}

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

.phone-btn {
  background: var(--color-gold);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.phone-btn:hover {
  background: var(--color-copper-dark);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-copper);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-petal) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for fixed header */
}

.hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 2rem;
}

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

.hero-content .micro-label {
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust span::before {
  content: "✓";
  color: var(--color-gold);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.oval-mask {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
  max-width: 500px;   /* SLIGHTLY LARGER than 450px */
  background: linear-gradient(135deg, #E8D5A3, #C5A059);
  box-shadow: 0 30px 80px rgba(124, 61, 30, 0.15);
  overflow: hidden;
  position: relative;
  animation: heroImage 0.8s ease-out forwards;
  opacity: 0;
  transform: scale(0.95);
}

@keyframes heroImage {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.oval-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.oval-mask:hover img {
  transform: scale(1.08);
}

/* Trust Bar */
.trust-bar {
  background: var(--color-white);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  font-size: 32px;
}

.trust-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-copper);
  letter-spacing: 0.2em;
  font-weight: 600;
}

.trust-desc {
  font-size: 13px;
  color: var(--color-muted);
}

/* Services Section */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3rem;
  margin: 1rem 0;
}

.section-desc {
  color: var(--color-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-petal);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 2.5rem;
  transition: border-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  will-change: transform; /* GPU pre-allocation for hover animation */
}

.service-card:hover {
  border-color: var(--color-copper-light);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(124, 61, 30, 0.10);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-list {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-copper);
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--color-copper-dark);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 34, 16, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.portfolio-client {
  color: var(--color-gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Stats Section */
.stats-section {
  background: var(--color-petal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-copper);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, var(--color-petal), var(--color-ivory));
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(27, 48, 34, 0.03);
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-copper);
  margin-bottom: 1.5rem;
}

.testi-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.testi-role {
  font-size: 12px;
  color: var(--color-muted);
}

/* CTA Section */
.cta-section {
  background: var(--color-copper-dark);
  color: var(--color-white);
  text-align: center;
}

.cta-section .section-title {
  color: var(--color-white);
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--color-copper);
  color: var(--color-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 5px;
  display: block;
}

.footer-tagline {
  font-size: 10px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.footer-contact strong {
  color: var(--color-white);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    justify-content: center;
    order: -1;
  }
  
  .oval-mask {
    max-width: 90vw;   /* LARGER on tablet */
  }
  
  .services-grid,
  .portfolio-grid,
  .stats-grid,
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-grid,
  .portfolio-grid,
  .stats-grid,
  .testi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* FIX: Ensure contact form submit button is not hidden behind sticky CTA bar */
  .contact-section,
  section:has(#enquiry-form) {
    padding-bottom: 5rem;
  }
}

/* ── Accessibility: Respect prefers-reduced-motion ───────────
   Luxury brand standard: Apple, Hermes, Cartier all implement this.
   Users with vestibular disorders rely on this OS-level setting. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:      0.01ms !important;
    animation-iteration-count: 1   !important;
    transition-duration:     0.01ms !important;
    scroll-behavior:         auto  !important;
  }

  /* Prevent hero image from being hidden for reduced-motion users */
  .oval-mask,
  .fade-up {
    opacity:   1 !important;
    transform: none !important;
    animation: none !important;
  }
}
