:root {
  --bg: #ffffff;
  --fg: #101010;
  --muted: #5a5a5a;
  --rose: #c58f79; /* warmer rose gold */
  --rose-200: #e0b8a7;
  --rose-100: #f4e8e2;
  --line: #e9e3df;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5rem; }
h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--muted); }

.container { 
  width: min(1120px, 92%); 
  margin: 0 auto; 
  padding: 0 1rem;
}
.grid.two { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 3rem; 
  align-items: start; 
}
.grid.three { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
}

.section { 
  padding: 4rem 0; 
  border-top: 1px solid var(--line); 
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #fff 0%, rgba(197,143,121,0.03) 25%, rgba(197,143,121,0.08) 75%, var(--rose-100) 100%);
}

.section:nth-child(odd) {
  background: #fff;
}

.section.hero {
  background: none;
  border-top: none;
  padding: 0;
}
.lead { font-size: 1.125rem; color: var(--fg); }

.btn { display: inline-block; padding: 0.85rem 1.2rem; text-decoration: none; border: 1px solid var(--fg); color: var(--fg); transition: background .2s, color .2s, border-color .2s; letter-spacing: 0.02em; border-radius: 2px; }
.btn.primary { background: var(--fg); color: #fff; border-color: var(--fg); }
.btn.primary:hover { background: var(--rose); border-color: var(--rose); }
.btn.ghost { background: transparent; }
.btn.ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn.white { 
  background: rgba(255,255,255,0.95); 
  color: var(--fg); 
  border-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}
.btn.white:hover { 
  background: #fff; 
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
.btn-link { padding: 0.5rem 0.9rem; border: 1px solid var(--rose); color: var(--rose); }
.btn-link:hover { background: var(--rose); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: .5rem; background: #000; color: #fff; }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(255,255,255,0.95); 
  backdrop-filter: saturate(180%) blur(15px); 
  border-bottom: 1px solid rgba(197,143,121,0.2); 
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(197,143,121,0.1);
}
.site-header.is-hidden { 
  transform: translateY(-100%); 
}
.site-header[data-scrolled="true"] { 
  box-shadow: 0 8px 32px rgba(197,143,121,0.15);
  background: rgba(255,255,255,0.98);
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 1.25rem 0; 
  min-height: 70px;
}
.logo { 
  font-weight: 700; 
  letter-spacing: 0.12em; 
  color: var(--fg); 
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.logo:hover {
  color: var(--rose);
}
.logo-image { 
  display: block; 
  height: 28px; 
  width: auto; 
  image-rendering: -webkit-optimize-contrast; 
}
.nav-toggle { 
  display: none; 
  background: transparent;
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-toggle:hover {
  background: var(--rose);
  color: #fff;
}
.nav-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 1.5rem; 
  align-items: center;
}
.nav-list a { 
  text-decoration: none; 
  color: var(--fg); 
  padding: 0.6rem 0.8rem; 
  border: 1px solid transparent; 
  position: relative; 
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.nav-list a:hover { 
  border-color: var(--rose); 
  color: var(--rose); 
  background: rgba(197,143,121,0.08); 
  transform: translateY(-1px);
}
.nav-list a::after { 
  content: ""; 
  position: absolute; 
  left: 50%; 
  bottom: -2px; 
  width: 0; 
  height: 2px; 
  background: linear-gradient(90deg, var(--rose), var(--rose-200)); 
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-list a:hover::after, .nav-list a:focus::after { 
  width: 80%; 
}
/* Active state for nav */
.nav-list a[aria-current="page"], .nav-list a.is-active { 
  color: var(--rose); 
  border-color: rgba(197,143,121,0.6); 
  background: rgba(197,143,121,0.1);
}

/* Hero */
.hero { 
  position: relative; 
  min-height: 80vh; 
  display: grid; 
  align-items: center; 
}
.hero-media { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.7) 0%, 
    rgba(0,0,0,0.5) 30%, 
    rgba(0,0,0,0.3) 60%, 
    rgba(0,0,0,0.6) 100%), 
    url('caption.jpg') center/cover no-repeat; 
  z-index: -1;
}
.hero-content { 
  position: relative; 
  padding: 0; 
  text-align: center;
  color: #fff;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}
.hero p { 
  max-width: 56ch; 
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.hero-ctas { 
  display: flex; 
  gap: 1.5rem; 
  margin-top: 0; 
  flex-wrap: wrap;
  justify-content: center;
}

/* About */
.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.facts { 
  list-style: none; 
  padding: 2rem; 
  margin: 0; 
  display: grid; 
  gap: 1.5rem; 
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(197,143,121,0.1);
  backdrop-filter: blur(10px);
}
.facts li { 
  display: grid; 
  grid-template-columns: 160px 1fr; 
  padding: 1rem 0; 
  border-bottom: 1px solid rgba(197,143,121,0.2); 
  transition: all 0.3s ease;
}
.facts li:hover {
  border-bottom-color: var(--rose);
  transform: translateX(5px);
}
.facts li:last-child {
  border-bottom: none;
}
.facts span { 
  color: var(--rose); 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Cards */
.cards .card { 
  border: 1px solid var(--line); 
  padding: 1.25rem; 
  background: linear-gradient(135deg, #fff 0%, rgba(197,143,121,0.05) 50%, var(--rose-100) 100%); 
  box-shadow: 0 12px 36px rgba(197,143,121,0.16); 
}

/* Menu Section */
.menu {
  text-align: center;
  position: relative;
}

.menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.menu .lead {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-style: italic;
}

.menu .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.menu .btn:hover::before {
  left: 100%;
}

/* Culinary Experience */
.culinary {
  position: relative;
  text-align: center;
}

.culinary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.culinary-header {
  margin-bottom: 3rem;
}

.culinary-header .lead {
  font-size: 1.4rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0;
}

.culinary-philosophy {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: left;
}

.culinary-philosophy p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.culinary-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255,255,255,0.9);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(197,143,121,0.2);
  box-shadow: 0 8px 32px rgba(197,143,121,0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--rose-200), var(--rose));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(197,143,121,0.25);
}



.feature-card h3 {
  color: var(--rose);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.culinary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.culinary-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(197,143,121,0.1);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.culinary-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: bold;
  font-size: 1.2rem;
}

.culinary-list li:hover {
  color: var(--rose);
  transform: translateX(5px);
}

.culinary-list li:last-child {
  border-bottom: none;
}

.culinary-list li strong {
  color: var(--fg);
  font-weight: 600;
}

.culinary-quote {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255,255,255,0.8);
  border-radius: 16px;
  border: 1px solid rgba(197,143,121,0.2);
  box-shadow: 0 8px 32px rgba(197,143,121,0.1);
  backdrop-filter: blur(10px);
}

.culinary-quote blockquote {
  margin: 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  position: relative;
}

.culinary-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 4rem;
  color: var(--rose);
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.culinary-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--rose);
  font-weight: 500;
  font-style: normal;
}

/* Gallery */
.gallery {
  text-align: center;
  position: relative;
}

.gallery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.masonry { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin-top: 3rem;
}
.masonry figure { 
  margin: 0; 
  border: 1px solid var(--rose-200); 
  background: #fff; 
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(197,143,121,0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}
.masonry figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(197,143,121,0.25);
  border-color: var(--rose);
}
.masonry img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.4s ease;
}
.masonry figure:hover img {
  transform: scale(1.05);
}
.masonry figcaption { 
  padding: 0.5rem 0.75rem; 
  font-size: 0.9rem; 
  color: var(--muted); 
}

/* Visit */
.map-placeholder { height: 240px; background: repeating-linear-gradient(45deg, #fafafa, #fafafa 10px, #f3f3f3 10px, #f3f3f3 20px); border: 1px solid var(--line); }
.map-note { color: var(--muted); margin-top: 0.5rem; }

/* Reserve */
.reserve {
  position: relative;
}

.reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.reserve-form { 
  border: 1px solid rgba(197,143,121,0.3); 
  padding: 2rem; 
  background: linear-gradient(135deg, #fff 0%, rgba(197,143,121,0.03) 30%, var(--rose-100) 100%); 
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(197,143,121,0.15);
  backdrop-filter: blur(10px);
}
.field { 
  display: grid; 
  gap: 0.35rem; 
  margin-bottom: 0.8rem; 
}
.field label { 
  font-size: 0.9rem; 
  color: var(--muted); 
}
.field input, .field textarea { 
  border: 1px solid var(--line); 
  padding: 0.7rem 0.8rem; 
  font: inherit; 
  background: #fff; 
  width: 100%;
  box-sizing: border-box;
}
.grid.two.compact { 
  gap: 0.8rem; 
}

/* Map embed */
.map {
  position: relative;
}

.map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.map-card {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(197,143,121,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197,143,121,0.2);
}

.map-embed { 
  border: 1px solid rgba(197,143,121,0.3); 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(197,143,121,0.15);
}
.map-embed iframe { 
  width: 100%; 
  height: 420px; 
  display: block; 
}

/* Back to top */
.back-to-top { 
  position: fixed; 
  right: 30px; 
  bottom: 30px; 
  z-index: 120; 
  opacity: 0; 
  pointer-events: none; 
  transform: translateY(10px); 
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(197,143,121,0.3);
}
.back-to-top.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
  pointer-events: auto; 
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(197,143,121,0.4);
}

/* Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
}

/* Elegant hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Section headers */
.section h2 {
  position: relative;
  margin-bottom: 2rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}

.section:hover h2::after {
  width: 60px;
}

/* Footer */
.site-footer { 
  border-top: 1px solid var(--line); 
  padding: 2rem 0; 
  background: #fff; 
}
.footer-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 1rem; 
  flex-wrap: wrap;
}
.footer-links { 
  display: flex; 
  gap: 1rem; 
  flex-wrap: wrap;
}
.footer-links a { 
  color: var(--muted); 
  text-decoration: none; 
}
.footer-links a:hover { 
  color: var(--rose); 
}

/* Team */
.team {
  text-align: center;
  position: relative;
}

.team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.team-photo img { 
  width: 100%; 
  display: block; 
  border: 1px solid rgba(197,143,121,0.3); 
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(197,143,121,0.2); 
  transition: all 0.4s ease;
}

.team-photo img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(197,143,121,0.3);
}

/* Socials */
.socials {
  text-align: center;
  position: relative;
}

.socials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.socials .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-style: italic;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(197,143,121,0.3);
  color: var(--fg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197,143,121,0.3);
}

/* Luxury accents */
.logo-image { filter: saturate(105%) contrast(105%); }
.nav-list a:hover { border-color: rgba(197,143,121,0.6); }
.btn-link { border-color: var(--rose); color: var(--rose); background: linear-gradient(180deg, rgba(197,143,121,0.06), rgba(197,143,121,0)); }
.btn.ghost:hover { border-color: var(--rose); background: rgba(197,143,121,0.06); }
.hero-ctas .btn.primary { background: var(--rose); border-color: var(--rose); }
.hero-ctas .btn.primary:hover { background: #a7705c; border-color: #a7705c; }

/* Responsive */
@media (max-width: 1200px) {
  .container { 
    width: 95%; 
    padding: 0 1.5rem; 
  }
  .grid.two { 
    gap: 2.5rem; 
  }
}

@media (max-width: 900px) {
  .container { 
    width: 96%; 
    padding: 0 1rem; 
  }
  .grid.two { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .grid.three { 
    grid-template-columns: 1fr; 
  }
  .masonry { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .section { 
    padding: 2.5rem 0; 
  }
  .hero { 
    min-height: 50vh; 
  }
  .hero-content { 
    padding: 8vh 0 4vh; 
  }
  .facts li { 
    grid-template-columns: 120px 1fr; 
  }
  .culinary-features { 
    grid-template-columns: 1fr; 
    gap: 2rem; 
  }
  .map-embed iframe { 
    height: 300px; 
  }
}

@media (max-width: 720px) {
  .container { 
    width: 98%; 
    padding: 0 0.75rem; 
  }
  .nav-toggle { 
    display: inline-block; 
    background: transparent; 
    border: 1px solid var(--rose); 
    padding: 0.5rem 0.75rem; 
    color: var(--rose);
    border-radius: 4px;
  }
  .nav-list { 
    display: none; 
    position: absolute; 
    right: 0; 
    top: 100%; 
    background: rgba(255,255,255,0.98); 
    border: 1px solid rgba(197,143,121,0.2); 
    padding: 1rem; 
    flex-direction: column; 
    gap: 0.5rem;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 32px rgba(197,143,121,0.15);
    backdrop-filter: blur(15px);
  }
  .nav[aria-expanded="true"] .nav-list { 
    display: flex; 
  }
  .nav-list a {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-align: center;
  }
  .masonry { 
    grid-template-columns: 1fr; 
    gap: 0.75rem; 
  }
  .section { 
    padding: 2rem 0; 
  }
  .hero { 
    min-height: 45vh; 
  }
  .hero-content { 
    padding: 6vh 0 3vh; 
  }
  .hero-ctas { 
    flex-direction: column; 
    gap: 0.5rem; 
  }
  .facts li { 
    grid-template-columns: 1fr; 
    gap: 0.25rem; 
  }
  .culinary-features { 
    gap: 1.5rem; 
  }
  .feature-card { 
    padding: 2rem 1.5rem; 
  }
  .footer-inner { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 1.5rem; 
  }
  .footer-links { 
    flex-direction: column; 
    gap: 0.5rem; 
  }
}

@media (max-width: 480px) {
  .container { 
    width: 100%; 
    padding: 0 1rem; 
  }
  .section { 
    padding: 1.5rem 0; 
  }
  .hero { 
    min-height: 40vh; 
  }
  .hero-content { 
    padding: 4vh 0 2vh; 
  }
  .hero h1 { 
    font-size: clamp(2rem, 8vw, 2.6rem); 
  }
  .hero p { 
    font-size: 1rem; 
  }
  .btn { 
    padding: 0.75rem 1rem; 
    font-size: 0.9rem; 
  }
  .masonry { 
    gap: 0.5rem; 
  }
  .feature-card { 
    padding: 1.5rem 1rem; 
  }
  .culinary-quote {
    padding: 1.5rem;
  }
  .culinary-quote blockquote {
    font-size: 1.1rem;
  }
  .reserve-form { 
    padding: 0.75rem; 
  }
  .field input, .field textarea { 
    padding: 0.6rem 0.7rem; 
  }
  .social-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .social-btn {
    width: 100%;
    text-align: center;
  }
  .back-to-top { 
    right: 20px; 
    bottom: 20px; 
    width: 45px; 
    height: 45px; 
    font-size: 1rem; 
  }
}


