/* Template 25 - Ceramic Studio / Handcrafted Artisan */
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --clay-light: #f4ebe3;
  --clay-medium: #e8dcd0;
  --clay-dark: #d4c4b0;
  --terracotta: #c67b5c;
  --rust: #a85a3c;
  --charcoal: #3d3d3d;
  --espresso: #2a2420;
  --white: #ffffff;
  --glaze-blue: #7b9ea8;
  --sage: #8fa387;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--clay-light);
  font-weight: 400;
}

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

/* Header - Gallery Style */
.site-header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(42, 36, 32, 0.06);
}

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

.site-logo a {
  font-family: 'Gilda Display', serif;
  font-size: 1.85rem;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  color: var(--terracotta);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover {
  color: var(--terracotta);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section - Workshop */
.section.head {
  padding: 6rem 0 5rem;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--clay-medium) 0%, var(--clay-dark) 100%);
  border-radius: 0 0 0 200px;
  z-index: -1;
}

.section.head h1 {
  font-family: 'Gilda Display', serif;
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  max-width: 700px;
}

.section.head p {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 550px;
  line-height: 1.9;
}

.section.head p::first-line {
  font-weight: 500;
}

/* Section Styling */
.section {
  padding: 5.5rem 0;
  position: relative;
}

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

.section header::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--glaze-blue));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section header h2 {
  font-family: 'Gilda Display', serif;
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.section header p {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 500px;
  margin: 0 auto;
}

/* Footer - Studio Info */
.footer {
  background: var(--espresso);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    var(--terracotta) 0%, 
    var(--glaze-blue) 33%, 
    var(--sage) 66%, 
    var(--rust) 100%
  );
}

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

.footer-about .site-logo a {
  color: var(--clay-light);
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--clay-dark);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-top: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.footer-links a {
  color: var(--clay-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 235, 227, 0.1);
}

.copyright, .copyright a {
  color: var(--clay-dark);
  font-size: 0.85rem;
}

/* Animations */
@keyframes gentleFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-in {
  opacity: 0;
  animation: gentleFade 0.75s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

