:root {
    --color-bg-main: #ffffff;
    --color-surface: #ffffff;
    --color-surface-strong: #ffffff;
    --color-text-main: #000000;
    --color-text-secondary: #000000;
    --color-border: transparent;
    --color-accent: #000000;
    --color-accent-2: #000000;
    --shadow-soft: none;
    --shadow-card: none;
}

* {
    box-sizing: border-box;
    border-radius: 0 !important;
}

body {
    margin: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-bg-main);
    color: var(--color-text-main);
    scroll-behavior: smooth;
}

.page-wrapper {
    min-height: 100vh;
    background: var(--color-bg-main);
}

.text-sm {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.top-bar {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: none;
}

.top-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.logo-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    padding: 8px;
    box-shadow: none;
}

.logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--color-text-main);
    background: transparent;
    transition: color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
    text-decoration: none;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible,
.social-link.is-active {
    color: #000000;
    transform: translateY(-1px);
}

.navbar-main {
    position: sticky;
    top: 0;
    z-index: 19;
    background: #ffffff;
    box-shadow: none;
}

.navbar-main .container {
    display: flex;
    justify-content: center;
}

.social-bar {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 18px auto 0;
    text-align: center;
}

.social-bar__label {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.social-bar .social-links,
.links-landing__header .social-links {
    justify-content: center;
    gap: 14px;
}

.navbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.navbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a:focus-visible,
.navbar-links a.is-active {
    color: var(--color-accent);
}

.hero-media {
    position: relative;
    padding: 36px 0 64px;
    overflow: hidden;
    background: var(--color-bg-main);
}

.hero-ambient,
.ambient-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.ambient-light { display: none; }

.ambient-light--primary { left: 8%; top: 10%; opacity: 0; background: none; }
.ambient-light--secondary { right: 10%; top: 24%; opacity: 0; background: none; }
.ambient-light--tertiary { left: 30%; bottom: -18%; opacity: 0; background: none; }

.orb { display: none; }

.orb-1 { width: 220px; height: 220px; left: 8%; top: 18%; }
.orb-2 { width: 280px; height: 280px; right: 12%; top: 12%; animation-delay: 2s; }
.orb-3 { width: 180px; height: 180px; right: 28%; bottom: -4%; animation-delay: 4s; }

.hero-video-wrapper {
    position: relative;
    width: min(1080px, 96%);
    margin: 0 auto 28px;
    background: var(--color-surface);
    box-shadow: none;
}

.hero-video-frame {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.hero-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: none;
}

.banner-carousel-wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.banner-carousel {
    background: var(--color-surface-strong);
    box-shadow: none;
}

.banner-carousel img {
    height: 360px;
    object-fit: cover;
    filter: none;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.82);
    padding: 18px;
    text-align: left;
    color: #ffffff;
}

.hero-parallax {
    --shift-x: 0px;
    --shift-y: 0px;
    transform: translate3d(var(--shift-x), var(--shift-y), 0);
    transition: transform 0.45s ease;
}

.section-block {
    padding: 86px 0;
    background: var(--color-bg-main);
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    margin: 6px 0 12px;
    color: var(--color-text-main);
}

.section-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.card-tile {
    background: var(--color-surface);
    padding: 28px;
    height: 100%;
    color: var(--color-text-main);
    box-shadow: none;
}

.card-tile h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.section-image {
    width: 100%;
    display: block;
    background: var(--color-surface-strong);
    filter: none;
    box-shadow: none;
}

.rich-text p {
    margin-bottom: 12px;
}

.scroll-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 0;
    background: transparent;
    color: #444444;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: none;
}

.whatsapp-button:hover { color: #000000; text-decoration: underline; }

.whatsapp-label { font-weight: 700; }

.map-wrapper { position: relative; }

.map-live {
    height: 280px;
    width: 100%;
    background: var(--color-surface);
    box-shadow: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 600;
    color: var(--color-text-main);
    text-decoration: none;
}

.map-link svg { transition: transform 0.2s ease; }

.map-link:hover svg { transform: translateX(4px); }

.links-landing {
    min-height: 100vh;
    background: var(--color-bg-main);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.links-landing__shell {
    width: min(720px, 100%);
    background: var(--color-surface);
    padding: 2.4rem 2rem;
    box-shadow: none;
}

.links-landing__header {
    text-align: center;
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.links-landing__logo img {
    width: 96px;
    height: auto;
    filter: none;
}

.links-landing__name {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
}

.links-landing__tagline {
    margin: 0;
    color: var(--color-text-secondary);
}

.links-landing__list {
    display: grid;
    gap: 14px;
    margin-top: 2rem;
}

.link-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    color: inherit;
    text-decoration: none;
    background: var(--color-surface-strong);
    box-shadow: none;
}

.link-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.link-card__title {
    font-weight: 700;
    margin-bottom: 4px;
}

.link-card__text { color: var(--color-text-secondary); margin: 0; }

.link-card--home {
    background: var(--color-surface);
}

.links-landing__empty {
    color: var(--color-text-secondary);
    margin: 0;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    background: #ffffff;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 12;
}

.admin-topbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-topbar__logo {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    padding: 6px;
    background: var(--color-surface);
}

.admin-topbar__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.admin-topbar__text strong { display: block; }

.admin-topbar__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 48px;
    color: var(--color-text-main);
}

.admin-shell--wide { max-width: 1380px; }

.admin-header { margin-bottom: 20px; }

.admin-title {
    font-size: 28px;
    font-weight: 700;
}

.admin-subtitle {
    color: var(--color-text-secondary);
    margin: 8px 0 0;
}

.admin-card,
.admin-form .form-control,
.admin-map,
.admin-card table,
.admin-card .list-group-item {
    background: var(--color-surface);
    color: var(--color-text-main);
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-fieldset {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

.admin-fieldset--wide { gap: 16px; }

.admin-field-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-field--inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    align-items: flex-start;
}

.admin-label,
.admin-form label {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--color-text-main);
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-form .form-control,
.admin-form .form-select,
.admin-form .form-check-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 0;
    border: none;
    background: #f7f7f7;
    color: #000000;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.admin-form textarea { min-height: 120px; resize: vertical; }

.admin-field--wide-editor textarea { min-height: 440px; }

.admin-field--wide-editor .tox.tox-tinymce {
    width: 100%;
    min-height: 520px;
}

.admin-field--wide-editor .tox-edit-area__iframe { min-height: 440px; }

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-form .form-control:focus,
.admin-form .form-select:focus,
.admin-form .form-check-input:focus {
    outline: none;
    background: #efefef;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
    color: #606060;
    letter-spacing: 0.01em;
}

.admin-form input[type="checkbox"],
.admin-form input[type="radio"],
.admin-form .form-check-input {
    width: 18px;
    height: 18px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    accent-color: #000000;
}

.admin-form .form-text {
    color: var(--color-text-secondary);
    font-size: 13px;
}

.admin-form .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-form .form-check-label {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.admin-mini-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.admin-map-panel {
    gap: 14px;
}

.admin-map {
    width: 100%;
    height: 360px;
    position: relative;
}

.admin-card {
    padding: 20px;
    position: relative;
    transition: transform 0.15s ease;
}

.admin-card--form {
    width: 100%;
    max-width: none;
}

.admin-card--list { max-height: 100%; }

.admin-card:hover { transform: translateY(-2px); }

.admin-card--link {
    color: inherit;
    text-decoration: none;
}

.admin-card__title {
    font-weight: 700;
    margin-bottom: 6px;
}

.admin-card__text { color: var(--color-text-secondary); }

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.admin-grid--tight { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.admin-grid--projects {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
}

.admin-actions { display: flex; gap: 12px; }

.admin-actions--gap { justify-content: flex-start; }

.admin-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 12px 0;
}

.admin-metric {
    padding: 12px;
    background: var(--color-surface-strong);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.admin-metric span {
    display: block;
    color: var(--color-text-secondary);
    font-size: 14px;
}

.admin-metric strong {
    display: block;
    font-size: 28px;
    line-height: 1.2;
    margin-top: 6px;
}

.admin-btn {
    border: none;
    color: #444444;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0;
    text-decoration: none;
}

.admin-btn:hover,
.admin-btn:focus-visible { color: #000000; text-decoration: underline; }

.admin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: var(--color-surface-strong);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.admin-form .form-check { padding-top: 8px; }

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    color: var(--color-text-main);
}

.admin-table th,
.admin-table td {
    padding: 10px 12px;
}

.admin-table th {
    text-align: left;
    color: var(--color-text-secondary);
    font-weight: 700;
}

.btn-outline-light {
    color: #444444;
    border: none;
    background: transparent;
    padding: 0;
    text-decoration: none;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: #000000;
    background: transparent;
    text-decoration: underline;
}

.admin-topbar .btn-danger {
    background: transparent;
    border: none;
    color: #444444;
    padding: 0;
    text-decoration: none;
}

.admin-topbar .btn-danger:hover,
.admin-topbar .btn-danger:focus-visible { color: #000000; text-decoration: underline; }

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(6px, -10px, 0); }
    100% { transform: translate3d(-6px, 8px, 0); }
}

@media (max-width: 768px) {
    .top-bar__content { flex-direction: column; align-items: flex-start; }
    .navbar-links { justify-content: center; }
    .link-card { grid-template-columns: 1fr; }
    .hero-video-wrapper, .banner-carousel-wrapper { width: 100%; }
}

.admin-image-preview {
    display: block;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-card__image-link {
    display: block;
    overflow: hidden;
}

.project-card__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f5f5f5;
    transition: transform 0.2s ease;
}

.project-card__image-link:hover .project-card__image {
    transform: translateY(-2px);
}

.project-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-card__title {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.project-card__title a {
    color: #111;
    text-decoration: none;
}

.project-card__title a:hover {
    color: #000;
    text-decoration: underline;
}

.project-card__location {
    margin: 0;
    color: #444;
    font-weight: 500;
}


.project-detail {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.project-media__link {
    display: block;
}

.project-media__image {
    display: block;
    width: 100%;
    max-width: 960px;
    height: auto;
    object-fit: cover;
    background: #f7f7f7;
    margin: 0 auto;
    cursor: zoom-in;
}

.project-location {
    font-weight: 600;
    margin: 6px 0 0;
    color: #333;
}

.project-richtext {
    margin-top: 18px;
}

.project-richtext img,
.project-richtext figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    cursor: zoom-in;
}

.project-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.share-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    color: #444;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.share-link:hover {
    color: #000;
}

.share-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
