/* ====== RESET & BASE ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin-bottom: 1.2rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ====== NAVBAR (mobile-first) ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
  animation: fadeDown 0.8s ease both;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.25s;
}

.nav-brand:hover { color: var(--sage-d); }
.nav-brand span { color: var(--sage-d); font-style: italic; }

/* Hamburger: visible by default (mobile-first) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(245, 240, 232, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--mist);
  border-radius: 6px;
  cursor: pointer;
  padding: 0.55rem 0.5rem;
}

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

.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 overlay: hidden by default, shown with .active */
.nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--cream);
  padding: 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-links.active {
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  padding: 1rem;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 0.25s;
  background: rgba(245, 240, 232, 0.8);
}

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

/* Desktop nav */
@media (min-width: 769px) {
  .navbar {
    padding: 1.4rem 2rem;
  }

  .nav-toggle { display: none; }

  .nav-links {
    position: static;
    flex-direction: row;
    gap: 2.4rem;
    align-items: center;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    z-index: auto;
  }

  .nav-links a {
    padding: 0;
    width: auto;
    border-bottom: none;
    text-align: left;
    font-size: 0.78rem;
    opacity: 0.7;
  }
}

/* ====== SKIP LINK ====== */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--ink);
  color: white;
  z-index: 10000;
  font-size: 0.9rem;
  outline: none;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100px); }
}

/* ====== HERO (mobile-first) ====== */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  z-index: 2;
  animation: fadeLeft 1s ease 0.3s both;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage-d);
}

.hero-name {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 12vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.hero-name em {
  color: var(--sage-d);
  display: block;
  font-style: italic;
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.75;
  max-width: 380px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--sage-d);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: fit-content;
}

.hero-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Hero Right */
.hero-right {
  position: relative;
  background: var(--sand);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  min-height: 400px;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 60% 40%, rgba(138,158,140,0.22) 0%, transparent 70%),
    var(--sand);
  z-index: 0;
}

.deco-word {
  display: none;
  position: absolute;
  font-family: var(--f-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(94, 115, 96, 0.09);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.deco-word-1 { top: 5%; left: -5%; }
.deco-word-2 { bottom: 5%; right: -5%; }

.circle-deco {
  position: relative;
  width: clamp(200px, 60vw, 300px);
  height: clamp(200px, 60vw, 300px);
  border-radius: 50%;
  border: 1px solid rgba(138,158,140,0.25);
  z-index: 2;
  overflow: hidden;
}

.circle-deco::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(138,158,140,0.15);
}

.circle-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video */
.video-container {
  position: relative;
  overflow: hidden;
}

.video-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: rgba(94, 115, 96, 0.85);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.video-play-btn:hover {
  background: rgba(44, 36, 32, 0.95);
  transform: translate(-50%, -50%) scale(1.1);
}

@media (hover: hover) {
  .video-play-btn {
    opacity: 0;
    visibility: hidden;
  }

  .video-container:hover .video-play-btn {
    opacity: 1;
    visibility: visible;
  }
}

.hero-quote {
  position: relative;
  font-family: var(--f-serif);
  font-size: clamp(1rem, 4vw, 1.22rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
  line-height: 1.6;
  padding: 2rem 1.5rem 4rem;
  z-index: 3;
  animation: fadeUp 1.2s ease 0.8s both;
}

.hero-quote::before {
  content: '"';
  display: block;
  font-size: 2.5rem;
  color: var(--sage);
  line-height: 0.6;
  margin-bottom: 0.6rem;
}

/* Desktop hero */
@media (min-width: 769px) {
  .hero {
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
  }

  .hero-left {
    padding: 4rem 2rem 4rem 4rem;
    justify-content: center;
  }

  .hero-right {
    padding: 2rem;
  }

  .hero-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .hero-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
  }

  .deco-word { display: block; }

  .hero-quote {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
}

/* ====== DIVIDER (mobile-first) ====== */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, var(--mist), transparent);
  max-width: 1200px;
  margin: 2.5rem auto;
}

@media (min-width: 769px) {
  .divider {
    margin: 4rem auto;
  }
}

/* ====== SECTION BASE (mobile-first) ====== */
.section-base {
  padding: 2.5rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.full-section {
  background: var(--sand);
  padding: 2.5rem 1.25rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-d);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--sage-d);
}

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-title em {
  color: var(--sage-d);
  font-style: italic;
}

@media (min-width: 769px) {
  .section-base {
    padding: 4rem 2rem;
  }

  .full-section {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 2.4rem;
  }
}

/* ====== ABOUT (mobile-first) ====== */
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.photo-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--sage-d);
  color: white;
  padding: 1.2rem;
  border-radius: 0.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 5;
  font-size: 0.9rem;
  line-height: 1.4;
}

.photo-badge strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.photo-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  display: block;
}

.about-text p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.8;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--mist);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-d);
  transition: all 0.25s;
}

.tag:hover {
  background: var(--sage-d);
  color: white;
  border-color: var(--sage-d);
}

@media (min-width: 769px) {
  .about-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }

  .photo-frame { max-width: 280px; }

  .about-tags { gap: 0.8rem; }

  .tag {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
  }
}

/* ====== SERVICES (mobile-first) ====== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* ====== APPROACH (mobile-first) ====== */
.approach-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.approach-list {
  list-style: none;
  border-top: 1px solid var(--mist);
  margin-top: 2rem;
}

.approach-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--mist);
  transition: transform 0.25s;
}

.approach-list li:hover {
  transform: translateX(0.5rem);
}

.approach-num {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  opacity: 0.5;
  min-width: 3rem;
  line-height: 1;
}

.approach-info h4 {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.approach-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.6;
}

.pull-quote {
  background: white;
  padding: 2rem;
  border-left: 3px solid var(--sage);
  border-radius: 0.25rem;
  height: fit-content;
}

.pull-quote blockquote {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pull-quote cite {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-d);
}

@media (min-width: 769px) {
  .approach-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .pull-quote {
    padding: 2.4rem;
  }

  .pull-quote blockquote {
    font-size: 1.3rem;
  }
}

/* ====== CONTACT (mobile-first) ====== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ink);
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.contact-left {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, #3d3028 100%);
}

.contact-left .section-label {
  color: var(--sage);
}

.contact-left .section-label::before {
  background: var(--sage);
}

.contact-left .section-title {
  color: white;
}

.contact-left .section-title em {
  color: var(--sage);
}

.contact-details {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.contact-item a {
  color: inherit;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(138, 158, 140, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  transition: all 0.25s;
  flex: 1;
  text-align: center;
}

.social-btn:hover {
  background: var(--sage-d);
  border-color: var(--sage-d);
  color: white;
}

.contact-right {
  background: var(--sand);
  padding: 2rem 1.5rem;
}

.contact-right .section-label {
  color: var(--sage-d);
}

.contact-right .section-label::before {
  background: var(--sage-d);
}

.contact-right .section-title {
  color: var(--ink);
}

.contact-right .section-title em {
  color: var(--sage-d);
}

/* ====== FORM STYLES ====== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--mist);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink);
  opacity: 0.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-d);
  box-shadow: 0 0 0 2px rgba(94, 115, 96, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border: 1px solid var(--mist);
  border-radius: 50px;
  background: white;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  position: relative;
}

.radio-label:hover {
  background: var(--cream);
  border-color: var(--sage-d);
}

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-label span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 300;
}

.radio-label:has(input:checked) {
  background: var(--sage-d);
  border-color: var(--sage-d);
}

.radio-label:has(input:checked) span {
  color: white;
  font-weight: 400;
}

.form-submit {
  width: 100%;
  background: var(--sage-d);
  color: white;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  font-weight: 300;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--ink);
}

.form-submit:active {
  transform: scale(0.98);
}

@media (min-width: 769px) {
  .contact-container {
    grid-template-columns: 1fr 1.2fr;
  }

  .contact-left {
    padding: 3rem;
  }

  .contact-right {
    padding: 2rem;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .social-row {
    gap: 1rem;
  }

  .social-btn {
    flex: none;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .form-submit {
    width: auto;
  }
}

/* ====== MAP ====== */
.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--mist);
  font-size: 0.75rem;
  color: var(--ink);
  opacity: 0.45;
  letter-spacing: 0.05em;
}

/* ====== REVEAL ANIMATION ====== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ====== ALERT TOAST ====== */
.alert-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  font-size: 0.9rem;
  max-width: 300px;
  color: white;
}

.alert-toast--success { background: var(--sage-d); }
.alert-toast--error { background: var(--taupe); }
.alert-toast--info { background: var(--sage); }

.alert-toast--out {
  animation: slideOut 0.3s ease forwards;
}

/* ====== SCROLL TO TOP ====== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--sage-d);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* ====== PRIVACY NOTICE ====== */
.privacy-notice {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* ====== ELFSIGHT FALLBACK ====== */
.elfsight-fallback {
  text-align: center;
  padding: 2rem;
  color: var(--taupe);
  font-size: 0.9rem;
}
