:root{
  --green:#70866C;
  --bg1:#fff8f1;
  --bg2:#fafcff;
  --ink:#0b1220;
  --muted:#667085;
  --line:#e7edf5;
  --pottery:#e58a72;
  --shadow:0 12px 36px rgba(16,24,40,.08);
  --radius:18px;
}

html{scroll-behavior:smooth}

body{
  font-family: Manrope, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, #f3f6ff 0%, #fff0 60%),
    radial-gradient(900px 500px at 110% 10%, #eef4ee 0%, #fff0 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}

/* ===== Floating / sticky nav ===== */
.site-nav{
  position:sticky; top:0; z-index:1030;
  background:rgba(255,255,255,.82);
  backdrop-filter:saturate(130%) blur(10px);
  border-bottom:1px solid var(--line);
}

.navbar {
  min-height: 30px;
}

@media (min-width: 992px) {
  .navbar {
    min-height: 84px;
  }
}

.navbar-brand{
  font-weight:800; letter-spacing:.2px;
  display:flex; align-items:center; gap:.65rem;
}

.brandclean{
  display:flex; align-items:center; gap:.6rem;
  text-decoration:none;
}
.brandclean .logo{
  width:26px; height:26px;
  color:var(--pottery);
  stroke-width:1.6;
  flex:0 0 26px;
}
.brandclean .brand{
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:800; letter-spacing:.1px; color:var(--ink);
  font-size:1rem; line-height:1;
  position: relative;
}
.brandclean .brand-light{
  font-weight:700;
}
.brand-studio-line {
  display: flex;
  align-items: center;
  gap: 0.25ch;
}
.brand-act {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pottery);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: -5px;
}

.brandclean .brand::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  width: 56%;
  /* Moving gradient that blends both brand colors */
  background: linear-gradient(90deg, 
    rgba(112,134,108,0) 0%, 
    rgba(112,134,108,.6) 30%, 
    rgba(229,138,114,.5) 70%, 
    rgba(229,138,114,0) 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}




.nav-link{ font-weight:600 }

/* Mobile Navigation */

/* Enhanced mobile navigation with cooler animations */

.navbar-collapse {
  margin-top: 1rem;
}

/* Hamburger menu transformation */

.navbar-toggler {
  border: 1px solid rgba(112, 134, 108, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(112, 134, 108, 0.25);
  border-color: var(--green);
}

.navbar-toggler[aria-expanded="false"] {
  transform: rotate(0deg) !important;
}

.navbar-toggler[aria-expanded="true"] {
  transform: rotate(90deg) !important;
  border-color: var(--pottery);
  background: rgba(229, 138, 114, 0.1);
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

/* Enhanced mobile menu animation */
@media (max-width: 991.98px) {
  .navbar-collapse {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    transform-origin: top center;
  }
  
  .navbar-collapse.show {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  
  .navbar-collapse.collapsing {
    height: auto !important;
    transform: translateY(-10px) scale(0.98);
    opacity: 0.7;
  }
  
  .navbar-nav {
    gap: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Staggered animation for nav items */
  .nav-item {
    border-bottom: 1px solid rgba(231, 237, 245, 0.5);
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.2s ease;
  }
  
  .navbar-collapse.show .nav-item {
    transform: translateX(0);
    opacity: 1;
  }
  
  .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.05s; }
  .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.1s; }
  .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.15s; }
  .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.2s; }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    border-radius: 0;
    position: relative;
    transition: color 0.2s ease;
  }
  
  /* Cool hover effect for nav links */
  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--pottery);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }
  
  .nav-link:hover::before {
    width: 20px;
  }
  
  .nav-link:hover {
    color: var(--pottery);
    background-color: rgba(229, 138, 114, 0.05);
    padding-left: 30px;
    transition: all 0.3s ease;
  }
  
  .nav-item:has(.btn-green) {
    display: none;
  }
  
  /* Enhanced menu background with subtle animation */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: 
      linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 234, 223, 0.95) 100%);
    margin: 1rem -1rem -1rem -1rem;
    padding: 1rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.08),
      0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--line);
    border-top: none;
    position: relative;
  }
  
  /* Subtle gradient overlay animation */
  .navbar-collapse.show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pottery), var(--green), var(--pottery));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .brandclean .logo {
    width: 24px;
    height: 24px;
  }
}

/* Gradient animation for the top border */
@keyframes gradientSlide {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

/* Buttons */
.btn-pill{
  --bs-btn-padding-y:.62rem; --bs-btn-padding-x:1.05rem; --bs-btn-font-weight:800;
  border-radius:999px; letter-spacing:.3px;
}

.btn-green{
  background:linear-gradient(135deg, #7c9277, var(--green), #6a7c65);
  color:#fff !important; 
  border:0; 
  box-shadow: 0 10px 22px rgba(112,134,108,.22);
  font-weight: 700; 
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}

.btn-green:hover{ 
  filter:brightness(1.05); 
  color:#fff !important; 
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(112,134,108,.3);
  text-decoration: none;
}

.btn-green:focus { 
  color:#fff !important; 
  text-decoration: none;
  outline: 2px solid rgba(112, 134, 108, 0.4);
  outline-offset: 2px;
}

.btn-green:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(112,134,108,.25);
}

.btn-green svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green:hover svg {
  transform: translateX(3px);
}

/* ===== Hero ===== */
.hero{
  padding: clamp(2rem, 6vw, 4.5rem) 0;
  background: linear-gradient(0deg, #F9EFDF 0%, #ffffff 100%);
}

.trust {
  color: var(--muted); 
  font-weight: 700; 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.trust .stars { 
  color: #f59e0b; 
  letter-spacing: 0.1ch;
  font-size: 0.9rem;
}

.trust strong {
  color: var(--pottery);
  font-weight: 800;
}

.display{
  font-family: "Baloo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:700;
  line-height:1.05;
  font-size: clamp(2rem, 5.2vw + .4rem, 3.6rem);
  letter-spacing:.2px;
  margin:.25rem 0 1.1rem;
}
.display .pot{ color:var(--pottery) }

.lede{ color:var(--muted); font-size:1.08rem; max-width:58ch }
.cta-row{ display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.25rem }

.studio{
  background:#fff; border:1px solid var(--line);
  border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
}
.studio img{
  width:100%; height:auto; display:block;
  aspect-ratio: 16/11; object-fit: cover;
}

/* Hero Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .trust {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero .display {
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero .lede {
  animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero .cta-row {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero .studio {
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero .trust,
  .hero .display,
  .hero .lede,
  .hero .cta-row,
  .hero .studio {
    animation: none;
  }
}

/* ===== School Holiday Schedule Slider ===== */

.holiday-schedule-section {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(248, 244, 240, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.schedule-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--pottery);
}

.schedule-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pottery), #f4a989);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 6px 20px rgba(229, 138, 114, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  position: relative;
  overflow: hidden;
}

.price-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.price-highlight::after {
  content: '✨';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0% { opacity: 0.6; transform: translateY(-50%) scale(0.8); }
  100% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.schedule-title {
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  position: relative;
}

.schedule-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pottery), var(--green));
  border-radius: 2px;
}

.schedule-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
}

/* Slider Container */
.schedule-slider-container {
  position: relative;
  margin: 2rem 0;
}

.schedule-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 1rem 0.5rem 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.schedule-slider::-webkit-scrollbar {
  height: 8px;
}

.schedule-slider::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.schedule-slider::-webkit-scrollbar-thumb {
  background: var(--pottery);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.schedule-slider::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* Day Cards */
.day-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  border-top: 4px solid #8B4513;
}

.day-card:nth-child(1) { border-top-color: #8B4513; } /* Brown */
.day-card:nth-child(2) { border-top-color: #CD853F; } /* Peru */
.day-card:nth-child(3) { border-top-color: #DAA520; } /* Goldenrod */
.day-card:nth-child(4) { border-top-color: #556B2F; } /* Dark Olive Green */
.day-card:nth-child(5) { border-top-color: #4682B4; } /* Steel Blue */
.day-card:nth-child(6) { border-top-color: #708090; } /* Slate Gray */
.day-card:nth-child(7) { border-top-color: #2F4F4F; } /* Dark Slate Gray */

.day-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

.day-card:nth-child(1):hover { border-color: #8B4513; }
.day-card:nth-child(2):hover { border-color: #CD853F; }
.day-card:nth-child(3):hover { border-color: #DAA520; }
.day-card:nth-child(4):hover { border-color: #556B2F; }
.day-card:nth-child(5):hover { border-color: #4682B4; }
.day-card:nth-child(6):hover { border-color: #708090; }
.day-card:nth-child(7):hover { border-color: #2F4F4F; }

.day-name {
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  color: var(--ink);
}

.day-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  border-radius: 2px;
  background: var(--pottery);
}

/* Class Slots */
.class-slot {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #8B7355;
}

.day-card:nth-child(1) .class-slot { border-left-color: #8B4513; }
.day-card:nth-child(2) .class-slot { border-left-color: #CD853F; }
.day-card:nth-child(3) .class-slot { border-left-color: #DAA520; }
.day-card:nth-child(4) .class-slot { border-left-color: #556B2F; }
.day-card:nth-child(5) .class-slot { border-left-color: #4682B4; }
.day-card:nth-child(6) .class-slot { border-left-color: #708090; }
.day-card:nth-child(7) .class-slot { border-left-color: #2F4F4F; }

.class-slot:hover {
  transform: translateX(4px);
  border-color: var(--pottery);
  box-shadow: 0 4px 12px rgba(229, 138, 114, 0.2);
}

.class-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pottery);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.class-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* Scroll indicators */
.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--pottery);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-indicator:hover {
  background: var(--pottery);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.scroll-left {
  left: -20px;
}

.scroll-right {
  right: -20px;
}

/* Fun helper text */
.swipe-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* Booking CTA */
.schedule-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed rgba(229, 138, 114, 0.3);
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .schedule-wrapper {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .day-card {
    flex: 0 0 260px;
    padding: 1.25rem;
  }

  .day-name {
    font-size: 1.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .swipe-hint {
    display: block;
  }
}

@media (min-width: 769px) {
  .swipe-hint {
    display: none;
  }
}

/* Animation for initial load */
.day-card {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.day-card:nth-child(1) { animation-delay: 0.1s; }
.day-card:nth-child(2) { animation-delay: 0.2s; }
.day-card:nth-child(3) { animation-delay: 0.3s; }
.day-card:nth-child(4) { animation-delay: 0.4s; }
.day-card:nth-child(5) { animation-delay: 0.5s; }
.day-card:nth-child(6) { animation-delay: 0.6s; }
.day-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .day-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .schedule-slider {
    scroll-behavior: auto;
  }
  
  * {
    transition: none !important;
  }
}

/* ===== Footer ===== */
.site-footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid var(--line);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.footer-section h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pottery);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section .small {
  font-size: 0.9rem;
  line-height: 1.4;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid var(--pottery);
  border-radius: 8px;
  color: var(--pottery);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
  animation: subtlePulse 3s ease-in-out infinite;
}

.directions-btn:hover {
  background: var(--pottery);
  color: white;
  animation: none; /* Stop pulsing on hover */
}

@keyframes subtlePulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 138, 114, 0.4);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(229, 138, 114, 0.1);
  }
}

.location-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.location-link {
  color: var(--pottery);
  padding: 0.25rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-link:hover {
  background: rgba(229, 138, 114, 0.1);
  color: var(--pottery);
  text-decoration: none;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f7eadf;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid rgba(229, 138, 114, 0.1);
  min-height: 44px;
}

.contact-item:hover {
  background: #f0ddd0;
  color: var(--pottery);
  text-decoration: none;
  border-color: var(--pottery);
}

.contact-item svg {
  color: var(--pottery);
  flex-shrink: 0;
}

.hours-simple {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f7eadf;
  border-radius: 12px;
  color: var(--pottery);
  transition: all 0.2s ease;
  border: 1px solid rgba(229, 138, 114, 0.2);
}

.social-links a:hover {
  background: var(--pottery);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 138, 114, 0.3);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-bottom .text-muted {
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
  }
  
  .contact-grid {
    flex-direction: row;
  }
  
  .contact-item {
    flex: 1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }
  
  .contact-item span {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 3rem;
  }
}
