/* Loane Corbin — Shared styles */

.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-sans { font-family: Inter, system-ui, sans-serif; }

.gradient-hero {
  background:
    linear-gradient(105deg, rgba(61, 53, 47, 0.88) 0%, rgba(61, 53, 47, 0.6) 40%, rgba(61, 53, 47, 0.15) 75%, transparent 100%),
    linear-gradient(to top, rgba(61, 53, 47, 0.7) 0%, transparent 50%);
}

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

.hero-content > * {
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * {
    opacity: 1;
    animation: none;
  }
}

.gradient-gold {
  background: linear-gradient(135deg, #D8BE85 0%, #C48A92 100%);
}

.gradient-subtle {
  background: linear-gradient(180deg, #FAF8F5 0%, #F5F0EB 100%);
}

.service-card .service-img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-img,
.service-card:focus-visible .service-img {
  transform: scale(1.05);
}
.service-card .service-overlay {
  transition: opacity 0.5s ease;
}
.service-card:hover .service-overlay,
.service-card:focus-visible .service-overlay {
  opacity: 0.92;
}

/* Services section — responsive */
.service-card-media {
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .service-card-media {
    aspect-ratio: 5 / 4;
  }
}
@media (min-width: 1024px) {
  .service-card-media {
    aspect-ratio: 4 / 5;
  }
}
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 1.125rem 1.25rem 1.375rem;
}
@media (min-width: 640px) {
  .service-card-body {
    padding: 1.375rem 1.5rem 1.75rem;
  }
}
@media (min-width: 1024px) {
  .service-card-body {
    padding: 1.5rem 2rem 2rem;
  }
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-card:hover .service-card-cta,
.service-card:focus-visible .service-card-cta {
  color: #D8BE85;
  gap: 0.4rem;
}
@media (min-width: 1024px) {
  .service-card-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .services-scroll-wrap {
    margin-inline: -1.25rem;
  }
  .services-scroll-wrap::before,
  .services-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 1.75rem;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
  }
  .services-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FAF8F5 15%, transparent);
  }
  .services-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FAF8F5 15%, transparent);
  }
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    gap: 0.875rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.125rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  .services-grid .service-card {
    flex: 0 0 clamp(260px, 78vw, 300px);
    scroll-snap-align: start;
  }
  .services-tags {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.25rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .services-tags::-webkit-scrollbar {
    display: none;
  }
  .services-tags a {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid .service-card {
    min-height: 0;
  }
}

.gallery-masonry {
  columns: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) {
  .gallery-masonry:not(.gallery-responsive) { columns: 2; }
}
@media (min-width: 1024px) {
  .gallery-masonry:not(.gallery-responsive) { columns: 3; }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.04);
}

/* Réalisations — responsive gallery */
@media (max-width: 767px) {
  .gallery-scroll-wrap {
    margin-inline: -1.25rem;
  }
  .gallery-scroll-wrap::before,
  .gallery-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 1.75rem;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
  }
  .gallery-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FAF8F5 15%, transparent);
  }
  .gallery-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FAF8F5 15%, transparent);
  }
  .gallery-responsive {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    gap: 0.875rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.125rem;
    columns: auto;
    column-count: unset;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-responsive::-webkit-scrollbar {
    display: none;
  }
  .gallery-responsive .gallery-item {
    flex: 0 0 clamp(220px, 72vw, 280px);
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .gallery-responsive .gallery-item img {
    aspect-ratio: 4 / 5;
    min-height: 260px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-responsive {
    columns: unset;
    column-count: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery-responsive .gallery-item {
    margin-bottom: 0;
  }
  .gallery-responsive .gallery-item img {
    aspect-ratio: 4 / 5;
  }
  .gallery-responsive .gallery-item:nth-child(6n+1) img,
  .gallery-responsive .gallery-item:nth-child(6n+4) img {
    aspect-ratio: 3 / 4;
  }
  .gallery-responsive .gallery-item:nth-child(6n+3) img {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 1024px) {
  .gallery-responsive {
    columns: 3;
    column-gap: 1.25rem;
  }
  .gallery-responsive .gallery-item {
    margin-bottom: 1.25rem;
  }
  .gallery-responsive .gallery-item img {
    aspect-ratio: auto;
    min-height: 0;
  }
}

.timeline-line {
  background: linear-gradient(to bottom, #D6C2B0, #C48A92, #D8BE85);
}

/* Process section — responsive */
.process-step-card {
  background: #FAF8F5;
  border-radius: 1rem;
  padding: 1.375rem 1.5rem;
  box-shadow: 0 4px 24px rgba(61, 53, 47, 0.06);
  border: 1px solid rgba(214, 194, 176, 0.25);
  height: 100%;
}
@media (min-width: 640px) {
  .process-step-card {
    padding: 1.5rem 1.75rem;
  }
}
@media (min-width: 1024px) {
  .process-step-card {
    padding: 1.75rem 2rem;
    max-width: 22rem;
  }
}
.process-step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 3px solid #FAF8F5;
  box-shadow: 0 4px 16px rgba(61, 53, 47, 0.08);
  flex-shrink: 0;
  margin-bottom: 0.875rem;
}
.process-step-badge--gold { background: #D8BE85; color: #FAF8F5; }
.process-step-badge--rose { background: #C48A92; color: #FAF8F5; }
.process-step-badge--beige { background: #D6C2B0; color: #3D352F; }
.process-step-badge--text { background: #3D352F; color: #FAF8F5; }

@media (max-width: 767px) {
  #process .process-scroll-wrap {
    margin-inline: -1.25rem;
  }
  #process .process-scroll-wrap::before,
  #process .process-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 1.75rem;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
  }
  #process .process-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, #F7F2ED 15%, transparent);
  }
  #process .process-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, #F7F2ED 15%, transparent);
  }
  .process-steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    gap: 0.875rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.125rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process-steps::-webkit-scrollbar {
    display: none;
  }
  .process-step {
    flex: 0 0 clamp(270px, 82vw, 320px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .process-step {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #D6C2B0, #C48A92, #D8BE85);
  }
  .process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  .process-step:last-child {
    margin-bottom: 0;
  }
  .process-step-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0;
    z-index: 1;
  }
  .process-step:nth-child(odd) .process-step-card {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }
  .process-step:nth-child(even) .process-step-card {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

/* Testimonials — responsive */
.testimonial-card {
  background: #FAF8F5;
  border-radius: 1rem;
  padding: 1.375rem 1.5rem;
  box-shadow: 0 4px 24px rgba(61, 53, 47, 0.06);
  border: 1px solid rgba(214, 194, 176, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(61, 53, 47, 0.1);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testimonial-quote {
  color: rgba(61, 53, 47, 0.8);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .testimonial-card {
    padding: 1.75rem 2rem;
  }
  .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem 2.25rem;
  }
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(214, 194, 176, 0.35);
  margin-top: auto;
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(214, 194, 176, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  color: #C48A92;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  #temoignages .testimonials-scroll-wrap {
    margin-inline: -1.25rem;
  }
  #temoignages .testimonials-scroll-wrap::before,
  #temoignages .testimonials-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 1.75rem;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
  }
  #temoignages .testimonials-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FAF8F5 15%, transparent);
  }
  #temoignages .testimonials-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FAF8F5 15%, transparent);
  }
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    gap: 0.875rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.125rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid .testimonial-card {
    flex: 0 0 clamp(280px, 85vw, 340px);
    scroll-snap-align: start;
    min-height: 280px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
  .testimonials-grid .testimonial-card {
    min-height: 100%;
  }
}

/* Presentation — La passion du fait-main */
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .presentation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.presentation-media {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .presentation-media {
    max-width: none;
    margin-inline: 0;
  }
}
.presentation-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61, 53, 47, 0.1);
  aspect-ratio: 5 / 4;
}
@media (min-width: 640px) {
  .presentation-photo {
    aspect-ratio: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .presentation-photo {
    aspect-ratio: 3 / 4;
  }
}
.presentation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.presentation-media:hover .presentation-photo img {
  transform: scale(1.03);
}
.presentation-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 53, 47, 0.45) 0%, transparent 45%);
  pointer-events: none;
}
.presentation-photo-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 500;
  color: #3D352F;
  letter-spacing: 0.02em;
}
.presentation-photo-caption-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #C48A92;
  flex-shrink: 0;
}
.presentation-photo-accent {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  border: 1px solid rgba(216, 190, 133, 0.45);
  z-index: -1;
}
@media (min-width: 640px) {
  .presentation-photo-accent {
    bottom: -1.25rem;
    right: -1.25rem;
    width: 7rem;
    height: 7rem;
  }
}
@media (min-width: 1024px) {
  .presentation-photo-accent {
    width: 10rem;
    height: 10rem;
  }
}
.presentation-content {
  max-width: 32rem;
  margin-inline: auto;
  text-align: left;
}
@media (min-width: 1024px) {
  .presentation-content {
    max-width: none;
    margin-inline: 0;
  }
}
.presentation-eyebrow.deco-line::after {
  margin-inline: 0;
}
.presentation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 1.125rem 1rem;
  border-radius: 1rem;
  background: rgba(250, 248, 245, 0.85);
  border: 1px solid rgba(214, 194, 176, 0.35);
  box-shadow: 0 4px 24px rgba(61, 53, 47, 0.04);
}
@media (min-width: 640px) {
  .presentation-stats {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
  }
}
.presentation-stat {
  text-align: center;
}
@media (min-width: 1024px) {
  .presentation-stat {
    text-align: left;
  }
}
.presentation-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 500;
  color: #D8BE85;
}
@media (min-width: 640px) {
  .presentation-stat-value {
    font-size: 2.25rem;
  }
}
.presentation-stat-label {
  margin-top: 0.375rem;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(61, 53, 47, 0.5);
  line-height: 1.3;
}
@media (min-width: 640px) {
  .presentation-stat-label {
    font-size: 0.6875rem;
  }
}
.presentation-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .presentation-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.75rem;
  }
}

img {
  transition: opacity 0.4s ease;
}

.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(196, 138, 146, 0.3);
}

.deco-line::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #D8BE85, #C48A92);
  margin-top: 1rem;
}

/* Inner pages */
.page-hero {
  background: linear-gradient(180deg, #F5F0EB 0%, #FAF8F5 100%);
}

.gradient-hero-inner {
  background:
    linear-gradient(105deg, rgba(61, 53, 47, 0.88) 0%, rgba(61, 53, 47, 0.65) 45%, rgba(61, 53, 47, 0.35) 100%);
}

.page-hero-image {
  position: relative;
  min-height: 280px;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .page-hero-image {
    min-height: 340px;
    margin-bottom: 4rem;
  }
}
.page-hero-image > [aria-hidden="true"] {
  position: absolute;
  inset: 0;
}
.page-hero-image > [aria-hidden="true"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb a:hover {
  color: #C48A92;
}

.contact-map {
  min-height: 340px;
}
@media (min-width: 1024px) {
  .contact-map {
    min-height: 520px;
  }
}

.faq details summary {
  cursor: pointer;
  list-style: none;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details[open] summary .faq-icon {
  transform: rotate(45deg);
}

/* Sticky mobile call CTA */
.sticky-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  background: #3D352F;
  color: #FAF8F5;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(61, 53, 47, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.sticky-call:hover {
  background: #C48A92;
  transform: translateY(-2px);
}
@media (max-width: 1023px) {
  body { padding-bottom: 5rem; }
}

/* Seasonal promo banner */
.seasonal-banner {
  background: linear-gradient(90deg, rgba(196, 138, 146, 0.12) 0%, rgba(216, 190, 133, 0.15) 100%);
  border-bottom: 1px solid rgba(214, 194, 176, 0.4);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile / tablet burger menu */
.nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(214, 194, 176, 0.6);
  background: rgba(250, 248, 245, 0.9);
  color: #3D352F;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-burger:hover {
  background: #F5F0EB;
  border-color: rgba(196, 138, 146, 0.5);
}
.nav-burger[aria-expanded="true"] {
  background: #3D352F;
  border-color: #3D352F;
}
.nav-burger-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.nav-burger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger[aria-expanded="true"] .nav-burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-lines span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] .nav-burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-burger[aria-expanded="true"] {
  color: #FAF8F5;
}

.nav-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 4rem;
  z-index: 45;
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 640px) {
  .nav-drawer {
    top: 5rem;
  }
}
.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(61, 53, 47, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}
.nav-drawer-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FAF8F5;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  overflow-y: auto;
}
@media (min-width: 640px) {
  .nav-drawer-panel {
    padding: 2rem 2rem 2.5rem;
  }
}
.nav-drawer.is-open .nav-drawer-panel {
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.nav-drawer-links a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #3D352F;
  border-radius: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-drawer-links a:hover,
.nav-drawer-links a:focus-visible {
  background: rgba(214, 194, 176, 0.25);
  color: #C48A92;
  outline: none;
}
.nav-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: #3D352F;
  color: #FAF8F5;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.nav-drawer-cta:hover {
  background: #C48A92;
}
body.nav-open {
  overflow: hidden;
}
