/* ═══════════════════════════════════════════
    CSS CUSTOM PROPERTIES — PASTEL PALETTE
═══════════════════════════════════════════ */
:root {
    --cream: #FAF7F2;
    --blush: #EDD5C8;
    --dusty-rose: #D4A5A0;
    --sage: #B8C9B8;
    --sage-dark: #8FA98F;
    --stone: #9E9189;
    --navy: #3B4A5A;
    --navy-light: #4E6070;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-mid: #5A5A5A;
    --text-light: #8A8A8A;
    --border: rgba(180, 160, 150, 0.25);

    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Jost', 'Helvetica Neue', sans-serif;

    --radius-sm: 4px;
    --radius: 10px;
    --radius-lg: 20px;

    --shadow-soft: 0 4px 30px rgba(60, 40, 30, 0.08);
    --shadow-card: 0 8px 40px rgba(60, 40, 30, 0.10);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
    RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════
    SKIP LINK (ACCESSIBILITY)
═══════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* ═══════════════════════════════════════════
    NAVIGATION
═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 80px);
    height: 72px;
    background: rgba(250, 247, 242, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav.scrolled {
    height: 62px;
    background: rgba(250, 247, 242, 0.97);
    box-shadow: var(--shadow-soft);
}

a.nav__brand {
  text-decoration: none;
}

.nav__brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav__brand-name {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav__brand-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    transition: color 0.25s;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dusty-rose);
    transition: width 0.3s ease;
}

.nav__links a:hover {
    color: var(--navy);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    background: var(--navy);
    color: var(--white) !important;
    border-radius: 40px;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
    transition: var(--transition) !important;
}

.nav__cta:hover {
    background: var(--navy-light) !important;
    transform: translateY(-1px);
}

.nav__cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--stone);
    cursor: pointer;
}

/* ═══════════════════════════════════════════
    HERO — centrado, editorial, sin imagen
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px clamp(24px, 8vw, 140px) 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* fondo con capas de gradiente y decoración geométrica */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(237, 213, 200, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(184, 201, 184, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(212, 165, 160, 0.15) 0%, transparent 50%),
    linear-gradient(175deg, #FAF7F2 0%, #F3EAE4 55%, #EDE4DC 100%);
}

/* líneas decorativas diagonales tipo pergamino */
.hero__lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__lines svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* círculo grande de fondo, sutil */
.hero__circle {
    position: absolute;
    width: min(640px, 90vw);
    height: min(640px, 90vw);
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 160, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    z-index: 0;
}

.hero__circle::before {
    content: '';
    position: absolute;
    inset: 32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 160, 0.10);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--dusty-rose);
    margin-bottom: 28px;
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--dusty-rose);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--dusty-rose);
}

/* divisor ornamental */
.hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px auto;
}

.hero__ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dusty-rose));
}

.hero__ornament-line:last-child {
    background: linear-gradient(90deg, var(--dusty-rose), transparent);
}

.hero__ornament-diamond {
    width: 6px;
    height: 6px;
    background: var(--dusty-rose);
    transform: rotate(45deg);
}

.hero__subtitle {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--stone);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero__credential {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 40px;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A6A30;
    margin: 28px 0 20px;
}

.hero__credential svg {
    flex-shrink: 0;
}

.hero__desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* mini stats row dentro del hero */
.hero__mini-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid rgba(180, 160, 150, 0.2);
    padding-top: 36px;
    flex-wrap: wrap;
}

.hero__mini-stat {
    padding: 0 clamp(20px, 4vw, 52px);
    text-align: center;
    position: relative;
}

.hero__mini-stat+.hero__mini-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(180, 160, 150, 0.25);
}

.hero__mini-stat-num {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
}

.hero__mini-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 5px;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero__scroll-text {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--stone), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
    opacity: 0.4;
    transform: scaleY(1);
    }

    50% {
    opacity: 1;
    transform: scaleY(1.1);
    }
}

/* ═══════════════════════════════════════════
    BUTTONS (global)
═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 14px 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 74, 90, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid rgba(59, 74, 90, 0.4);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}


.section {
    padding: clamp(70px, 10vw, 120px) clamp(24px, 5vw, 80px);
}

.section--alt {
    background: #F2EDE8;
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dusty-rose);
    margin-bottom: 14px;
}

.section__eyebrow::before,
.section__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--dusty-rose);
}

.section__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section__title em {
    font-style: italic;
    color: var(--dusty-rose);
}

.section__desc {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--blush), var(--dusty-rose));
    margin: 0 auto;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
    ABOUT
═══════════════════════════════════════════ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about__image-col { position: relative; }

/* ── mosaico 5 fotos ── */
.about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px;
  position: relative;
}

.mosaic__cell {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, #DCCCBD 0%, #C9B5A4 60%, #B8A594 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.mosaic__cell:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.mosaic__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  min-height: inherit;
}
.mosaic__placeholder svg { opacity: 0.35; }
.mosaic__placeholder span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.mosaic__cell--tl {
  min-height: 130px;
  border-radius: var(--radius) var(--radius) var(--radius-sm) var(--radius);
  background: linear-gradient(145deg, #D4B5AD 0%, #C8A49C 100%);
}
.mosaic__cell--tr {
  min-height: 130px;
  border-radius: var(--radius) var(--radius) var(--radius) var(--radius-sm);
  background: linear-gradient(145deg, #BFC9BF 0%, #A8BCA8 100%);
}
.mosaic__cell--center {
  grid-column: 1 / -1;
  min-height: 200px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #CABAAD 0%, #B8A595 50%, #A99280 100%);
  box-shadow: var(--shadow-card);
}
.mosaic__cell--bl {
  min-height: 130px;
  border-radius: var(--radius-sm) var(--radius) var(--radius) var(--radius);
  background: linear-gradient(145deg, #D4C4B4 0%, #C2AF9C 100%);
}
.mosaic__cell--br {
  min-height: 130px;
  border-radius: var(--radius) var(--radius-sm) var(--radius) var(--radius);
  background: linear-gradient(145deg, #B8C4B8 0%, #A4B4A4 100%);
}

.about__accent-block {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 148px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-card);
}
.about__accent-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.about__accent-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}


.about__text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about__text strong {
    color: var(--navy);
    font-weight: 500;
}

.about__credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__credential-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.about__credential-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #EDD5C8, #D4A5A0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__credential-text {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.about__credential-text strong {
    color: var(--navy);
    font-weight: 500;
}


/* ═══════════════════════════════════════════
    SERVICES CAROUSEL
═══════════════════════════════════════════ */
.services__carousel-section {
    overflow: hidden;
    padding-bottom: clamp(60px, 8vw, 100px);
}

.services__carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* track + overflow clip */
.carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: grab;
    user-select: none;
}

.carousel__viewport:active {
    cursor: grabbing;
}

.carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* each card — fixed width so 3 show on desktop */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blush), var(--dusty-rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #EDD5C8 0%, #E0C4BC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(212, 165, 160, 0.12);
    color: var(--dusty-rose);
    border: 1px solid rgba(212, 165, 160, 0.3);
    font-weight: 500;
    text-transform: uppercase;
}

/* prev / next arrows */
.carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(59, 74, 90, 0.2);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.carousel__btn:hover:not(:disabled) {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.05);
}

.carousel__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* dots */
.carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.carousel__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(212, 165, 160, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel__dot.active {
    background: var(--dusty-rose);
    width: 22px;
    border-radius: 4px;
}

.carousel__dot:hover:not(.active) {
    background: rgba(212, 165, 160, 0.7);
}

/* progress bar */
.carousel__progress {
    height: 2px;
    background: rgba(212, 165, 160, 0.15);
    border-radius: 2px;
    margin-top: 28px;
    overflow: hidden;
}

.carousel__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blush), var(--dusty-rose));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* responsive card widths */
@media (max-width: 900px) {
    .service-card {
    flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 580px) {
    .service-card {
    flex: 0 0 100%;
    }
}


.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process__steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blush), var(--dusty-rose), var(--blush), transparent);
}

.process__step {
    text-align: center;
    padding: 0 16px 0;
    position: relative;
}

.process__step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--dusty-rose);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--cream);
    transition: var(--transition);
}

.process__step:hover .process__step-num {
    background: var(--dusty-rose);
    color: var(--white);
    border-color: var(--dusty-rose);
}

.process__step-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.process__step-desc {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.7;
}








/* ═══════════════════════════════════════════
    CONTACT — full-bleed dark panel layout
═══════════════════════════════════════════ */
.section--contact {
    background: var(--navy);
    padding: clamp(70px, 10vw, 120px) 0 0;
}

.contact__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto clamp(48px, 7vw, 80px);
    padding: 0 clamp(24px, 5vw, 80px);
}

.contact__header .section__eyebrow {
    color: var(--blush);
}

.contact__header .section__eyebrow::before,
.contact__header .section__eyebrow::after {
    background: var(--blush);
}

.contact__header .section__title {
    color: var(--white);
}

.contact__header .section__title em {
    color: var(--blush);
}

.contact__header .section__desc {
    color: rgba(255, 255, 255, 0.55);
}

.contact__body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

/* — Left info column — */
.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact__info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(237, 213, 200, 0.12);
    border: 1px solid rgba(237, 213, 200, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__info-label {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.contact__info-value a {
    color: var(--blush);
}

.contact__info-value a:hover {
    opacity: 0.8;
}

.contact__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-top: 8px;
    transition: var(--transition);
}

.contact__wa-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* — Right form panel — */
.contact__form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(237, 213, 200, 0.14);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: clamp(32px, 4vw, 52px);
    backdrop-filter: blur(8px);
}

.contact__form-title {
    font-family: var(--ff-display);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.contact__form-title em {
    font-style: italic;
    color: var(--blush);
}

.contact__form-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}

/* Floating-label fields */
.field {
    position: relative;
    margin-bottom: 22px;
}

.field label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.06em;
    pointer-events: none;
    transition: all 0.22s ease;
    background: transparent;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--ff-body);
    font-size: 0.92rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 213, 200, 0.18);
    border-radius: var(--radius);
    padding: 22px 16px 8px;
    outline: none;
    resize: none;
    transition: border-color 0.25s, background 0.25s;

    select {
    appearance: none;
    -webkit-appearance: none;
    }
}

.field select option {
    background: var(--navy);
    color: var(--white);
}

.field textarea {
    height: 110px;
    padding-top: 24px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(212, 165, 160, 0.6);
    background: rgba(255, 255, 255, 0.07);
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field select:focus+label,
.field select.has-value+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
    top: 7px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--blush);
}

/* For select we toggle class via JS */
.field--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-status {
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: var(--radius);
    font-size: 0.83rem;
    display: none;
}

.form-status.success {
    background: rgba(143, 169, 143, 0.15);
    border: 1px solid rgba(143, 169, 143, 0.35);
    color: #A8D4A8;
    display: block;
}

.form-status.error {
    background: rgba(212, 100, 80, 0.1);
    border: 1px solid rgba(212, 100, 80, 0.3);
    color: #F0A0A0;
    display: block;
}

.btn--form {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, #C4918C 100%);
    color: var(--white);
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(212, 165, 160, 0.25);
}

.btn--form:hover {
    background: linear-gradient(135deg, #C4918C 0%, var(--dusty-rose) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 165, 160, 0.38);
}

/* ═══════════════════════════════════════════
    FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 80px) 28px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer__brand-name {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.footer__brand-desc {
    font-size: 0.83rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--blush);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════
    FLOATING WHATSAPP
═══════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.wa-float:hover .wa-float__tooltip {
    opacity: 1;
}

.wa-float__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
    0% {
    transform: scale(1);
    opacity: 0.6;
    }

    100% {
    transform: scale(1.7);
    opacity: 0;
    }
}

/* ═══════════════════════════════════════════
    ANIMATIONS
═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero {
    padding: 110px 24px 70px;
    }

    .hero__title {
    font-size: clamp(2.8rem, 8vw, 4rem);
    }

    .about__grid {
    grid-template-columns: 1fr;
    }

    .about__image-col { max-width: 420px; margin: 0 auto; }

    .about__accent-block { bottom: -14px; right: -10px; }
    .about__content {
        text-align: center;
    }

    .about__content .divider {
        margin: 20px auto;
    }

    .about__credential-item {
        text-align: left;
    }

    .contact__body {
    grid-template-columns: 1fr;
    }

    .contact__form-wrap {
    border-radius: var(--radius-lg);
    }

    .footer__inner {
    grid-template-columns: 1fr 1fr;
    }

    .process__steps::before {
    display: none;
    }
}

@media (max-width: 640px) {
    .nav__links {
    display: none;
    }

    .hamburger {
    display: flex;
    }

    .hero__mini-stats {
    gap: 8px;
    }

    .hero__mini-stat {
    padding: 0 clamp(12px, 3vw, 28px);
    }

    .field--row {
    grid-template-columns: 1fr;
    }

    .footer__inner {
    grid-template-columns: 1fr;
    }

    .footer__bottom {
    flex-direction: column;
    text-align: center;
    }
}

@media (max-width: 400px) {
    .hero__mini-stat+.hero__mini-stat::before {
    display: none;
    }
}