/* ── TT Fors — Variable font (all weights) ── */
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-Variable.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-ExtraLight.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-Light.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-Light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-Regular.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-Medium.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url('../fonts/TT-Fors-Trial-Bold.woff2') format('woff2'),
       url('../fonts/TT-Fors-Trial-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.btn,
a {
    transition: .3s ease-in-out
}

ol,
p,
ul {
    margin-bottom: 20px
}

*,
figure {
    margin: 0
}

.btn-primary {
    background: var(--transparent)
}

*,
.header .navbar {
    padding: 0
}

.navbar-toggler .hamburger span:nth-child(2) {
    opacity: 0
}

:root {
    --white: #ffffff;
    --black: #000000;
    --transparent: #0000;
    /* Paleta v4 aplicada (paper limpio + ink café casi negro + hairlines gold) */
    --primary: #18130d;
    --secondary: rgba(24, 19, 13, 0.72);
    --light-secondary: rgba(24, 19, 13, 0.32);
    --gray: rgba(24, 19, 13, 0.52);
    --dark: #18130d;
    --light: #efe7d6;
    --muted: rgba(24, 19, 13, 0.52);
    --body: #f6f1e9;
    --line: rgba(207, 192, 165, 0.55);
    --line-light: rgba(207, 192, 165, 0.35);
    --font-primary: "Cormorant Garamond", Georgia, serif;
    --font-secondary: "Inter Tight", sans-serif;
    --font-tertiary: "Jost", Helvetica, sans-serif;
    --container: 1200px;
    --container-padding: 20px;
    --row-gutter-space: 24px;
    --a-color: var(--primary);
    --a-hover-color: #8c3a27; /* terracota v4 — acento en hover de links */
    --marker-color: var(--primary);
    --blockquote-border-color: var(--primary);
    --blockquote-bg: rgba(150, 150, 150, 0.05);
    --pre-bg: rgba(150, 150, 150, 0.05);
    --pre-color: var(--primary);
    --table-border: rgba(0, 0, 0, 0.2);
    --table-th-bg: var(--primary);
    --table-th-color: var(--white);
    --table-td-bg: var(--transparent);
    --table-td-color: var(--primary);
    --heading-color: var(--primary);
    --heading-font-family: 'Cormorant Garamond', Georgia, serif;
    --heading-mb: 30px;
    --heading-fw: 300;
    --h1-fs: 28px;
    --h1-lh: 120%;
    --h1-letter-spacing: 3.5px;
    --h2-fs: 25px;
    --h2-lh: 120%;
    --h2-letter-spacing: 2.5px;
    --h3-fs: 22px;
    --h3-lh: 125%;
    --h3-letter-spacing: 2.5px;
    --h4-fs: 20px;
    --h4-lh: 130%;
    --h4-letter-spacing: 2px;
    --h5-fs: 18px;
    --h5-lh: 135%;
    --h5-letter-spacing: 2px;
    --h6-fs: 16px;
    --h6-lh: 140%;
    --h6-letter-spacing: 2px;
    --ls-body: 0.1px;
    --ls-ui: 2px;
    --ls-nav-mobile: 5px;
    --ls-intro: 12px;
    --btn-fs: 12px;
    --btn-padding: 10px 25px 9px;
    --btn-ls: var(--ls-ui);
    --btn-color: var(--secondary)
}

@media (max-width: 767px) {
    :root {
        --btn-fs: 11px;
        --btn-padding: 11px 24px 9px;
    }
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-display: swap
}

body {
    color: var(--secondary);
    font-family: var(--font-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.15px;
    /* Body bg alineado con el footer (#18130d): evita que el overscroll en iOS
       (rubber-band al scrollear más allá del footer) revele un tono distinto.
       También previene el flicker beige al mostrar/ocultar la address bar. */
    background: #2E1A10;
    overflow-x: hidden;
}

/* html bg igualado al body por la misma razón: algunos navegadores móviles
   toman el bg de <html> para pintar el overscroll, no el de <body>. */
html {
    background: #2E1A10;
}

/* Ensure the main content area retains the cream background */
main {
    background-color: var(--body);
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 100vh; /* Ensure it covers the whole screen */
    letter-spacing: var(--ls-ui);
}

b,
strong {
    font-weight: 700 !important
}

ol li,
p,
pre code,
ul li {
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-size: inherit
}

a,
button,
input,
textarea {
    outline: 0
}

a {
    color: var(--a-color);
    word-break: break-word
}

a:hover {
    color: var(--a-hover-color)
}

p {
    color: inherit;
    font-style: inherit
}

.slider-counter .current,
th {
    font-weight: 600
}

ol,
ul {
    padding-left: 20px
}

ol ol,
ol ul,
ul,
ul ol {
    margin-top: 10px;
    margin-bottom: 10px
}

ol li,
ul li {
    color: inherit
}

ol li::marker,
ul li::marker {
    color: var(--marker-color)
}

ul li:has(> ol),
ul li:has(> ul) {
    list-style-type: none
}

blockquote {
    padding: 16px 16px 16px 24px;
    border-left: 5px solid var(--blockquote-border-color);
    margin-bottom: 20px;
    background-color: var(--blockquote-bg);
    font-size: inherit;
    line-height: inherit;
    color: inherit
}

pre {
    background-color: var(--pre-bg);
    padding: 16px;
    overflow: auto;
    font-family: inherit;
    border-radius: 12px;
    position: relative;
    color: var(--pre-color)
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: inherit
}

td,
th {
    border: 1px solid var(--table-border);
    padding: 8px 12px;
    text-align: left
}

th {
    background-color: var(--table-th-bg);
    font-size: inherit;
    color: var(--table-th-color)
}

td {
    background-color: var(--table-td-bg);
    font-weight: 400;
    font-size: inherit;
    color: var(--table-td-color)
}

.h1>*,
.h2>*,
.h3>*,
.h4>*,
.h5>*,
.h6>*,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font-family);
    font-weight: var(--heading-fw);
    margin-bottom: var(--heading-mb)
}

.h1>*,
h1 {
    font-size: var(--h1-fs);
    line-height: var(--h1-lh);
    letter-spacing: var(--h1-letter-spacing)
}

.h2>*,
h2 {
    font-size: var(--h2-fs);
    line-height: var(--h2-lh);
    letter-spacing: var(--h2-letter-spacing)
}

.h3>*,
h3 {
    font-size: var(--h3-fs);
    line-height: var(--h3-lh);
    letter-spacing: var(--h3-letter-spacing)
}

.h4>*,
h4 {
    font-size: var(--h4-fs);
    line-height: var(--h4-lh);
    letter-spacing: var(--h4-letter-spacing)
}

.h5>*,
h5 {
    font-size: var(--h5-fs);
    line-height: var(--h5-lh);
    letter-spacing: var(--h5-letter-spacing)
}

.h6>*,
h6 {
    font-size: var(--h6-fs);
    line-height: var(--h6-lh);
    letter-spacing: var(--h6-letter-spacing)
}

.btn,
.btn-sm {
    line-height: 1;
    align-items: center;
    gap: 10px;
    letter-spacing: 2.5px;
    font-size: var(--btn-fs);
    display: flex;
    text-decoration: none;
    font-family: 'TT Fors', Helvetica, sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase
}

hr {
    margin-block: 20px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

textarea {
    resize: none
}

.typography {
    padding-block: 120px
}

.typography img {
    max-width: 300px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px
}

.typography img.align-left {
    margin-right: 40px;
    float: left
}

.typography img.align-right {
    margin-left: 40px;
    float: right
}

.typography img.align-center {
    margin-inline: auto;
    display: block
}

.row {
    margin-inline: calc(var(--row-gutter-space)/ -2);
    row-gap: var(--row-gutter-space)
}

.row>* {
    padding-inline: calc(var(--row-gutter-space)/ 2)
}

.home-banner .homeBanner .swiper-slide *,
.img-cover * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.btn,
.btn-sm {
    width: fit-content
}

.btn,
.btn-sm {
    font-family: var(--font-tertiary);
    padding: var(--btn-padding);
    border-radius: 0;
    border: 1px solid;
    justify-content: center;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0;
    -ms-border-radius: 0px;
    -o-border-radius: 0;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.btn-sm:hover,
.btn:hover {
    transform: scale(.9) !important;
    -webkit-transform: scale(.9) !important;
    -moz-transform: scale(.9) !important;
    -ms-transform: scale(.9) !important;
    -o-transform: scale(.9) !important
}

.btn-primary {
    font-family: var(--font-tertiary);
    color: var(--btn-color);
    border: 0.75px solid var(--btn-color)
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
    color: var(--white) !important;
    background-color: var(--btn-color) !important;
    border-color: var(--btn-color) !important;
    box-shadow: none !important;
    outline: 0 !important
}

.btn-white {
    font-family: var(--font-tertiary);  
    color: #1a1817 !important;
    background-color: var(--white) !important;
    border-color: var(--white) !important;
}

.btn-white:is(:hover, :focus-visible, :active, .active) {
    color: var(--white) !important;
    background-color: transparent !important;
    border-color: var(--white) !important;
    box-shadow: none !important;
    outline: 0 !important
}

/* Hero: botón con blur (vidrio esmerilado) */
.home-banner .heading .action .btn-white {
    background-color: rgba(246, 241, 233, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgb(246, 241, 233) !important;
    border: 1px solid rgba(246, 241, 233, 0.35) !important;
}

.error-404 {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh
}

.error-404 .heading,
.testimonials .testimonials-card {
    text-align: center
}

.error-404 .action * {
    width: fit-content;
    margin: 0 auto
}

.container,
.container-fluid {
    padding-inline: var(--container-padding);
    margin-inline: auto
}

.swiper-linear .swiper-wrapper {
    transition-timing-function: linear !important
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    border-bottom: 0.95px solid rgba(246, 241, 233, 0.1);
    transition: box-shadow .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
    -webkit-transition: box-shadow .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
    -moz-transition: box-shadow .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
    -ms-transition: box-shadow .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
    -o-transition: box-shadow .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out
}

.header.scroll {
    background-color: rgba(246, 241, 233, 0.92);
    border-bottom-color: rgba(24, 19, 13, 0.12);
    box-shadow: 0 1px 8px rgba(24, 19, 13, 0.06);
}

.header .navbar .main-header {
    padding-block: 28px;
    z-index: 1
}

.header .navbar .container-fluid {
    padding-inline: 64px
}

.header .navbar-brand {
    padding: 0;
    margin: 0;
    color: rgb(246, 241, 233);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.25em
}

.footer-wrp .title * {
    letter-spacing: var(--ls-intro);
    line-height: 26.6px
}

.header.scroll .menu-btn-group span,
.header.scroll .navbar-brand {
    color: #18130d
}
.header:not(:has(.navbar-toggler.collapsed)) .menu-btn-group span,
.header:not(:has(.navbar-toggler.collapsed)) .navbar-brand {
    color: rgba(246, 241, 233, 0.85)
}
.header.scroll .hamburger span {
    background-color: var(--black);
}

.navbar-toggler {
    width: 48px;
    height: 16px;
    padding: 0;
    box-shadow: none !important;
    border: none
}

.navbar-toggler .hamburger {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: space-between
}

.navbar-toggler .hamburger-toggle {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.navbar-toggler .hamburger span {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    position: relative;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s
}

.header:not(:has(.navbar-toggler.collapsed)) .navbar-toggler .hamburger span {
    background-color: rgba(246, 241, 233, 0.85)
}

.navbar-toggler .hamburger span:first-child {
    top: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.navbar-toggler .hamburger span:last-child {
    margin: 0;
    top: -8px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg)
}

.navbar-toggler.collapsed .hamburger span {
    opacity: 1 !important;
    top: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important
}

.header .desktop-nav {
    display: none;
}

.header .menu-btn-group {
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 30px
}

.header .menu-btn-group span {
    color: var(--white);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-secondary)
}

.header .menu-btn-group:hover .normal,
.our-process .accordion-button::after {
    display: none
}

.header .menu-btn-group:hover .hover {
    display: block
}

.header .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    position: absolute;
    left: 0;
    background-color: #3A2415;
    width: 100%;
    height: 100vh !important;
    top: 120vh;
    transition: top .8s cubic-bezier(.65, 0, .35, 1) 1s, height !important;
    -webkit-transition: top .8s cubic-bezier(.65, 0, .35, 1) 1s, height !important;
    -moz-transition: top .8s cubic-bezier(.65, 0, .35, 1) 1s, height !important;
    -ms-transition: top .8s cubic-bezier(.65, 0, .35, 1) 1s, height !important;
    -o-transition: top .8s cubic-bezier(.65, 0, .35, 1) 1s, height !important
}

/* Mobile Menu - Header */
.mob-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    border-bottom: 0.75px solid rgba(255,255,255,0.1)
}

.mob-menu-logo {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(246, 241, 233, 0.9);
    text-decoration: none
}

.mob-menu-close {
    font-family: var(--font-primary);
    font-size: 26px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(246, 241, 233, 0.9);
    cursor: pointer;
    padding: 16px 20px;
    margin: -14px -16px;
    transition: opacity 0.3s ease
}

.mob-menu-close:hover {
    opacity: 0.5
}

/* Mobile Menu - Body */
.mob-menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 90px 30px 0
}

.mob-menu-item {
    border-top: 0.75px solid rgba(255,255,255,0.1);
    width: 100%
}

.mob-menu-item:last-child {
    border-bottom: 0.75px solid rgba(255,255,255,0.1)
}

.mob-menu-link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 22px 0;
    text-decoration: none;
    color: rgba(246, 241, 233, 0.9);
    transition: opacity 0.3s ease
}

.mob-menu-link:hover {
    opacity: 0.7;
    color: rgba(246, 241, 233, 0.9)
}

.mob-menu-link:active {
    opacity: 0.7
}

.mob-menu-num {
    font-family: var(--font-tertiary);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(246, 241, 233, 0.35)
}

.mob-menu-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: none;
    line-height: 1
}

/* Mobile Menu - Footer
   Sin labels: el formato del email (@) y del teléfono (+56) los auto-identifica.
   Cormorant haciendo el trabajo solo — editorial, silencioso, sin ruido textual. */
.mob-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 30px 80px;
    align-items: flex-start
}

.mob-menu-footer-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: rgba(246, 241, 233, 0.95);
    text-decoration: none;
    transition: color .2s ease
}

.mob-menu-footer-value:hover {
    color: rgba(246, 241, 233, 1)
}

.home-banner,
.home-banner .homeBanner,
.home-banner .homeBanner .swiper-slide {
    height: 100vh;
    width: 100%
}

.header:not(:has(.navbar-toggler.collapsed)) .navbar-collapse {
    top: 0;
    transition: top .8s cubic-bezier(.65, 0, .35, 1), height !important;
    -webkit-transition: top .8s cubic-bezier(.65, 0, .35, 1), height !important;
    -moz-transition: top .8s cubic-bezier(.65, 0, .35, 1), height !important;
    -ms-transition: top .8s cubic-bezier(.65, 0, .35, 1), height !important;
    -o-transition: top .8s cubic-bezier(.65, 0, .35, 1), height !important
}

.header .navbar-nav {
    margin: 0;
    padding: 0;
    width: fit-content
}

.common-slider-arrrows-block,
.header .nav-item {
    display: flex;
    align-items: center;
    justify-content: center
}

.header .nav-item .nav-link {
    color: var(--black);
    font-family: 'TT Fors', Helvetica, sans-serif;
    font-size: 28px;
    text-decoration: none;
    margin: 10px 0;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
    letter-spacing: var(--ls-nav-mobile);
    line-height: 54px;
    padding: 0;
    width: fit-content
}

.header .nav-item .nav-link::before {
    position: absolute;
    content: "";
    bottom: -3.75px;
    left: 0;
    height: .75px;
    width: 0%;
    background-color: var(--black);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out
}

.header .nav-item .nav-link.active::before,
.header .nav-item .nav-link:hover::before,
.our-process .acco-block {
    width: 100%
}

/* --- Antes y Después --- */

.antes-despues-section {
    padding: 150px 0 75px
}

.antes-despues-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.antes-despues-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.antes-despues-info {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center
}

.antes-despues-info .common-section-title {
    max-width: none;
    text-align: center;
    margin-bottom: 30px
}

.antes-despues-info .common-section-title .title * {
    font-size: 25px
}

.antes-despues-info .common-section-title .disc {
    max-width: 560px;
    text-align: center
}


/* Navigator below image */
.antes-despues-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px
}

.ad-controls-parent {
    width: 100%;
    max-width: 700px;
    margin-top: 40px
}

.ad-progressbar {
    position: relative;
    height: 2px;
    background-color: #eadacf;
    overflow: hidden
}

.ad-progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-secondary);
    transform-origin: left;
    transform: scaleX(0.333);
    transition: transform 0.6s ease
}

.ad-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    user-select: none
}

.ad-counter,
.ad-counter * {
    color: rgba(212, 174, 147, .38);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: var(--ls-ui)
}

.ad-counter-current {
    color: var(--light-secondary) !important
}

.ad-arrows-block {
    display: flex;
    align-items: center;
    gap: 0
}

.ad-arrow {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--body);
    border: none;
    padding: 0
}

.ad-arrow::after {
    content: "";
    display: block;
    aspect-ratio: 31/28;
    width: 31px;
    height: auto;
    opacity: 0.65
}

.ad-arrow-next::after {
    background: url('../images/svgs/next-icon.svg') no-repeat
}

.ad-arrow-prev::after {
    background: url('../images/svgs/prev-icon.svg') no-repeat
}

.antes-despues-viewport {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    cursor: col-resize
}

.ad-layer {
    position: absolute;
    inset: 0
}

.ad-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ad-layer--antes img {
    filter: grayscale(1)
}

.ad-layer--despues {
    clip-path: inset(0 0 0 50%);
    z-index: 2
}

.ad-wipe-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 14px;
    margin-left: -7px;
    background: transparent;
    z-index: 5;
    pointer-events: auto;
    cursor: grab
}

.ad-wipe-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: var(--body)
}

.ad-wipe-line.is-dragging {
    cursor: grabbing
}

.ad-wipe-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 30px;
    background: rgba(254, 251, 242, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    cursor: grab;
    z-index: 6;
    transition: box-shadow 0.2s ease
}

.ad-wipe-handle:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.16)
}

.ad-wipe-handle.is-dragging {
    cursor: grabbing;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2)
}

/* Hint de affordance: pulse del handle hasta primera interacción */
@keyframes ad-handle-pulse {
    0%   { transform: translate(-50%, -50%) scale(1);    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(103, 91, 80, 0.35); }
    50%  { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18), 0 0 0 14px rgba(103, 91, 80, 0); }
    100% { transform: translate(-50%, -50%) scale(1);    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(103, 91, 80, 0); }
}

#adViewport.is-hint-active .ad-wipe-handle {
    animation: ad-handle-pulse 1.8s ease-in-out infinite;
}

#adViewport.is-hint-active .ad-wipe-handle:hover,
#adViewport.is-hint-active .ad-wipe-handle.is-dragging {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    #adViewport.is-hint-active .ad-wipe-handle {
        animation: none;
    }
}

.ad-wipe-handle svg {
    width: 10px;
    height: 16px;
    color: #675B50;
    flex-shrink: 0
}

.ad-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    margin-bottom: 12px
}

.ad-label {
    font-family: var(--font-secondary);
    font-size: 11px;
    letter-spacing: var(--ls-ui);
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 400
}

@media (min-width: 992px) {
    .antes-despues-block {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 80px
    }

    .antes-despues-info {
        margin: 0
    }

    .antes-despues-info .common-section-title .disc * {
        font-size: 18px;
        line-height: 1.8
    }

    .antes-despues-viewport {
        max-width: 700px
    }

    .antes-despues-right {
        max-width: 560px;
        align-items: flex-end
    }

    .ad-wipe-handle {
        display: flex
    }
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 8;
    background: var(--body);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease
}

.page-transition.active {
    opacity: 1;
    pointer-events: all
}

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.intro-wipe {
    position: absolute;
    inset: 0;
    background: var(--body);
}

.intro-logo {
    position: relative;
    z-index: 1;
    font-size: 42px;
    letter-spacing: var(--ls-intro);
    text-transform: uppercase;
    color: #2c2a27;
    opacity: 0;
}

.slider-counter,
.slider-counter * {
    color: rgba(212, 174, 147, .38)
}

.intro-logo span {
    display: inline-block;
    opacity: 0
}

.intro-logo .reg {
    font-size: 18px;
    vertical-align: super;
    margin-left: 3px;
    letter-spacing: 0
}

.home-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 195px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 3
}

.home-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.home-banner .homeBanner {
    position: absolute;
    top: 0;
    left: 0
}

.home-banner .homeBanner .swiper-slide::before {
    background-image: linear-gradient(rgba(0, 0, 0, .30), rgba(0, 0, 0, .30));
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 1
}

.home-banner .homeBanner-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: fit-content;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%)
}

.home-banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.home-banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-inline: 6px;
    border: 1px solid var(--white);
    opacity: 1;
    background-color: var(--transparent)
}

.home-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--white) !important
}

.home-banner .heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

body:is(.intro-done) .home-banner .heading .title {
    opacity: 1
}

.home-banner .heading .title {
    opacity: 0;
    transition: opacity .4s ease-in-out .8s;
    -webkit-transition: opacity .4s ease-in-out .8s;
    -moz-transition: opacity .4s ease-in-out .8s;
    -ms-transition: opacity .4s ease-in-out .8s;
    -o-transition: opacity .4s ease-in-out .8s
}

.home-banner .heading .title * {
    color: rgb(246, 241, 233);
    text-transform: uppercase;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300
}

body:is(.intro-done) .home-banner .heading .action {
    opacity: 1
}

.home-banner .heading .action {
    opacity: 0;
    transition: opacity .4s ease-in-out 1.2s;
    -webkit-transition: opacity .4s ease-in-out 1.2s;
    -moz-transition: opacity .4s ease-in-out 1.2s;
    -ms-transition: opacity .4s ease-in-out 1.2s;
    -o-transition: opacity .4s ease-in-out 1.2s
}

.brxe-section {
    padding-top: 150px;
}

.brxe-img {
    width: 100%;
    height: 700px;
    aspect-ratio: 1/1
}

.about-founders-wrp .founder-img *,
.brxe-img *,
.instagram-wrp .ig-img-block * {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-founders {
    padding: 150px 0 75px
}

.about-founder-main{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-founders-wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px
}

.about-founders-wrp .founder-img {
    width: 100%;
    max-width: 700px;
    height: 100%;
    aspect-ratio: 4/5
}

.about-founders-wrp .founders-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.about-founders-wrp .founders-content .heading .title{
    text-align: center;
}

.about-founder-main .founder-btn {
    width: fit-content;
    margin: 60px auto 0;
}

.about-founders-wrp .founders-content .founder-btn .btn {
    padding: var(--btn-padding)
}

.about-founders-wrp .founders-content .heading .detail {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.about-founders-wrp .founders-content .detail * {
    line-height: 1.8;
    letter-spacing: 0.1px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.instagram {
    padding: 150px 0
}

.instagram .instagram-wrp {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto
}

.instagram-wrp .heading {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 67px;
    text-align: center
}

.instagram .instagram-wrp .heading .title {
    text-transform: uppercase
}

.common-section-title .disc :last-child,
.footer .f-bottom .f-copy-text *,
.our-process .accordion-body :last-child {
    margin-bottom: 0
}

.instagram-wrp .heading .detail * {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.8;
    letter-spacing: 0.1px;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.instagram-wrp .instagram-image-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.instagram-wrp .ig-img-block {
    width: 100%;
    height: 100%;
    aspect-ratio: 400/400;
    flex: 0 0 calc(33% - 12px)
}

.instagram-wrp .ig-img-block a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative
}

.instagram-wrp .ig-img-block a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1;
    opacity: 0;
    transition: .4s ease-in-out;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out
}


.instagram-wrp .ig-img-block a:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05)
}

.instagram-wrp .ig-img-block a:hover::before {
    opacity: 1
}

.instagram-wrp .ig-btn {
    width: fit-content;
    margin: 107px auto 0
}

.work {
    padding: 65px 0 40px
}

.contact,
.footer {
    padding: 80px 0 60px
}

.work .title {
    text-transform: uppercase;
    text-align: center
}

.work-slide-img {
    width: 100%;
    max-width: 352px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.work-slide-img * {
    width: auto;
    height: 100%
}

.work .workSwiper {
    pointer-events: none
}

.work .workSwiper .swiper-slide {
    width: 100%;
    max-width: 352px
}

.contact {
    background: linear-gradient(to bottom, #3A2415 0%, #2E1A10 100%)
}

.contact-wrp {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px
}

.contact-wrp .contact-left {
    width: 100%;
    max-width: 509px
}

.contact-wrp .contact-left .title {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 50px;
    text-align: center
}

.contact-wrp .contact-left .title * {
    font-size: var(--h1-fs);
    margin-bottom: 0;
    color: var(--light);
    text-transform: uppercase
}

.contact-wrp .contact-left .contact-list ul {
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px
}

.contact-wrp .contact-left .contact-list li {
    font-family: var(--font-tertiary);
    font-weight: 400;
    line-height: 170%;
    letter-spacing: var(--ls-body);
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 15px
}

.contact-wrp .contact-left .contact-list li a {
    text-decoration: none;
    letter-spacing: inherit;
    color: inherit
}

.contact-wrp .contact-left .contact-list li .icon {
    filter: brightness(0) saturate(100%) invert(61%) sepia(11%) saturate(543%) hue-rotate(343deg) brightness(93%) contrast(94%);
    -webkit-filter: brightness(0) saturate(100%) invert(61%) sepia(11%) saturate(543%) hue-rotate(343deg) brightness(93%) contrast(94%)
}

.contact-wrp .contact-right {
    width: 100%;
    height: 100%;
    background-color: rgba(74, 42, 26, 0.8);
    padding: 28px;
    border-radius: 0;
    border: 0.75px solid rgba(106, 74, 54, 0.45)
}

.contact-form {
    width: 100%;
}

.contact-form .row {
    margin: 0 -7px;
    row-gap: 14px;
}

.contact-form .row > * {
    padding: 0 7px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.contact-form .form-group label {
    font-family: var(--font-tertiary);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: var(--ls-ui);
    color: #E6D5C3;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
    color: rgba(200, 184, 168, 0.55);
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    background-color: rgba(62, 36, 23, 0.45);
    border: 0.75px solid rgba(106, 74, 54, 0.5);
    border-radius: 0;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 300;
    color: #F3E9DF;
    font-family: var(--font-tertiary);
    letter-spacing: var(--ls-body);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.contact-form .form-group select option {
    background-color: var(--dark);
    color: var(--body);
    padding: 10px;
}

.contact-form .form-group select optgroup {
    background-color: var(--dark);
    color: var(--light-secondary);
    font-weight: 600;
    padding-top: 12px;
    margin-top: 8px;
}

.contact-form .note-text{
    font-size: 13px;
    font-weight: 300;
    color: #A08F80;
    letter-spacing: var(--ls-body);
    font-family: var(--font-tertiary);
    font-style: italic;
    margin-top: -2px;
}

.contact-form .form-group textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url(../images/svgs/select-dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;

}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: rgba(138, 98, 72, 0.5);
    background-color: rgba(62, 36, 23, 0.6);
    box-shadow: 0 0 0 2px rgba(138, 98, 72, 0.12);
}

.contact-form .btn-primary-outline {
    font-family: var(--font-tertiary);
    font-size: var(--btn-fs);
    letter-spacing: var(--btn-ls);
    font-weight: 500;
    cursor: pointer;
    background-color: var(--light-secondary);
    border: 1px solid var(--light-secondary);
    color: var(--dark);
    padding: 14px 60px;
    height: auto;
}

.contact-form .btn-primary-outline:hover {
    background-color: transparent;
    color: var(--light-secondary);
}

.footer {
    min-height: 500px;
    position: relative;
    background-image: url(../images/thumb/footer-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45)
}

.footer-wrp {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: 30px
}

.footer-wrp .title * {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 40px
}

.footer-wrp .footer-menu ul li a:hover,
.slider-counter .current {
    color: var(--light-secondary)
}

.footer-wrp .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px
}

.footer-wrp .footer-menu ul li {
    font-family: var(--font-tertiary);
    font-size: 13px;
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: var(--ls-ui)
}

.footer-wrp .footer-menu ul li a {
    color: inherit;
    text-decoration: none
}

.footer .f-bottom {
    position: relative;
    border-top: 1px solid rgba(165, 145, 130, .2);
    padding: 60px 0 20px
}

.footer .f-bottom .f-copy-text {
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: var(--ls-body);
    text-align: center;
    color: var(--light)
}

.common-slider-next,
.common-slider-prev {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--body)
}

.common-slider-next::after,
.common-slider-prev::after {
    content: "";
    display: block;
    aspect-ratio: 31/28;
    width: 31px;
    height: auto;
    opacity: 0.65;
}

.common-slider-next::after {
    background: url('../images/svgs/next-icon.svg') no-repeat
}

.common-slider-prev::after {
    background: url('../images/svgs/prev-icon.svg') no-repeat
}

.common-progressbar {
    position: relative;
    margin-top: 20px;
    height: 2px !important;
    top: unset !important;
    left: unset !important;
    background-color: #eadacf
}

.common-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--light-secondary)
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
    user-select: none
}

.slider-counter * {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px
}

.slider-controls-parent {
    padding-inline: 7px
}

.common-section-title {
    max-width: 600px;
    margin-inline: auto;
    text-align: center
}

.common-section-title .title *,
.instagram-wrp .heading .title *,
.work .title * {
    font-size: 25px;
    font-weight: 300;
    letter-spacing: var(--h2-letter-spacing);
    color: var(--primary);
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    text-transform: uppercase
}

.common-section-title .disc *,
.custom-kitchens .custom-kitchens-card .text *,
.our-process .accordion-body * {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary)
}

/* Desktop: aumentar párrafos Cormorant Garamond en 1px (excepto testimonios) */
@media (min-width: 769px) {
    .common-section-title .disc *,
    .custom-kitchens .custom-kitchens-card .text *,
    .our-process .accordion-body * {
        font-size: 18px;
    }
}

.common-section-title .title em {
    font-style: italic
}

.common-section-title .disc em {
    font-style: normal;
    font-weight: 600;
}

.common-section-title .disc * {
    line-height: 1.8;
    letter-spacing: 0.1px;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center
}

.custom-kitchens {
    padding-block: 175px 50px
}

.custom-kitchens .common-section-title .title * {
    max-width: 420px;
    margin-inline: auto
}

.custom-kitchens .common-section-title {
    margin-bottom: 150px;
    padding-inline: 20px
}

.custom-kitchens .container-fluid {
    padding-inline: 80px
}

.custom-kitchens .custom-kitchens-card {
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.custom-kitchens .custom-kitchens-card::after {
    z-index: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30%;
    width: 100%;
    background: linear-gradient(180deg, rgba(96, 94, 94, 0), rgba(47, 46, 46, .8));
    user-select: none;
    pointer-events: none
}

.custom-kitchens .custom-kitchens-card .img-cover {
    aspect-ratio: 4/5;
    width: 100%;
    height: auto
}

.custom-kitchens .custom-kitchens-card .text {
    position: absolute;
    left: 25px;
    bottom: 20px;
    z-index: 3
}

.custom-kitchens .custom-kitchens-card .text * {
    font-family: 'TT Fors', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 2.5px
}

.custom-kitchens .custom-kitchens-card .text .card-subtitle {
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 8px;
    line-height: 1.4;
    letter-spacing: var(--ls-body);
    opacity: 0.9;
}

.our-process {
    padding-block: 50px 100px
}

.our-process .common-section-title {
    margin-bottom: 40px
}

.our-process .our-process-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    width: 100%;
    margin-inline: auto
}

.our-process .accordion-button {
    padding-block: 26px;
    cursor: pointer;
    background-color: var(--transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-inline: 20px
}

.our-process .accordion-button:focus {
    box-shadow: none
}

.our-process .accordion-button .title * {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: var(--ls-body);
    color: var(--primary);
    text-align: center;
    margin: 0;
    font-family: var(--font-primary);
    text-transform: capitalize
}

.our-process .accordion-button:not(.collapsed) {
    background-color: var(--transparent);
    box-shadow: none
}

.our-process .accordion-button:hover {
    background-color: #f9f6ee
}

.our-process .accordion-button:not(.collapsed) .plus-icon {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

.our-process .accordion-body {
    padding: 15px 20px 30px
}

.our-process .accordion-body * {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.8;
    color: var(--secondary);
    letter-spacing: 0.1px;
    text-align: left !important;
    margin-bottom: 30px
}

.our-process .acco-item {
    border-bottom: 1px solid rgba(150, 150, 150, .3)
}

.our-process .plus-icon {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s
}

.our-process .plus-icon * {
    color: var(--secondary);
    font-size: 28px;
    margin-bottom: 0
}

.our-process .action {
    margin-top: 80px
}

.our-process .common-section-title .title * {
    font-size: 25px
}

.testimonials {
    padding-block: 75px
}

.testimonials .testimonials-block {
    max-width: 600px;
    width: 100%;
    margin-inline: auto
}

.testimonials .testimonials-card .title * {
    font-family: var(--font-primary);
    color: var(--secondary);
    letter-spacing: 0.3px;
    font-size: 18px;
    line-height: 1.85;
    width: 100%;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic
}

.testimonials .testimonials-card .disc * {
    text-transform: capitalize;
    font-family: var(--font-primary);
    color: var(--secondary);
    letter-spacing: var(--ls-body);
    font-size: 14px;
    margin-top: 25px;
    font-weight: 500;
    margin-bottom: 0
}
/* Footer Margin Fix */
.footer, .contact-footer {
    margin-bottom: 0 !important;
}
.footer .f-bottom p, .contact-footer .contact-footer-bottom p {
    margin-bottom: 0 !important;
}

/* Thank You Overlay - Global */
.thank-you-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 251, 242, 0.95);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.thank-you-overlay.active {
  display: flex !important;
  animation: fadeIn 0.3s ease;
}

.thank-you-content {
  text-align: center;
  color: rgba(74, 69, 66, 0.85);
  padding: 60px 80px;
  max-width: 500px;
  background-color: #f5f0eb;
  border: 1px solid #d4c4b8;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(165, 145, 130, 0.2);
}

.thank-you-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 400;
  color: rgba(74, 69, 66, 0.85);
  letter-spacing: var(--ls-body);
}

.thank-you-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--secondary);
  letter-spacing: 0.1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════════
   FOOTER OSCURO (Version B)
   ══════════════════════════════════════ */
.footer-dark {
    background: #2E1A10;
    color: rgba(246, 241, 233, 0.6);
    padding: 0 24px 24px;
}
.footer-dark__inner::before {
    content: '';
    display: block;
    height: 0.95px;
    background: rgba(246, 241, 233, 0.15);
    margin-bottom: 40px;
}
.footer-dark__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-dark__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-bottom: 32px;
}
@media (max-width: 767px) {
    .footer-dark__item:nth-child(2n) {
        padding-left: 28px;
    }
}
.footer-dark__label {
    display: block;
    font-family: var(--font-tertiary);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(246, 241, 233, 0.6);
    margin-bottom: 8px;
}
.footer-dark__value {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(246, 241, 233, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-dark__value:hover {
    color: rgba(246, 241, 233, 1);
}
.footer-dark__divider {
    height: 0.95px;
    background: rgba(246, 241, 233, 0.15);
    margin-bottom: 24px;
}
.footer-dark__copy {
    font-family: var(--font-tertiary);
    font-size: 12px;
    color: rgba(246, 241, 233, 0.35);
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .footer-dark { padding: 48px 48px 24px; }
    .footer-dark__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
@media (min-width: 1024px) {
    .footer-dark { padding: 56px 64px 32px; }
}

/* ══════════════════════════════════════
   ANTES/DESPUÉS — Selector de proyectos
   ══════════════════════════════════════ */
.ad-selector-btn {
    font-family: var(--font-tertiary);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 0.95px solid var(--line);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.ad-selector-btn:hover {
    background: rgba(24, 19, 13, 0.05);
}
.ad-selector-btn.is-active {
    color: var(--dark);
    border-color: var(--dark);
    background: rgba(24, 19, 13, 0.07);
}

/* ════════════════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO — v10 (nuevo diseño editorial)
   Reemplaza el form .contact-form anterior cuando se usa .cc-form-wrap
   ════════════════════════════════════════════════════════════════════ */

.cc-form-wrap {
  /* Gradient unificado con el sistema: matchea menú móvil arriba (#241d15)
     y se funde con el footer oscuro abajo (#18130d). Mismo gradient que /contacto/. */
  background: linear-gradient(to bottom, #3A2415 0%, #2E1A10 100%);
  padding: 100px 32px 120px;
  font-family: "Cormorant Garamond", serif;
}

.cc-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.cc-form-intro {
  padding-top: 20px;
}

.cc-rule {
  width: 60px;
  height: 1px;
  background: #a59182;
  margin-bottom: 24px;
}

.cc-form-title {
  /* Tipografía alineada al sistema de títulos de sección
     (peso 300 + letter-spacing 2.5px como Instagram / El Estudio),
     pero conservando 38px porque actúa como CTA de cierre. */
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: var(--h2-letter-spacing);
  color: #f2ead9;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.cc-form-sub {
  /* Alineado al sistema tipográfico de los párrafos de sección:
     mismo line-height (1.75) y letter-spacing (0.1px) que .instagram-wrp .heading .detail.
     Mantiene italic como acento editorial del formulario. */
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1px;
  color: #c9b99f;
  font-style: italic;
  max-width: 360px;
  margin: 0;
}

.cc-card {
  background: #f2ead9;
  padding: 48px 44px;
  border-radius: 2px;
  position: relative;
}

.cc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.cc-field {
  display: flex;
  flex-direction: column;
}

.cc-field.full {
  grid-column: 1 / -1;
}

.cc-label {
  font-family: "Jost", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b5744;
  margin-bottom: 10px;
}

.cc-label .req {
  color: #a59182;
  margin-left: 3px;
}

.cc-label .cc-optional {
  color: #a59182;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: none;
  margin-left: 3px;
  opacity: 0.85;
}

.cc-input,
.cc-select,
.cc-textarea {
  width: 100%;
  background: #fefbf2;
  border: none;
  border-bottom: 1px solid #c9b99f;
  /* padding horizontal 16px = mismo del textarea,
     para que el placeholder no quede pegado al borde izquierdo */
  padding: 12px 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  color: #3a2b20;
  border-radius: 0;
  outline: none;
  transition: border-color .25s ease;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

.cc-input::placeholder,
.cc-textarea::placeholder {
  color: #a59182;
  font-style: italic;
  opacity: .75;
}

/* Focus: el marco completo se vuelve oscuro (sin línea externa adicional).
   Usamos box-shadow inset en vez de outline para NO agregar píxeles por fuera
   del campo — solo el marco mismo cambia de color. */
.cc-input:focus,
.cc-select:focus,
.cc-textarea:focus {
  outline: none;
  border-color: #3a2b20;
  border-bottom-color: #3a2b20;
  box-shadow: inset 0 0 0 1px #3a2b20;
}

.cc-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236b5744' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 28px;
  cursor: pointer;
}

.cc-textarea {
  /* Alto mayor: invitamos al usuario a contar más detalle de su cocina */
  min-height: 200px;
  /* Interlineado más compacto para densidad de escritura (default Cormorant ~1.6) */
  line-height: 1.35;
  resize: vertical;
  border: 1px solid #c9b99f;
  padding: 14px 16px;
  background: #fefbf2;
}

.cc-textarea:focus {
  border-color: #3a2b20;
}

.cc-helper {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: #8a7660;
  margin-top: 8px;
}

.cc-submit {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 52px;
  /* Alineado al sistema: mismo tono que el top del wrap y el menú móvil */
  background: #3A2415;
  color: #f2ead9;
  border: none;
  font-family: "Jost", "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background .3s ease;
}

.cc-submit:hover {
  /* Hover va al tono más oscuro del sistema (matchea el footer) */
  background: #2E1A10;
}

.cc-privacy {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-style: italic;
  color: #8a7660;
  line-height: 1.6;
  margin: 20px 0 0;
  letter-spacing: 0.2px;
}

.cc-privacy a {
  color: #6b5744;
  text-decoration: underline;
}

.cc-submit-promise {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: #241d15;
  line-height: 1.5;
  margin: 16px 0 0;
  letter-spacing: 0.2px;
}

/* Contacto alternativo — WhatsApp abajo del formulario */
.cc-alt-contact {
  grid-column: 1 / -1;
  text-align: center;
  margin: 32px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: #c9b99f;
}

.cc-alt-contact a {
  color: #f2ead9;
  border-bottom: 1px solid #a59182;
  text-decoration: none;
  font-style: normal;
  padding-bottom: 2px;
  margin-left: 6px;
  transition: border-color .2s ease;
}

.cc-alt-contact a:hover {
  border-bottom-color: #f2ead9;
}

/* ============================================
   OVERRIDES — /contacto/ (body.contact-page)
   El formulario en esta página dedicada usa variante clara
   (paleta editorial "página de trabajo" vs. la variante oscura
   de cierre que se usa en home). Home queda intacto.
   ============================================ */
.contact-page .cc-form-wrap {
  /* paper limpio v4 (--body), para que la card beige cálida #f2ead9 flote */
  background: #f6f1e9;
}

.contact-page .cc-form-title {
  color: #241d15;
}

.contact-page .cc-form-sub {
  color: rgba(24, 19, 13, 0.62);
}

.contact-page .cc-rule {
  background: rgba(24, 19, 13, 0.28);
}

.contact-page .cc-card {
  /* sombra editorial sutil para enfatizar la card como "hoja flotando" */
  box-shadow: 0 2px 24px rgba(24, 19, 13, 0.08);
}

/* ============================================
   CONTACTO DIRECTO — solo en /contacto/
   (bypass editorial debajo del formulario)
   Usa la misma paleta oscura del form-wrap para continuidad.
   ============================================ */
.cc-direct-contact {
  background: #2E1A10;
  padding: 80px 40px 120px;
  font-family: "Cormorant Garamond", serif;
}

.cc-direct-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cc-direct-contact .cc-rule {
  background: #a59182;
  margin-bottom: 28px;
}

.cc-direct-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: var(--h2-letter-spacing);
  color: #f2ead9;
  text-transform: uppercase;
  /* 48px = espacio completo al grid de links (antes había un subtítulo debajo) */
  margin: 0 0 48px;
}

.cc-direct-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.75;
  color: #c9b99f;
  font-style: italic;
  max-width: 480px;
  margin: 0 0 48px;
  letter-spacing: 0.1px;
}

.cc-direct-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 60px;
  max-width: 720px;
}

.cc-direct-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  border-top: 1px solid rgba(165,145,130,0.28);
  padding-top: 16px;
  transition: border-top-color .25s ease;
}

.cc-direct-link:hover {
  border-top-color: #f2ead9;
}

.cc-direct-link--static {
  cursor: default;
}

.cc-direct-link--static:hover {
  border-top-color: rgba(165,145,130,0.28);
}

.cc-direct-label {
  font-family: "Jost", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a59182;
}

.cc-direct-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #f2ead9;
  letter-spacing: 0.3px;
}

/* ============================================
   MOBILE — TABLET Y PHONES (≤ 820px)
   ============================================ */
@media (max-width: 820px) {
  .cc-form-wrap {
    /* padding lateral generoso: tarjeta enmarcada en el café para continuidad con el footer */
    padding: 60px 39px 70px;
  }
  .cc-form-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cc-form-intro {
    /* intro alineado con las etiquetas internas de la tarjeta (card-padding = 26px) */
    padding: 0 26px;
    text-align: left;
  }
  .cc-card {
    padding: 36px 26px;
    /* sombra sutil para reforzar el efecto "hoja flotando" */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  }
  /* En tablet mantenemos look editorial pero con aire lateral.
     font-size 18px para consistencia con párrafos del sistema. */
  .cc-input,
  .cc-select {
    font-size: 18px;
    padding: 12px 10px;
  }
  .cc-textarea {
    font-size: 18px;
  }
  .cc-select {
    background-position: right 10px center;
    padding-right: 34px;
  }
  .cc-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }
  .cc-form-title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 1.5px;
  }
  .cc-form-sub {
    /* 18px para match con el resto de párrafos de sección */
    font-size: 18px;
    max-width: 100%;
  }
  .cc-alt-contact {
    padding: 0 8px;
  }

  /* Contacto directo (/contacto/) — mobile */
  .cc-direct-contact {
    padding: 60px 20px 80px;
  }
  .cc-direct-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
  .cc-direct-sub {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .cc-direct-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cc-direct-value {
    font-size: 18px;
  }
}

/* ============================================
   MOBILE — SOLO PHONES (≤ 480px)
   Ajustes finos para target 45-60 años
   ============================================ */
@media (max-width: 480px) {
  .cc-form-wrap {
    /* padding lateral generoso: la tarjeta crema queda enmarcada en el café */
    padding: 50px 32px 60px;
  }
  .cc-form-intro {
    /* título alineado con las etiquetas internas de la tarjeta (card-padding = 22px) */
    padding: 0 22px;
  }
  .cc-card {
    padding: 32px 22px;
    /* sombra más marcada: refuerza el efecto "tarjeta contenida en el marco oscuro" */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  }
  .cc-alt-contact {
    padding: 0 22px;
  }
  .cc-form-title {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .cc-form-sub {
    /* 18px para match con el resto de párrafos de sección del home */
    font-size: 18px;
    /* line-height 1.75 alineado al sistema de párrafos de sección (EB Garamond en móvil) */
    line-height: 1.75;
  }

  .cc-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  /* font-size: 18px → consistencia con párrafos de sección (target 45-60).
     Cualquier valor ≥16px previene el zoom automático de iOS al enfocar inputs.
     padding lateral 12px para que el placeholder no quede pegado al borde */
  .cc-input,
  .cc-select {
    font-size: 18px;
    padding: 14px 12px;
    min-height: 52px;
  }
  .cc-textarea {
    font-size: 18px;
    /* Alto generoso también en móvil: mismo criterio que desktop */
    min-height: 170px;
    line-height: 1.35;
    padding: 14px 14px;
  }
  .cc-select {
    background-position: right 10px center;
    padding-right: 36px;
  }

  .cc-helper {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Botón full-width en mobile */
  .cc-submit {
    width: 100%;
    padding: 18px 20px;
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .cc-row {
    gap: 20px;
    margin-bottom: 20px;
  }

  .cc-alt-contact {
    font-size: 15px;
    margin-top: 28px;
  }
}

/* ============================================
   ACCESSIBILITY — focus visible
   Accesibilidad para teclado: el mismo box-shadow oscuro del :focus
   (definido arriba) ya provee un indicador visible. No agregamos outline
   externo porque el usuario prefiere que solo el marco se oscurezca.
   ============================================ */
.cc-input:focus-visible,
.cc-select:focus-visible,
.cc-textarea:focus-visible {
  outline: none;
}
