/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream-light:  #F6F4EF;
  --cream-mid:    #EEEBE5;
  --cream-dark:   #DDD8CE;
  --brown-deep:   #2D2520;
  --brown-mid:    #5C4A42;
  --brown-light:  #9E8880;
  --white:        #FDFCFA;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', system-ui, sans-serif;
  --transition:   0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream-light);
  color: var(--brown-deep);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.nav.scrolled {
  background: rgba(246,244,239,0.96);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  box-shadow: 0 1px 0 rgba(45,37,32,0.08);
}
.nav-logo {
  display: block;
  position: relative;
  width: 100px;
  height: 100px;
}
.nav-logo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo-light  { opacity: 1; }
.nav-logo-dark   { opacity: 0; }

.nav.scrolled .nav-logo-light { opacity: 0; }
.nav.scrolled .nav-logo-dark  { opacity: 1; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-self: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--brown-mid); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--brown-deep); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-cta {
  border-color: var(--brown-mid);
  color: var(--brown-mid);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--brown-deep);
  border-color: var(--white);
}
.nav.scrolled .nav-cta:hover {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.nav.scrolled .lang-toggle {
  border-color: rgba(45,37,32,0.25);
}
.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 12px;
  transition: all 0.35s ease;
  opacity: 0.35;
  transform: scale(0.85);
}
.lang-flag.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255,255,255,0.18);
}
.nav.scrolled .lang-flag.active {
  background: rgba(45,37,32,0.1);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-burger span { background: var(--brown-deep); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream-light);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.nav-mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 2rem;
  color: var(--cream-light);
  cursor: pointer;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg img { object-position: center 30%; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,14,10,0.15) 0%,
    rgba(20,14,10,0.05) 40%,
    rgba(20,14,10,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 72px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════ */
.intro-strip {
  background: #B8B0A2;
  padding: 80px 48px;
  text-align: center;
}
.intro-strip p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown-deep);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.intro-strip p span {
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--brown-deep);
  color: var(--brown-deep);
  transition: all 0.35s;
  margin-top: 36px;
}
.btn:hover {
  background: var(--brown-deep);
  color: var(--white);
}
.btn-light {
  border-color: var(--cream-light);
  color: var(--cream-light);
}
.btn-light:hover {
  background: var(--cream-light);
  color: var(--brown-deep);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  object-position: center 15%;
  transition: transform 8s ease;
}
.about-img:hover img { transform: scale(1.04); }

.about-content {
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  padding: 80px 72px 80px 80px;
}
.about-inner { max-width: 480px; }

.about-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.9;
  margin-top: 28px;
}
.about-text p + p { margin-top: 18px; }

.about-signature {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--brown-mid);
  margin-top: 40px;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 120px 48px;
  background: var(--cream-light);
}
.services-header {
  text-align: center;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  transition: transform var(--transition);
  object-position: center 20%;
}
.service-card:hover img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,14,10,0.75) 0%,
    rgba(20,14,10,0.1) 55%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.service-card:hover .service-overlay {
  background: linear-gradient(
    to top,
    rgba(20,14,10,0.85) 0%,
    rgba(20,14,10,0.3) 55%,
    rgba(20,14,10,0.05) 100%
  );
}
.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  z-index: 2;
}
.service-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.service-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.service-desc {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-desc {
  max-height: 120px;
  opacity: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  opacity: 0;
}
.service-link::after {
  content: '→';
  transition: transform 0.3s;
}
.service-card:hover .service-link:hover::after { transform: translateX(4px); }
.service-card:hover .service-link {
  max-height: 40px;
  opacity: 1;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════
   FEATURED SPLIT
═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  transition: transform 8s ease;
  object-position: center 25%;
}
.split-img:hover img { transform: scale(1.04); }

.split-content {
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 72px;
}
.split-inner { max-width: 440px; }
.split-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.85;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════
   PORTFOLIO GALLERY
═══════════════════════════════════════════ */
.portfolio {
  padding: 120px 48px;
  background: var(--cream-light);
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--cream-dark);
  background: transparent;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}

/* Masonry grid */
.gallery-grid {
  columns: 3;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  height: auto;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(20,14,10,0.25);
}
.gallery-item-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s;
  color: white;
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden { display: none; }

.gallery-more {
  text-align: center;
  margin-top: 56px;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,8,6,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: white; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: white; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  background: var(--brown-deep);
  padding: 120px 48px;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-header .section-label { color: var(--brown-light); }
.testimonials-header .section-heading { color: var(--cream-light); }

.testimonials-track-wrap {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 22px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 44px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--brown-light);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(246,244,239,0.8);
  line-height: 1.75;
}
.testimonial-author {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.testimonial-event {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(158,136,128,0.75);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active {
  background: var(--cream-light);
  width: 24px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   CTA FULL-WIDTH
═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { object-position: center 40%; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,0.52);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}
.cta-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-info {
  background: var(--cream-mid);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.85;
  margin-top: 24px;
  margin-bottom: 48px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.contact-item-val {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--brown-deep);
}
.contact-socials {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}
.contact-socials a {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.contact-socials a:hover {
  color: var(--brown-deep);
  border-color: var(--brown-deep);
}

.contact-form {
  background: var(--cream-light);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--brown-deep);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-mid);
}
.form-group textarea {
  resize: none;
  height: 100px;
}
.form-full { grid-column: 1 / -1; }
.form-submit {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--brown-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
}
.form-note {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--brown-light);
  margin-top: 16px;
}
.form-feedback {
  font-family: var(--sans);
  font-size: 0.82rem;
  margin-top: 16px;
  padding: 12px 16px;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(45,37,32,0.06);
  color: var(--brown-deep);
  border-left: 3px solid var(--brown-deep);
}
.form-feedback.error {
  display: block;
  background: rgba(180,60,60,0.06);
  color: #8B2020;
  border-left: 3px solid #B43C3C;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--brown-deep);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(246,244,239,0.35);
  letter-spacing: 0.1em;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,244,239,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream-light); }

/* ═══════════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 26px; height: 26px; fill: white; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .about, .contact { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 4/3; }
  .about-content { padding: 60px 40px; }
  .contact-info, .contact-form { padding: 72px 40px; }
  .split { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .hero-content { padding: 0 28px 56px; }
  .hero-scroll { right: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .intro-strip { padding: 60px 28px; }
  .services, .portfolio, .testimonials { padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
}
