/*
Theme Name: Vanessa Atelier Estética
Theme URI: https://dravanessabergamasco.com.br
Author: Sodablio
Author URI: https://www.sodablio.com.br
Description: Tema filho do GeneratePress para o site da Dra. Vanessa Bergamasco — Ginecologista em Maringá. Clínica boutique, menopausa, reposição hormonal, saúde íntima e longevidade.
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vanessa-atelier
*/

/* ============================================================
   0. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --color-bg:       #F2CDAC;
  --color-white:    #FFFFFF;
  --color-text:     #3A3837;
  --color-accent:   #8C5320;
  --color-accent-30: rgba(140, 83, 32, 0.3);
  --color-accent-80: rgba(140, 83, 32, 0.8);
  --font-display:   'Cormorant Garamond', serif;
  --font-body:      'Jost', ui-sans-serif, system-ui, sans-serif;
  --font-label:     'Julius Sans One', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   GP OVERRIDES — Remove default GeneratePress chrome
   ============================================================ */
.site-header,
.site-footer,
.main-navigation,
.site-branding,
#secondary,
.sidebar,
.entry-header,
.entry-meta,
.post-navigation,
.comments-area,
.site-info {
  display: none !important;
}

.site-content,
.content-area,
.site {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.inside-article {
  padding: 0 !important;
  margin: 0 !important;
}

article.page {
  padding: 0 !important;
  margin: 0 !important;
}

.entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

#page {
  max-width: 100% !important;
}

/* ============================================================
   1. TYPOGRAPHY CLASSES
   ============================================================ */
.font-display {
  font-family: var(--font-display);
  font-weight: 400;
}

.font-label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.font-body {
  font-family: var(--font-body);
}

/* ============================================================
   2. BUTTON STYLES
   ============================================================ */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--color-text);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  line-height: 1;
}

.btn-outline:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.btn-solid {
  display: inline-block;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: background-color 0.2s;
  line-height: 1;
  border: none;
}

.btn-solid:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* ============================================================
   3. HEADER
   ============================================================ */
.va-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background-color 0.3s, backdrop-filter 0.3s;
}

.va-header.scrolled {
  background-color: rgba(242, 205, 172, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.va-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.va-header__logo {
  height: 48px;
  width: auto;
}

.va-header__menu-btn {
  color: var(--color-text);
  padding: 8px;
}

.va-header__menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu Overlay */
.va-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.va-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Panel */
.va-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background-color: var(--color-bg);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease-out;
}

.va-menu-panel.active {
  transform: translateX(0);
}

.va-menu-panel__close {
  align-self: flex-end;
  color: var(--color-text);
  padding: 8px;
  margin-bottom: 48px;
}

.va-menu-panel__close svg {
  width: 24px;
  height: 24px;
}

.va-menu-panel__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.va-menu-panel__link {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  color: var(--color-text);
  transition: color 0.3s;
  opacity: 0;
  transform: translateX(20px);
}

.va-menu-panel.active .va-menu-panel__link {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}

.va-menu-panel.active .va-menu-panel__link:nth-child(1) { transition-delay: 0.15s, 0.15s, 0s; }
.va-menu-panel.active .va-menu-panel__link:nth-child(2) { transition-delay: 0.22s, 0.22s, 0s; }
.va-menu-panel.active .va-menu-panel__link:nth-child(3) { transition-delay: 0.29s, 0.29s, 0s; }
.va-menu-panel.active .va-menu-panel__link:nth-child(4) { transition-delay: 0.36s, 0.36s, 0s; }
.va-menu-panel.active .va-menu-panel__link:nth-child(5) { transition-delay: 0.43s, 0.43s, 0s; }

.va-menu-panel__link:hover {
  color: var(--color-accent);
}

/* ============================================================
   4. HERO SECTION
   ============================================================ */
.va-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.va-hero__content {
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  padding: 128px 24px 64px;
}

.va-hero__text {
  max-width: 540px;
}

.va-hero__title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.05;
  color: var(--color-text);
  font-weight: 400;
}

.va-hero__subtitle {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 480px;
}

.va-hero__buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.va-hero__image-wrap {
  height: 60vh;
}

.va-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   5. QUOTE BAND
   ============================================================ */
.va-quote {
  background-color: var(--color-accent);
  padding: 80px 24px;
}

.va-quote__inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.va-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--color-white);
}

.va-quote__author {
  margin-top: 24px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   6. DIFFERENTIALS
   ============================================================ */
.va-diff {
  background-color: var(--color-white);
  padding: 112px 24px;
}

.va-diff__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.va-diff__title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 400;
}

.va-diff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
}

.va-diff__card {
  border-top: 1px solid var(--color-accent-30);
  padding-top: 32px;
}

.va-diff__card-label {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.va-diff__card-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
}

.va-diff__image-wrap {
  margin-top: 80px;
}

.va-diff__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.va-about {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
}

.va-about__content {
  display: flex;
  align-items: center;
  padding: 96px 24px;
}

.va-about__text {
  max-width: 540px;
}

.va-about__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-text);
  font-weight: 400;
}

.va-about__paragraphs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.va-about__paragraph {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
}

.va-about__credentials {
  margin-top: 40px;
  border-top: 1px solid var(--color-accent-30);
  padding-top: 24px;
}

.va-about__credentials-title {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.va-about__credentials-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.va-about__credentials-item {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
}

.va-about__cta {
  margin-top: 40px;
}

.va-about__image-wrap {
  width: 100%;
}

.va-about__image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

/* ============================================================
   8. SPECIALTIES
   ============================================================ */
.va-spec {
  background-color: var(--color-white);
  padding: 112px 0;
}

.va-spec__header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.va-spec__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-text);
  font-weight: 400;
}

.va-spec__subtitle {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
}

.va-spec__track {
  margin-top: 64px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.va-spec__track::-webkit-scrollbar {
  display: none;
}

.va-spec__card {
  flex-shrink: 0;
  width: 300px;
  min-height: 420px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(242, 205, 172, 0.3);
  border-top: 1px solid var(--color-accent-30);
  padding: 32px;
  transition: transform 0.3s;
}

.va-spec__card:hover {
  transform: scale(1.02);
}

.va-spec__card-number {
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.va-spec__card-title {
  margin-top: 24px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 400;
}

.va-spec__card-text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
}

.va-spec__card-btn {
  align-self: flex-start;
  border: 1px solid var(--color-text);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--color-text);
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  margin-top: 24px;
}

.va-spec__card-btn:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.va-spec__progress {
  margin: 24px 24px 0;
  height: 3px;
  background-color: var(--color-bg);
}

.va-spec__progress-bar {
  height: 100%;
  background-color: var(--color-accent);
  width: 8%;
  transition: width 0.2s;
}

.va-spec__note {
  margin-top: 40px;
  text-align: center;
  padding: 0 24px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--color-accent);
}

/* ============================================================
   9. BOUTIQUE GALLERY
   ============================================================ */
.va-boutique {
  background-color: var(--color-bg);
  padding: 112px 24px;
}

.va-boutique__inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.va-boutique__title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--color-text);
  font-weight: 400;
}

.va-boutique__subtitle {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.va-boutique__carousel {
  position: relative;
  margin-top: 64px;
  aspect-ratio: 3 / 2;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.va-boutique__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  pointer-events: none;
}

.va-boutique__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.va-boutique__slide.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}

.va-boutique__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.va-boutique__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 8px;
  color: rgba(58, 56, 55, 0.6);
  opacity: 0.6;
  transition: opacity 0.5s, background-color 0.5s;
  z-index: 2;
}

.va-boutique__nav-btn:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.6);
}

.va-boutique__nav-btn--prev {
  left: 12px;
}

.va-boutique__nav-btn--next {
  right: 12px;
}

.va-boutique__nav-btn svg {
  width: 16px;
  height: 16px;
}

.va-boutique__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.va-boutique__dot {
  height: 3px;
  width: 32px;
  background-color: var(--color-accent-30);
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.va-boutique__dot.active {
  background-color: var(--color-accent);
}

/* ============================================================
   10. AMBIENT BAND (PARALLAX)
   ============================================================ */
.va-ambient {
  height: 50vh;
  background-size: cover;
  background-attachment: fixed;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Disable fixed attachment on touch/mobile for performance */
@supports (-webkit-touch-callout: none) {
  .va-ambient {
    background-attachment: scroll;
  }
}

/* ============================================================
   11. CONTACT SECTION
   ============================================================ */
.va-contact {
  position: relative;
  background-color: var(--color-white);
  padding: 112px 24px;
}

.va-contact__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.va-contact__inner {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.va-contact__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-text);
  font-weight: 400;
}

.va-contact__subtitle {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
}

.va-contact__info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.va-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
}

.va-contact__info-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.va-contact__buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Form */
.va-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.va-contact__form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
  margin-left: 16px;
}

.va-contact__input {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(58, 56, 55, 0.6);
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  transition: border-color 0.2s;
  outline: none;
}

.va-contact__input::placeholder {
  color: rgba(58, 56, 55, 0.4);
}

.va-contact__input:focus {
  border-color: var(--color-accent);
}

.va-contact__textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid rgba(58, 56, 55, 0.6);
  border-radius: 24px;
  padding: 16px 24px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.va-contact__textarea::placeholder {
  color: rgba(58, 56, 55, 0.4);
}

.va-contact__textarea:focus {
  border-color: var(--color-accent);
}

.va-contact__form-note {
  font-size: 14px;
  font-weight: 300;
  color: rgba(58, 56, 55, 0.7);
  margin-left: 16px;
}

/* ============================================================
   12. INSTAGRAM FEED
   ============================================================ */
.va-instagram {
  background-color: var(--color-bg);
  padding: 96px 24px;
}

.va-instagram__handle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content !important;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 28px;
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border: 1.5px solid var(--color-accent);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(140, 83, 32, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.va-instagram__handle span,
.va-instagram__handle svg {
  color: var(--color-white) !important;
  stroke: var(--color-white) !important;
}

.va-instagram__handle:hover {
  background-color: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(58, 56, 55, 0.35);
}

.va-instagram__handle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.va-instagram__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

.va-instagram__embed-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #000;
  border: 1px solid var(--color-accent-30);
  box-shadow: 0 8px 24px rgba(140, 83, 32, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 5;
}

.va-instagram__embed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(140, 83, 32, 0.22);
}

.va-instagram__embed-item:nth-child(5) {
  display: none;
}

.va-instagram__embed-item iframe.instagram-media,
.va-instagram__embed-item blockquote.instagram-media {
  position: absolute !important;
  top: -58px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 240px) !important;
  min-height: calc(100% + 240px) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
}

/* ============================================================
   12-B. GOOGLE REVIEWS (Trustindex)
   ============================================================ */
.va-reviews {
  padding: 96px 24px;
  background-color: var(--color-bg);
}

.va-reviews__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.va-reviews__title {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 48px;
}

.va-reviews__widget {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.va-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-accent-30);
  padding: 64px 24px;
}

.va-footer__grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.va-footer__col-title {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  color: var(--color-text);
}

.va-footer__col-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
}

.va-footer__col-body a {
  transition: color 0.3s;
}

.va-footer__col-body a:hover {
  color: var(--color-accent);
}

.va-footer__col-body a.va-footer__instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 22px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1.5px solid var(--color-accent);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(140, 83, 32, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.va-footer__col-body a.va-footer__instagram-btn:hover {
  background-color: var(--color-text);
  color: var(--color-white) !important;
  border-color: var(--color-text);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 22px rgba(58, 56, 55, 0.35);
}

.va-footer__instagram-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

.va-footer__instagram-btn span {
  color: inherit;
}

.va-footer__bottom {
  max-width: 1152px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(140, 83, 32, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.va-footer__stamp-wrap {
  height: 112px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.va-footer__stamp {
  height: 112px;
  width: auto;
  transform: scale(1.5);
}

.va-footer__copy {
  font-size: 14px;
  font-weight: 300;
  color: rgba(58, 56, 55, 0.7);
  text-align: center;
}

.va-footer__copy a {
  transition: color 0.3s;
}

.va-footer__copy a:hover {
  color: var(--color-accent);
}

.va-footer__map {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-accent-30);
}

.va-footer__map iframe {
  display: block;
  width: 100%;
  height: 200px;
}

/* ============================================================
   14. SCROLL REVEAL ANIMATIONS
   Elements are VISIBLE by default. Only when JS loads and adds
   .js-ready to <body> do they become hidden for animation.
   This prevents invisible content if JS fails to load.
   ============================================================ */

/* Default: everything visible */
.reveal,
.reveal-scale {
  opacity: 1;
  transform: none;
}

/* When JS is ready: hide for animation */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.js-ready .reveal[data-delay="0"] { transition-delay: 0s; }
body.js-ready .reveal[data-delay="1"] { transition-delay: 0.1s; }
body.js-ready .reveal[data-delay="2"] { transition-delay: 0.2s; }
body.js-ready .reveal[data-delay="3"] { transition-delay: 0.3s; }
body.js-ready .reveal[data-delay="4"] { transition-delay: 0.4s; }
body.js-ready .reveal[data-delay="5"] { transition-delay: 0.5s; }
body.js-ready .reveal[data-delay="8"] { transition-delay: 0.8s; }

body.js-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.js-ready .reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   15. RESPONSIVE — DESKTOP (md: 768px+)
   ============================================================ */
@media (min-width: 768px) {

  /* Header */
  .va-header__inner {
    padding: 20px 48px;
  }

  .va-header__logo {
    height: 56px;
  }

  /* Hero */
  .va-hero {
    flex-direction: row;
  }

  .va-hero__content {
    width: 50%;
    padding: 0 64px;
  }

  .va-hero__title {
    font-size: 56px;
  }

  .va-hero__image-wrap {
    width: 50%;
    height: auto;
    min-height: 100vh;
  }

  /* Quote */
  .va-quote {
    padding: 96px 64px;
  }

  .va-quote__text {
    font-size: 40px;
  }

  /* Differentials */
  .va-diff {
    padding: 144px 64px;
  }

  .va-diff__title {
    font-size: 38px;
  }

  .va-diff__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .va-diff__image {
    height: 480px;
  }

  /* About */
  .va-about {
    flex-direction: row;
  }

  .va-about__content {
    width: 50%;
    padding: 128px 64px;
  }

  .va-about__title {
    font-size: 40px;
  }

  .va-about__image-wrap {
    width: 50%;
  }

  .va-about__image {
    height: 100%;
  }

  /* Specialties */
  .va-spec {
    padding: 128px 24px;
  }

  .va-spec__header {
    max-width: 1200px;
    margin: 0 auto;
  }

  .va-spec__title {
    font-size: 40px;
  }

  .va-spec__track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px;
    max-width: 1200px;
    margin: 64px auto 0;
    padding: 0;
    overflow-x: visible;
  }

  .va-spec__card {
    width: 100%;
    min-height: 440px;
    flex-shrink: 1;
  }

  .va-spec__progress {
    display: none !important;
  }

  .va-spec__note {
    padding: 0;
    margin-top: 48px;
  }

  /* Boutique */
  .va-boutique {
    padding: 144px 64px;
  }

  .va-boutique__title {
    font-size: 56px;
  }

  /* Ambient */
  .va-ambient {
    height: 70vh;
  }

  /* Contact */
  .va-contact {
    padding: 144px 64px;
  }

  .va-contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }

  .va-contact__title {
    font-size: 40px;
  }

  /* Instagram */
  .va-instagram {
    padding: 128px 64px;
  }

  .va-instagram__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .va-instagram__embed-item:nth-child(5) {
    display: block;
  }

  /* Footer */
  .va-footer {
    padding: 64px 64px;
  }

  .va-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .va-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   16. SVG ICON INLINE HELPERS
   ============================================================ */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
