/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Earthy & Natural */
  --primary-color: #8B6F47;        /* Warm brown */
  --secondary-color: #D4A574;      /* Light terracotta */
  --accent-color: #5A7C6A;         /* Sage green */
  --coastal-blue: #5D7B9D;         /* Coastal blue */
  --text-dark: #2C2C2C;
  --text-light: #666;
  --bg-light: #FAF8F5;             /* Warm off-white */
  --bg-alt: #F5F1EB;               /* Light beige */
  --white: #FFFFFF;
  --border-color: #E5DED3;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: var(--font-weight-normal);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-nav:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.section-alt {
  background-color: var(--bg-alt);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
  margin: 0 auto;
  color: var(--border-color);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.section-divider span {
  display: block;
  width: 140px;
  height: 24px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M2 12c12-8 22-8 34 0s22 8 34 0 22-8 34 0 22 8 34 0'/%3E%3C/svg%3E");
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  text-align: center;
  color: var(--text-dark);
}

.section-title {
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: var(--spacing-xs) auto 0;
  background-color: var(--accent-color);
  border-radius: 999px;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: var(--spacing-md);
}

.main-nav a {
  font-weight: var(--font-weight-normal);
  color: var(--text-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
  background-color: var(--bg-alt);
}

.main-nav a.active {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
  padding: var(--spacing-xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

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

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coastal-blue);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  width: 100%;
  max-height: 500px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn.primary:hover {
  background-color: #6F5739;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.btn.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
  background-color: var(--coastal-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.two-col {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.about-text {
  width: 100%;
}

.two-col h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

.two-col .section-title::after {
  margin-left: 0;
  margin-right: auto;
}

.two-col h3 {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: var(--spacing-md);
}

.two-col p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

/* ============================================
   SERVICES / CARDS
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: var(--spacing-md);
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.price-note {
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: var(--font-weight-semibold);
  margin-top: var(--spacing-sm);
}

.card-btn {
  display: inline-block;
  margin-top: var(--spacing-sm);
  padding: 10px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.card-btn:hover {
  background-color: #6F5739;
  transform: translateX(4px);
}

/* Detailed card for workshop info */
.card-detailed {
  grid-column: span 1;
}

.card-detailed .card-content {
  padding: var(--spacing-md);
}

.card-details {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.card-section-title {
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.card-section-title:first-child {
  margin-top: 0;
}

.card-detail-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
  line-height: 1.5;
}

.card-list {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  line-height: 1.6;
}

.card-list li {
  margin-bottom: var(--spacing-xs);
}

.card-list li:last-child {
  margin-bottom: 0;
}

.card-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--accent-color);
  margin-top: var(--spacing-sm);
  text-align: center;
}

/* ============================================
   GALLERY / PORTFOLIO
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover {
  transform: scale(1.03);
}

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

.gallery-grid figure:hover img {
  transform: scale(1.1);
}

.instagram-link {
  text-align: center;
  margin-top: var(--spacing-lg);
}

/* ============================================
   INSTAGRAM ICONS
   ============================================ */
.instagram-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

/* Instagram icon in primary button */
.btn.primary .instagram-icon {
  color: var(--white);
}

/* Instagram icon in text link */
.instagram-handle a .instagram-icon {
  color: var(--primary-color);
}

/* Hover effect for icons */
.btn:hover .instagram-icon,
.instagram-handle a:hover .instagram-icon {
  transform: scale3d(1.1, 1.1, 1);
}

/* ============================================
   LOCATIONS / FIND OUR WORK
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.location-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location-logo {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  padding: var(--spacing-md);
}

.location-logo img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.location-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.location-info {
  padding: var(--spacing-md);
  text-align: center;
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.4rem;
}

.location-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.location-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.location-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 2px;
}

.location-address {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.contact-info a {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-info {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.social-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.social-info p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.instagram-handle {
  font-size: 1.3rem;
  margin-top: var(--spacing-md);
}

.instagram-handle a {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-handle a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.newsletter-info p {
  color: var(--text-light);
}

.newsletter-info #mc_embed_shell {
  margin-top: var(--spacing-md);
}

.newsletter-info #mc_embed_signup {
  background: transparent;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-family-body);
  color: var(--text-dark);
}

.newsletter-info #mc_embed_signup h2 {
  font-family: var(--font-family-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.newsletter-info #mc_embed_signup .indicates-required {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.newsletter-info #mc_embed_signup .mc-field-group {
  margin-top: var(--spacing-sm);
}

.newsletter-info #mc_embed_signup label {
  color: var(--text-light);
  font-weight: var(--font-weight-semibold);
}

.newsletter-info #mc_embed_signup input[type="email"] {
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.newsletter-info #mc_embed_signup input[type="email"]:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.newsletter-info #mc_embed_signup .clear.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.newsletter-info #mc_embed_signup .button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-info #mc_embed_signup .button:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.newsletter-info #mc_embed_signup .response {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #6F5739;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.site-footer p {
  color: var(--bg-light);
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
    order: 2;
  }
  
  .logo {
    order: 1;
    flex: 1;
  }
  
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    padding: var(--spacing-sm) 0;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a {
    padding: var(--spacing-sm);
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .main-nav a:last-child {
    border-bottom: none;
  }
  
  .main-nav a.active::after {
    display: none;
  }
  
  .hero {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  /* About section responsive */
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .about-image {
    order: -1;
  }
  
  .about-image img {
    max-width: 100%;
  }
  
  .two-col h2 {
    text-align: center;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    gap: var(--spacing-md);
  }
  
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  .logo span {
    font-size: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .scroll-top {
    width: 40px;
    height: 40px;
  }
  
  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}
