:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A34D2C;
  --terracotta-light: #D4846A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --sand-lighter: #FBF7F3;
  --sand-dark: #C4A882;
  --cream: #FDF8F3;
  --text-dark: #2C1810;
  --text-body: #4A3228;
  --text-muted: #7A6055;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--sand-lighter);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 96, 58, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav a {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.nav a:hover {
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.07);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(253, 248, 243, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.mobile-menu a:hover {
  background: rgba(192, 96, 58, 0.07);
  color: var(--terracotta);
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ─── HERO ─── */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  background: var(--sand-lighter);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 96, 58, 0.1);
  color: var(--terracotta);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
  opacity: 0.4;
}

/* Hero images */
.hero-image {
  position: relative;
  height: 680px;
}

.hero-img-main {
  width: 100%;
  height: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-bread {
  bottom: 60px;
  left: -40px;
  width: 280px;
  height: 200px;
}

.hero-img-pastry {
  top: 40px;
  right: -30px;
  width: 260px;
  height: 180px;
}

.hero-accent-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 96, 58, 0.08) 0%, transparent 70%);
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-wave {
  margin-top: -1px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--sand-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--sand-light);
}

.about-img-secondary img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--terracotta);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-experience-badge .badge-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ─── OFFERINGS ─── */
.offerings {
  padding: 100px 0;
  background: var(--sand-lighter);
}

.section-header {
  margin-bottom: 60px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.offering-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.offering-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.offering-card:hover .offering-img-overlay {
  opacity: 1;
}

.offering-body {
  padding: 28px;
}

.offering-body h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.offering-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ─── CRAFT ─── */
.craft {
  padding: 100px 0;
  background: var(--sand-light);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.craft-content {
  padding: 20px 0;
}

.craft-text {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

.craft-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.craft-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}

.step-content h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.craft-images {
  position: relative;
  height: 620px;
}

.craft-img-main {
  width: 100%;
  height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.craft-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-img-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--sand-light);
}

.craft-img-accent img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ─── VISIT ─── */
.visit {
  padding: 100px 0;
  background: var(--sand-lighter);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
}

.visit-text {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  flex: 1;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.visit-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--terracotta);
}

.visit-map {
  position: relative;
  min-height: 520px;
}

.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-desc {
  margin-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer-contact-mini a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}

.footer-contact-mini a:hover {
  color: var(--sand);
}

.footer-nav h4,
.footer-hours h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--sand);
}

.footer-hours p {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.footer-address {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: var(--sand);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .craft-grid {
    gap: 48px;
  }

  .hero-image {
    height: 520px;
  }

  .hero-img-bread {
    left: -20px;
    width: 220px;
  }

  .hero-img-pastry {
    right: -16px;
    width: 200px;
  }

  .visit-content {
    padding: 48px 40px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .craft-grid,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-image {
    order: -1;
    height: 420px;
  }

  .hero-img-float {
    display: none;
  }

  .hero-accent-circle {
    display: none;
  }

  .about-img-secondary {
    right: 0;
    bottom: -30px;
    width: 200px;
  }

  .about-experience-badge {
    width: 80px;
    height: 80px;
    top: -12px;
    left: -12px;
  }

  .about-experience-badge svg {
    width: 18px;
    height: 18px;
  }

  .craft-img-accent {
    display: none;
  }

  .craft-images {
    height: 400px;
  }

  .craft-img-main {
    height: 400px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-grid {
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .about,
  .offerings,
  .craft,
  .visit {
    padding: 64px 0;
  }

  .visit-content {
    padding: 36px 24px;
  }

  .visit-map {
    min-height: 300px;
    max-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-img-main {
    height: 320px;
  }

  .about-img-main img {
    height: 340px;
  }

  .craft-img-main {
    height: 320px;
  }
}
