:root {
    --bg: #000000;
    --panel: #090909;
    --panel-soft: #111111;
    --text: #ffffff;
    --muted: rgba(255,255,255,0.72);
    --soft: rgba(255,255,255,0.48);
    --line: rgba(255,255,255,0.16);
    --accent: #d9c6ad;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 700ms ease, visibility 700ms ease;
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-name {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.32em;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.82);
    animation: pulseText 1.8s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}

/* Prehome temporal para sitio en construcción */
.prehome-body {
    min-height: 100vh;
    overflow: hidden;
}

.prehome {
    position: relative;
    min-height: 100vh;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.prehome-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.34) 50%, rgba(0,0,0,0.72)),
                linear-gradient(0deg, rgba(0,0,0,0.66), rgba(0,0,0,0.12));
}

.prehome-card {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    text-align: center;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(217,198,173,0.32);
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 90px rgba(0,0,0,0.55);
}

.prehome-eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.72rem;
}

.prehome-card h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(3rem, 8vw, 6.2rem);
    line-height: 0.92;
}

.prehome-subtitle {
    margin: 26px auto 30px;
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.6;
}

.prehome-error {
    margin: 0 auto 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255,112,112,0.88);
    background: linear-gradient(135deg, rgba(130,24,24,0.62), rgba(255,255,255,0.045));
    color: #fff;
    line-height: 1.5;
}

.prehome-form {
    display: grid;
    gap: 12px;
}

.prehome-form label {
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-align: left;
}

.prehome-access-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.prehome-access-row input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(0,0,0,0.52);
    color: #fff;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.prehome-access-row input:focus {
    border-color: rgba(217,198,173,0.82);
    box-shadow: 0 0 0 3px rgba(217,198,173,0.10);
}

.prehome-access-row button {
    border: 1px solid rgba(217,198,173,0.72);
    background: var(--accent);
    color: #000;
    padding: 0 26px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease;
}

.prehome-access-row button:hover {
    background: #fff;
    transform: translateY(-1px);
}


.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    color: #fff;
    transition: background 300ms ease, padding 300ms ease, backdrop-filter 300ms ease;
}

.topbar.scrolled {
    background: rgba(0,0,0,0.62);
    backdrop-filter: blur(14px);
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand-mini {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.22em;
    font-size: 0.95rem;
    line-height: 1;
}

.lang-switch {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.56);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
}

.lang-btn {
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.56);
    cursor: pointer;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    padding: 6px 2px;
    transition: color 220ms ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: #fff;
}

.menu-toggle {
    width: 44px;
    height: 34px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    display: block;
    transition: transform 280ms ease, opacity 280ms ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(11px) scaleX(5.2);
    border-radius: 999px;
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-11px) scaleX(5.2);
    border-radius: 999px;
}

.overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
}

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

.overlay-menu-inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vh, 34px);
}

.overlay-menu a {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(1.45rem, 4vw, 4rem);
    color: rgba(255,255,255,0.78);
    transition: color 220ms ease, transform 220ms ease;
}

.overlay-menu a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.section {
    position: relative;
    padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.hero {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow,
.hero-slide,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transform: scale(1.018);
    transform-origin: center top;
    transition: opacity 1100ms ease, transform 4500ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-empty {
    background: radial-gradient(circle at center, #222, #000 70%);
}

.hero-shade {
    background: linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.24) 48%, rgba(0,0,0,0.62)),
                linear-gradient(0deg, rgba(0,0,0,0.48), rgba(0,0,0,0.10));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(100%, 1080px);
    padding: 0 22px;
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 400;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 300;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

h1 {
    font-size: clamp(3.2rem, 10vw, 9rem);
    line-height: 0.9;
}

h2 {
    font-size: clamp(2.1rem, 5vw, 5rem);
    line-height: 1;
}

h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem;
}

.hero-subtitle {
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255,255,255,0.80);
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.hero-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 38px;
}

.hero-links a {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.24);
    padding-bottom: 8px;
    transition: color 220ms ease, border-color 220ms ease;
}

.hero-links a:hover {
    color: #fff;
    border-color: #fff;
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 999px;
    z-index: 3;
}

.scroll-cue span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background: #fff;
    border-radius: 50%;
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translateY(18px); }
}

.section-heading {
    max-width: 860px;
    margin: 0 auto clamp(42px, 7vw, 88px);
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.8;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    max-width: 620px;
    margin: 24px auto 0;
}

.gallery-section {
    background: #000;
}

.masonry-grid {
    column-count: 4;
    column-gap: 18px;
    max-width: 1500px;
    margin: 0 auto;
}

.masonry-item {
    margin: 0 0 18px;
    break-inside: avoid;
    overflow: hidden;
    background: #111;
}

.masonry-item img {
    width: 100%;
    height: auto;
    transition: transform 800ms cubic-bezier(.16,1,.3,1), filter 800ms ease;
    filter: saturate(0.96) contrast(1.02);
}

.masonry-item:hover img {
    transform: scale(1.075);
    filter: saturate(1.04) contrast(1.06);
}

.brand-section {
    background: linear-gradient(180deg, #000 0%, #080808 100%);
}

.split-layout {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
    gap: clamp(96px, 10vw, 170px);
    align-items: start;
}

.brand-section .split-copy {
    min-width: 0;
}

.brand-section .service-cards {
    min-width: 0;
    position: relative;
    z-index: 2;
}

.split-copy h2 {
    max-width: 760px;
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(2.4rem, 4.45vw, 4.75rem);
    letter-spacing: 0.095em;
    line-height: 1.02;
}

.split-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.95;
    max-width: 720px;
}

.service-cards {
    display: grid;
    gap: 16px;
}

.service-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.035);
    padding: 28px;
    min-height: 170px;
    transition: border-color 250ms ease, transform 250ms ease, background 250ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,198,173,0.55);
    background: rgba(255,255,255,0.06);
}

.service-card span {
    display: block;
    color: var(--accent);
    letter-spacing: 0.2em;
    font-size: 0.74rem;
    margin-bottom: 22px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.backstage-section {
    background: #030303;
}

.backstage-grid {
    column-count: 3;
    max-width: 1180px;
}

.about-section {
    background: #050505;
}

.about-wrap {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
}

.about-photo {
    overflow: hidden;
    background: #111;
}

.about-photo img {
    width: 100%;
    height: auto;
    transition: transform 900ms ease;
}

.about-photo:hover img {
    transform: scale(1.04);
}

.about-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.95;
}

.contact-section {
    background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.contact-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(38px, 7vw, 90px);
    align-items: start;
}

.contact-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.9;
    font-size: 1.06rem;
}

.instagram-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(217,198,173,0.45);
    padding-bottom: 8px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 9px;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.035);
    color: #fff;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(217,198,173,0.7);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(217,198,173,0.08);
}

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

.contact-form button {
    border: 1px solid rgba(217,198,173,0.62);
    background: transparent;
    color: #fff;
    padding: 16px 22px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-form button:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.form-message {
    position: relative;
    padding: 20px 22px 20px 58px;
    border: 1px solid rgba(217,198,173,0.45);
    background: rgba(255,255,255,0.055);
    color: rgba(255,255,255,0.95);
    line-height: 1.55;
    font-size: 1rem;
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}

.form-message::before {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-ok {
    border-color: rgba(170, 220, 170, 0.70);
    background: linear-gradient(135deg, rgba(67,126,80,0.34), rgba(255,255,255,0.045));
}

.form-ok::before {
    content: "✓";
    color: #071107;
    background: #bfe7bf;
}

.form-error {
    border-color: rgba(255, 112, 112, 0.88);
    background: linear-gradient(135deg, rgba(130, 24, 24, 0.56), rgba(255,255,255,0.04));
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255,112,112,0.18), 0 22px 54px rgba(130,24,24,0.22);
}

.form-error::before {
    content: "!";
    color: #180000;
    background: #ff8d8d;
}

.site-footer {
    padding: 36px 20px;
    text-align: center;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 850ms ease, transform 850ms cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.instagram-link,
.menu-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.instagram-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.instagram-icon rect,
.instagram-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.instagram-link .instagram-icon {
    color: var(--accent);
}

.menu-instagram .instagram-icon {
    color: currentColor;
}

/* Modal de confirmación de contacto */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    animation: modalFadeIn 260ms ease forwards;
}

.contact-modal-overlay.closing {
    animation: modalFadeOut 260ms ease forwards;
}

.contact-modal {
    position: relative;
    width: min(100%, 480px);
    background: rgba(10,10,10,0.96);
    border: 1px solid rgba(217,198,173,0.72);
    box-shadow: 0 28px 80px rgba(0,0,0,0.68);
    padding: 44px 34px 34px;
    text-align: center;
    animation: modalPopIn 320ms cubic-bezier(.16,1,.3,1) forwards;
}

.contact-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.68);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 200ms ease, transform 200ms ease;
}

.contact-modal-close:hover {
    color: #fff;
    transform: scale(1.08);
}

.contact-modal-icon {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(217,198,173,0.82);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 300;
}

.contact-modal-eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.72rem;
}

.contact-modal h3 {
    margin: 0 0 16px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.contact-modal p {
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-modal-button {
    width: 100%;
    border: 1px solid rgba(217,198,173,0.82);
    background: var(--accent);
    color: #000;
    padding: 15px 22px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-modal-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

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

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

@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1180px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .split-copy h2 {
        max-width: 100%;
        font-size: clamp(2.4rem, 8vw, 5rem);
        letter-spacing: 0.105em;
    }
}

@media (max-width: 1100px) {
    .masonry-grid {
        column-count: 3;
    }
}

/* Fix móvil: evita que Gallery/Backstage queden invisibles por IntersectionObserver/lazy loading */
@media (max-width: 860px) {
    .topbar {
        padding: 18px 18px;
    }

    .lang-switch {
        position: static;
        transform: none;
        margin-left: auto;
        margin-right: 18px;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(0,0,0,0.74), rgba(0,0,0,0.24));
    }

    .hero-links {
        gap: 13px 18px;
    }

    .split-layout,
    .about-wrap,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .masonry-grid,
    .backstage-grid {
        column-count: 2;
        column-gap: 12px;
    }

    .masonry-item {
        margin-bottom: 12px;
    }

    .masonry-grid.reveal,
    .backstage-grid.reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .masonry-grid.reveal .masonry-item,
    .backstage-grid.reveal .masonry-item {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .masonry-item img {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 560px) {
    .brand-mini {
        font-size: 0.8rem;
    }

    .lang-switch,
    .lang-btn {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1 {
        letter-spacing: 0.10em;
    }

    h2 {
        letter-spacing: 0.12em;
    }

    .masonry-grid,
    .backstage-grid {
        column-count: 1;
    }

    .service-card {
        padding: 22px;
    }

    .contact-modal {
        padding: 40px 24px 28px;
    }

    .contact-modal h3 {
        letter-spacing: 0.1em;
    }

    .form-message {
        padding: 18px 18px 18px 52px;
        font-size: 0.95rem;
    }

    .form-message::before {
        left: 18px;
    }
    .prehome {
        padding: 18px;
    }

    .prehome-card {
        padding: 32px 22px;
    }

    .prehome-card h1 {
        letter-spacing: 0.10em;
    }

    .prehome-access-row {
        grid-template-columns: 1fr;
    }

    .prehome-access-row button {
        min-height: 50px;
    }	
}