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

:root {
  --bg-cream: #F5F0E8;
  --bg-cream-alt: #EBE5DB;
  --text-charcoal: #2C2825;
  --text-muted: #5C5753;
  --accent-terracotta: #C4694A;
  --accent-terracotta-hover: #A7553A;
  --accent-sage: #7A8C6E;
  --accent-gold: #C2A572;
  --border-color: #D6CFC4;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --spacing-section: 6rem;
  --spacing-element: 2rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-charcoal);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--spacing-element);
}

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

section {
  padding: var(--spacing-section) 0;
}

.btn {
  display: inline-block;
  background-color: var(--accent-terracotta);
  color: var(--text-charcoal);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}
.btn:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.92) 0%, rgba(245, 240, 232, 0.6) 70%, transparent 100%);
  padding-bottom: 2.5rem;
}
.site-nav.is-scrolled {
  background-color: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(44, 40, 37, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--accent-terracotta);
}
.nav-cta {
  background-color: transparent;
  border: 1px solid var(--text-charcoal);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
}
.nav-cta:hover {
  background-color: var(--text-charcoal);
  color: var(--bg-cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem; 
  background-image: url('../images/hero-workshop.jpg');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(44, 40, 37, 0.7) 0%, rgba(44, 40, 37, 0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.feature-card {
  text-align: center;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-sage);
}

.content-section {
  background-color: var(--bg-cream-alt);
}
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text h2 {
  margin-bottom: 1.5rem;
}
.split-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.split-image img {
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.process-step {
  position: relative;
  padding-top: 3rem;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  position: absolute;
  top: -1rem;
  left: 0;
  opacity: 0.4;
  line-height: 1;
}
.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 300px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.item-1 { grid-column: 1 / 8; }
.item-2 { grid-column: 8 / -1; }
.item-3 { grid-column: 1 / 6; }
.item-4 { grid-column: 6 / -1; }

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--accent-sage);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.form-section {
  background-color: var(--bg-cream-alt);
  text-align: center;
}
.lead-form {
  max-width: 500px;
  margin: 3rem auto 0;
  background: var(--bg-cream);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(44,40,37,0.05);
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px rgba(196, 105, 74, 0.1);
}
.lead-form .btn {
  width: 100%;
  margin-top: 1rem;
}
.form-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.form-note a {
  text-decoration: underline;
}

.site-footer {
  background-color: var(--text-charcoal);
  color: var(--bg-cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links h5 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: var(--bg-cream);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-charcoal);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
}
.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}
.cookie-btn {
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1rem;
}

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

.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background-color: var(--bg-cream-alt);
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.page-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.75rem;
}
.page-content p {
  margin-bottom: 1rem;
}
.page-content ul {
  margin-bottom: 1.5rem;
  list-style: disc;
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.75rem; }
  .split-content { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-auto-rows: 200px; }
  .item-1, .item-2, .item-3, .item-4 { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; } 
  .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; }
  .cookie-btn { margin-left: 0; width: 100%; }
}
