


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

:root {
  
  --primary-slate: #1e293b;
  --primary-charcoal: #0f172a;
  --accent-gold: #d97706;
  --accent-bronze: #c2410c;
  --light-cream: #f8fafc;
  --light-gray: #f1f5f9;
  --text-dark: #1e293b;
  --text-medium: #64748b;
  --text-light: #cbd5e1;
  --border-color: #e2e8f0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-heavy: rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-cream);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-charcoal);
}

h1 {
  font-size: clamp(2rem, 8vw, 4.5rem);
}

h2 {
  font-size: clamp(1.5rem, 6vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

strong, b {
  font-weight: 600;
  color: var(--primary-charcoal);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.stone-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stone-header.scrolled {
  background: var(--light-cream);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-symbol {
  font-size: 1.8rem;
  line-height: 1;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}


.granite-hero {
  min-height: auto;
  padding: 6rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-cream);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(217, 119, 6, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 8px var(--shadow-heavy);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px var(--shadow-medium);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.hero-cta:hover {
    background: var(--accent-bronze);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    margin: 0.5rem;
}

.hero-cta.secondary:hover {
    background: var(--accent-gold);
    color: white;
}

.granite-hero .hero-cta.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin: 0.5rem;
}

.granite-hero .hero-cta.secondary:hover {
    background: white;
    color: var(--primary-charcoal);
}


.stone-section {
  padding: 6rem 0;
  position: relative;
}

.stone-section:nth-child(even) {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}


.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-light);
}

.about-text {
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px var(--shadow-light);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-charcoal);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-medium);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-charcoal);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
}

.service-cta {
  display: inline-block;
  background: var(--primary-charcoal);
  color: var(--light-cream);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px var(--shadow-light);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}


.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--accent-gold);
}

.process-step {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: calc(50% - 4rem);
  padding: 0 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px var(--shadow-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

.step-description {
  color: var(--text-medium);
}


.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px var(--shadow-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  min-width: 2rem;
}

.contact-text {
  color: var(--text-medium);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px var(--shadow-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-cta {
  background: var(--accent-gold);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-cta:hover {
  background: var(--accent-bronze);
  transform: translateY(-2px);
}


.stone-footer {
  background: var(--primary-charcoal);
  color: var(--light-cream);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--light-cream);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--light-cream);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--light-cream);
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 4rem 2rem;
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--accent-gold);
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  color: var(--light-cream);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1002;
  backdrop-filter: blur(10px);
}

.cookie-content {
  flex: 1;
  margin-right: 2rem;
}

.cookie-text {
  margin-bottom: 0.5rem;
}

.cookie-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cookie-links a {
  color: var(--accent-gold);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.cookie-btn.decline {
  background: transparent;
  color: var(--light-cream);
  border: 1px solid var(--light-cream);
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .about-content,
  .contact-container,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    flex-direction: row;
  }
  
  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    width: calc(100% - 6rem);
  }
  
  .step-number {
    left: 20px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cookie-content {
    margin-right: 0;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}


.text-primary {
   color: var(--primary-charcoal);
}

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

.text-medium {
   color: var(--text-medium);
}

.bg-primary {
   background: var(--primary-charcoal);
}

.bg-accent {
   background: var(--accent-gold);
}

.text-light {
   color: var(--light-cream);
}

.text-dark {
   color: var(--text-dark);
}

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

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 2rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 2rem;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(217, 119, 6, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.text-white {
  color: white;
}

.text-white strong, .text-white b {
  color: inherit;
}

.text-accent strong, .text-accent b {
  color: inherit;
}

.text-medium strong, .text-medium b {
  color: inherit;
}

.map-container {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-light);
}

.contact-form[action*="thank-you.html"] {
}

.footer-links li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.cookie-btn:hover {
  background: var(--accent-bronze);
  transform: translateY(-2px);
}

.mobile-menu.active {
  left: 0;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon.text-accent {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.text-primary strong, .text-primary b {
  color: inherit;
}

.text-light strong, .text-light b {
  color: inherit;
}

.bg-primary {
  background: var(--primary-charcoal);
}

.bg-accent {
  background: var(--accent-gold);
}

button, .button, input, textarea {
  font-family: inherit;
}


*:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*:focus-visible {
  outline: 2px solid var(--accent-gold);
}