@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --black: #000000;
  --rich-gold: #C9A44F;
  --gold-bright: #D9B45F;
  --gold-dark: #B9943F;
  --off-white: #F8F8F8;
  --dark-grey: #8B8B8B;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --header-height: 70px;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Custom Cursor */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--rich-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cursor-dot.hovering {
  transform: scale(2.5);
}

/* Golden Thread Scroll Indicator */
.scroll-indicator {
  position: fixed;
  left: 0;
  top: 0;
  width: 2px;
  height: 100vh;
  background: rgba(201, 164, 79, 0.1);
  z-index: 999;
}

.scroll-indicator-fill {
  width: 100%;
  height: 0%;
  background: var(--rich-gold);
  transition: height 0.1s linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--black);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.site-header.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.site-header.scrolled .header-logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  color: var(--dark-grey);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rich-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-grey);
  font-size: 14px;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--rich-gold);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: right 0.4s ease;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--rich-gold);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--rich-gold);
  cursor: pointer;
}

/* Primary CTA Button */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--rich-gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 10px 30px rgba(201, 164, 79, 0.3);
}

.btn-primary:active {
  background: var(--gold-dark);
}

.btn-primary:focus {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* Secondary CTA Button */
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: transparent;
  color: var(--rich-gold);
  font-family: var(--font-body);
  font-size: 14px;
  border: 2px solid var(--rich-gold);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--rich-gold);
  color: var(--black);
}

.btn-secondary:focus {
  outline: 2px solid var(--rich-gold);
  outline-offset: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url('../images/pattern-ornate-gold.png');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--off-white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards 0.3s;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(248, 248, 248, 0.8);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards 0.5s;
}

.hero .btn-primary {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards 0.7s;
}

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

/* Content Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
}

.section-light {
  background: var(--off-white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

.section-title-gold {
  color: var(--rich-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-grey);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Value Proposition Section */
.intro-value {
  text-align: center;
}

.intro-value h2 {
  margin-bottom: 30px;
}

.intro-value p {
  font-size: 1.1rem;
  color: var(--dark-grey);
  max-width: 800px;
  margin: 0 auto;
}

/* Signature Craft Section */
.signature-craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.signature-craft-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.signature-craft-content h3 {
  color: var(--rich-gold);
  margin-bottom: 20px;
}

.signature-craft-content p {
  color: var(--off-white);
  margin-bottom: 30px;
}

/* Featured Projects */
.featured-projects {
  overflow: hidden;
}

.projects-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.projects-scroll::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 350px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.project-overlay h4 {
  color: var(--off-white);
  margin-bottom: 10px;
}

.project-overlay a {
  color: var(--rich-gold);
  font-size: 14px;
}

/* Bespoke Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--rich-gold);
  fill: none;
  stroke-width: 1.5;
}

.process-step h4 {
  margin-bottom: 15px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--dark-grey);
}

/* Why Choose Us */
.why-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-choose h2 {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--rich-gold);
  fill: none;
  stroke-width: 1.5;
}

.benefit-content h4 {
  margin-bottom: 10px;
  color: var(--rich-gold);
}

.benefit-content p {
  color: var(--off-white);
}

/* Testimonials Carousel */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  flex: 0 0 100%;
  padding: 0 10%;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--rich-gold);
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--rich-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-btn:hover {
  background: var(--rich-gold);
}

.testimonial-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--rich-gold);
  fill: none;
}

.testimonial-btn:hover svg {
  stroke: var(--black);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-grey);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--rich-gold);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background: var(--black);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern-ornate-gold.png');
  opacity: 0.05;
  background-size: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 3rem;
  color: var(--rich-gold);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 40px;
}

.cta-section .btn-primary {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 164, 79, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(201, 164, 79, 0); }
}

/* Footer */
.site-footer {
  background: var(--black);
  padding: 80px 0 30px;
  color: var(--off-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--dark-grey);
  font-size: 0.95rem;
  margin-top: 20px;
}

.footer-title {
  font-size: 1rem;
  color: var(--rich-gold);
  margin-bottom: 25px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: var(--off-white);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.footer-contact p {
  color: var(--dark-grey);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--off-white);
}

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

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rich-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: var(--rich-gold);
}

.social-icons a:hover svg {
  stroke: var(--black);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  stroke: var(--rich-gold);
  fill: none;
}

.trust-badge img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 79, 0.2);
  padding-top: 30px;
  text-align: center;
  color: var(--dark-grey);
  font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--off-white);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(248, 248, 248, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* About Page Sections */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.about-story-content h2 {
  margin-bottom: 30px;
}

.about-story-content p {
  color: var(--dark-grey);
  margin-bottom: 20px;
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.philosophy-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--black);
  border-radius: 8px;
}

.philosophy-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 25px;
}

.philosophy-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--rich-gold);
  fill: none;
  stroke-width: 1.5;
}

.philosophy-card h4 {
  color: var(--rich-gold);
  margin-bottom: 15px;
}

.philosophy-card p {
  color: var(--off-white);
  font-size: 0.95rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h4 {
  color: var(--rich-gold);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--dark-grey);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.team-info .bio {
  font-size: 0.85rem;
  color: var(--dark-grey);
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.award-item {
  padding: 30px;
  background: var(--black);
  border-radius: 8px;
}

.award-item h4 {
  color: var(--off-white);
  font-size: 1rem;
}

.award-item p {
  color: var(--rich-gold);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--rich-gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h4 {
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--dark-grey);
}

/* Detailed Services */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.service-detail-content h3 {
  color: var(--rich-gold);
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.service-detail-content ul {
  margin-top: 20px;
}

.service-detail-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--dark-grey);
}

.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--rich-gold);
  border-radius: 50%;
}

/* FAQ Accordion */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(139, 139, 139, 0.2);
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark-grey);
  transition: var(--transition-smooth);
}

.faq-question:hover h4 {
  color: var(--rich-gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--rich-gold);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: var(--dark-grey);
}

/* Our Work Gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-grey);
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--rich-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--rich-gold);
}

.filter-btn.active::after {
  width: 100%;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item-overlay h4 {
  color: var(--off-white);
  margin-bottom: 10px;
}

.gallery-item-overlay p {
  color: var(--rich-gold);
  font-size: 0.9rem;
}

/* Case Study */
.case-study {
  padding: 80px 0;
}

.case-study-hero img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.case-study-content {
  max-width: 900px;
  margin: 60px auto 0;
}

.case-study h3 {
  color: var(--rich-gold);
  margin-bottom: 20px;
}

.case-study p {
  color: var(--dark-grey);
  margin-bottom: 30px;
}

.case-study ul {
  margin-bottom: 40px;
}

.case-study li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--dark-grey);
}

.case-study li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--rich-gold);
  font-size: 1.5rem;
  line-height: 1;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rich-gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 79, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 40px 0;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--rich-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-item h4 {
  color: var(--rich-gold);
  margin-bottom: 10px;
}

.contact-info-item p {
  color: var(--off-white);
}

/* Map Section */
.map-section {
  height: 400px;
  background: var(--black);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Connect */
.social-connect {
  text-align: center;
  padding: 80px 0;
}

.social-connect h3 {
  margin-bottom: 40px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-indicator-fill {
    transition: none;
  }
  
  .cursor-dot {
    display: none;
  }
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .site-header {
    padding: 0 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .signature-craft,
  .about-story,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .process-grid,
  .philosophy-grid,
  .team-grid,
  .awards-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 12px;
  }
  
  .process-grid,
  .philosophy-grid,
  .team-grid,
  .services-grid,
  .awards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .gallery-filters {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .projects-scroll {
    flex-direction: column;
  }
  
  .project-card {
    flex: 0 0 auto;
  }
}