/* ========================================
   Ghouls and Grinds — Custom Styles
   Charcoal + Coral | Pastel + Airy
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --charcoal-muted: #6B6B6B;
  --coral: #E8735A;
  --coral-light: #F49782;
  --coral-pale: #FDE8E3;
  --coral-ghost: #FFF5F2;
  --cream: #FDF8F5;
  --cream-dark: #F5EDE8;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal-muted);
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 115, 90, 0.3);
}

.btn-coral:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 115, 90, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(45, 45, 45, 0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--charcoal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--coral) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 8px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}

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

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral-ghost) 50%, var(--cream-dark) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232, 115, 90, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(232, 115, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal-muted);
  margin-bottom: 24px;
}

.hero-eyebrow .eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--coral);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

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

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

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number, .stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--charcoal-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(45, 45, 45, 0.15);
}

/* Hero image stack */
.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45, 45, 45, 0.15);
}

.hero-img-primary {
  width: 340px;
  height: 440px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-secondary {
  width: 240px;
  height: 240px;
  bottom: 40px;
  left: 0;
  z-index: 3;
  border-radius: 16px;
  border: 4px solid var(--cream);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.hero-img-tag {
  position: absolute;
  bottom: 280px;
  right: -10px;
  z-index: 4;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: 0 8px 30px rgba(45, 45, 45, 0.1);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-muted);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
  height: 680px;
}

.about-img-main {
  width: 75%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(45, 45, 45, 0.12);
}

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

.about-img-accent {
  position: absolute;
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 50px rgba(45, 45, 45, 0.15);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-decoration {
  position: absolute;
  top: -20px;
  right: 30%;
  z-index: -1;
  opacity: 0.6;
}

.about-content {
  max-width: 520px;
}

.about-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal-muted);
  margin-bottom: 20px;
}

.about-body em {
  color: var(--charcoal);
  font-style: italic;
  font-family: var(--font-display);
}

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

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
}

.value-text span {
  font-size: 0.9rem;
  color: var(--charcoal-muted);
  line-height: 1.6;
}

/* --- Menu --- */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.menu-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 45, 45, 0.06);
  transition: all 0.4s var(--ease-out);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 45, 45, 0.12);
}

.menu-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.menu-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--coral);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-card-content {
  padding: 24px;
}

.menu-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.menu-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal-muted);
}

.menu-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--charcoal-muted);
}

.menu-footer a {
  color: var(--coral);
  border-bottom: 1px solid rgba(232, 115, 90, 0.3);
  transition: border-color 0.3s;
}

.menu-footer a:hover {
  border-color: var(--coral);
}

/* --- Craft --- */
.craft {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}

.craft-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.craft-header .section-eyebrow {
  color: rgba(255,255,255,0.5);
}

.craft-header .section-title {
  color: var(--white);
}

.craft-process {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.craft-step {
  display: flex;
  gap: 24px;
}

.craft-step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.craft-step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.craft-step-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* --- Testimonial --- */
.testimonial {
  padding: 100px 0;
  background: var(--coral-ghost);
}

.testimonial-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.testimonial-decoration {
  margin-bottom: 24px;
}

.testimonial blockquote {
  margin-bottom: 28px;
}

.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 400;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.attr-name {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.attr-location {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
}

/* --- Visit --- */
.visit {
  padding: 120px 0;
  background: var(--white);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info {
  max-width: 500px;
}

.visit-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal-muted);
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.visit-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.visit-detail span {
  font-size: 0.9rem;
  color: var(--charcoal-muted);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--coral);
  border-bottom: 1px solid rgba(232, 115, 90, 0.3);
  transition: border-color 0.3s;
}

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

.visit-map {
  position: relative;
}

.map-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 45, 45, 0.12);
  aspect-ratio: 6/5;
}

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

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,45,45,0.2) 0%, transparent 40%);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.map-directions-btn:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

/* --- CTA --- */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.cta-decoration-left {
  position: absolute;
  top: 0;
  left: -40px;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-decoration-right {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  height: 480px;
}

.cta-decoration-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-col span {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* --- Reveal animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero {
    text-align: center;
    padding-top: 140px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 480px;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 100%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-map {
    max-width: 600px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-decoration-right {
    display: none;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about {
    padding: 80px 0;
  }

  .about-images {
    height: 380px;
  }

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

  .about-img-accent {
    width: 55%;
    height: 200px;
  }

  .menu {
    padding: 80px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .craft {
    padding: 80px 0;
  }

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

  .testimonial {
    padding: 80px 0;
  }

  .visit {
    padding: 80px 0;
  }

  .cta {
    padding: 80px 0;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    padding: 100px 16px 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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