:root {
    --ayllu-gold: #c9a962;
    --ayllu-gold-light: #dfc88a;
    --ayllu-dark: #0f0f0f;
    --ayllu-dark-soft: #1a1a1a;
    --ayllu-cream: #f5f0e8;
    --ayllu-muted: rgba(245, 240, 232, 0.65);
    --ayllu-border: rgba(201, 169, 98, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ayllu-body {
    font-family: var(--font-body);
    background: var(--ayllu-dark);
    color: var(--ayllu-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body.ayllu-body a {
    color: inherit;
    text-decoration: none;
}

body.ayllu-body img {
    max-width: 100%;
    height: auto;
}

.ayllu-display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.text-gold {
    color: var(--ayllu-gold) !important;
}

.btn-ayllu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 1px solid var(--ayllu-gold);
    background: transparent;
    color: var(--ayllu-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-ayllu:hover,
.btn-ayllu:focus {
    background: var(--ayllu-gold);
    color: var(--ayllu-dark);
}

.btn-ayllu-solid {
    background: var(--ayllu-gold);
    color: var(--ayllu-dark);
}

.btn-ayllu-solid:hover,
.btn-ayllu-solid:focus {
    background: var(--ayllu-gold-light);
    border-color: var(--ayllu-gold-light);
    color: var(--ayllu-dark);
}

/* Header */
.ayllu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1.25rem 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.ayllu-header.is-scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--ayllu-border);
}

.ayllu-header .navbar-brand img {
    height: 48px;
    width: auto;
    transition: height 0.35s ease;
}

.ayllu-header.is-scrolled .navbar-brand img {
    height: 38px;
}

.ayllu-nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ayllu-cream) !important;
    padding: 0.5rem 1rem !important;
    opacity: 0.85;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.ayllu-nav-link:hover,
.ayllu-nav-link.active {
    opacity: 1;
    color: var(--ayllu-gold) !important;
}

.ayllu-nav-cta {
    margin-left: 0.5rem;
}

.ayllu-navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ayllu-navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.ayllu-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 26px;
}

.ayllu-hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--ayllu-gold);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
}

.ayllu-hamburger span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.ayllu-navbar-toggler[aria-expanded="true"] .ayllu-hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.ayllu-navbar-toggler[aria-expanded="true"] .ayllu-hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.ayllu-navbar-toggler[aria-expanded="true"] .ayllu-hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .ayllu-header .navbar-collapse {
        background: var(--ayllu-dark-soft);
        margin-top: 1rem;
        padding: 1.25rem;
        border: 1px solid var(--ayllu-border);
    }

    .ayllu-nav-cta {
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

/* Hero */
.ayllu-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.ayllu-hero .swiper {
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.ayllu-hero-slide {
    position: relative;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
}

.ayllu-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.45) 0%,
        rgba(15, 15, 15, 0.55) 45%,
        rgba(15, 15, 15, 0.85) 100%
    );
}

.ayllu-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 5rem;
}

.ayllu-hero-content a {
    pointer-events: auto;
}

.ayllu-hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    margin-bottom: 1rem;
}

.ayllu-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
    max-width: 14ch;
    margin-bottom: 1.5rem;
}

.ayllu-hero-text {
    font-size: 1.05rem;
    color: var(--ayllu-muted);
    max-width: 520px;
    margin-bottom: 2rem;
}

.ayllu-hero .swiper-pagination {
    z-index: 4;
}

.ayllu-hero .swiper-pagination-bullet {
    background: var(--ayllu-cream);
    opacity: 0.35;
}

.ayllu-hero .swiper-pagination-bullet-active {
    background: var(--ayllu-gold);
    opacity: 1;
}

/* Intro */
.ayllu-intro {
    padding: 5rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-intro p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.55;
    color: var(--ayllu-muted);
    max-width: 780px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.ayllu-intro p:last-child {
    margin-bottom: 0;
}

/* Feature cards */
.ayllu-cards {
    padding: 0;
}

.ayllu-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.ayllu-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.ayllu-card:hover .ayllu-card-image {
    transform: scale(1.06);
}

.ayllu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s ease;
}

.ayllu-card:hover .ayllu-card-overlay {
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.45) 100%);
}

.ayllu-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ayllu-card-link {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ayllu-card:hover .ayllu-card-link {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .ayllu-card-link {
        opacity: 1;
        transform: none;
    }
}

/* Info section */
.ayllu-info {
    padding: 5rem 0;
    background: var(--ayllu-dark-soft);
    border-top: 1px solid var(--ayllu-border);
}

.ayllu-info-block {
    height: 100%;
}

.ayllu-info-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    margin-bottom: 1.25rem;
}

.ayllu-info-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ayllu-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.ayllu-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ayllu-border);
    font-size: 0.95rem;
}

.ayllu-hours-list li span:first-child {
    color: var(--ayllu-muted);
}

.ayllu-hours-note {
    font-size: 0.85rem;
    color: var(--ayllu-muted);
    font-style: italic;
}

.ayllu-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: var(--ayllu-muted);
}

.ayllu-contact-item i {
    color: var(--ayllu-gold);
    margin-top: 0.2rem;
    width: 1rem;
}

.ayllu-contact-item a:hover {
    color: var(--ayllu-gold);
}

.ayllu-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ayllu-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ayllu-border);
    color: var(--ayllu-gold);
    transition: all 0.25s ease;
}

.ayllu-social-links a:hover {
    background: var(--ayllu-gold);
    color: var(--ayllu-dark);
}

/* Subscribe */
.ayllu-subscribe {
    padding: 5rem 0;
    border-top: 1px solid var(--ayllu-border);
}

.ayllu-subscribe-form .form-control {
    background: transparent;
    border: 1px solid var(--ayllu-border);
    color: var(--ayllu-cream);
    padding: 0.85rem 1rem;
    border-radius: 0;
}

.ayllu-subscribe-form .form-control::placeholder {
    color: rgba(245, 240, 232, 0.4);
}

.ayllu-subscribe-form .form-control:focus {
    background: transparent;
    border-color: var(--ayllu-gold);
    color: var(--ayllu-cream);
    box-shadow: none;
}

.ayllu-subscribe-form label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ayllu-muted);
    margin-bottom: 0.35rem;
}

.ayllu-subscribe-note {
    font-size: 0.85rem;
    color: var(--ayllu-muted);
    margin-top: 1rem;
}

.ayllu-subscribe-note a {
    color: var(--ayllu-gold);
    text-decoration: underline;
}

/* Award */
.ayllu-award {
    padding: 3rem 0 4rem;
    text-align: center;
}

.ayllu-award img {
    max-height: 80px;
    opacity: 0.9;
}

/* Footer */
.ayllu-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--ayllu-border);
    background: var(--ayllu-dark);
}

.ayllu-footer-logo a {
    display: inline-block;
    line-height: 0;
}

.ayllu-footer-logo img {
    display: block;
    max-height: 80px;
    max-width: 80px;
    width: auto;
    height: auto;
    opacity: 0.85;
}

.ayllu-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.ayllu-footer-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ayllu-muted);
    transition: color 0.25s ease;
}

.ayllu-footer-nav a:hover {
    color: var(--ayllu-gold);
}

.ayllu-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ayllu-border);
    font-size: 0.82rem;
    color: var(--ayllu-muted);
}

/* Inner pages */
.ayllu-page-hero {
    position: relative;
    min-height: 55vh;
    min-height: 55dvh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
}

.ayllu-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.35) 0%,
        rgba(15, 15, 15, 0.75) 70%,
        rgba(15, 15, 15, 0.95) 100%
    );
}

.ayllu-page-hero-content {
    position: relative;
    z-index: 2;
}

.ayllu-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    max-width: 18ch;
    margin: 0;
}

.ayllu-page-body {
    background: var(--ayllu-dark);
}

.ayllu-content-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-content-section--alt {
    background: var(--ayllu-dark-soft);
}

.ayllu-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: var(--ayllu-cream);
}

.ayllu-prose p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ayllu-muted);
    margin-bottom: 1.25rem;
}

.ayllu-prose p:last-child {
    margin-bottom: 0;
}

.ayllu-prose strong {
    color: var(--ayllu-gold);
    font-weight: 500;
}

.ayllu-team-section {
    padding: 4.5rem 0;
    background: var(--ayllu-dark-soft);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-team-card {
    height: 100%;
    background: var(--ayllu-dark);
    border: 1px solid var(--ayllu-border);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.ayllu-team-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
}

.ayllu-team-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ayllu-team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ayllu-team-card:hover .ayllu-team-card-image img {
    transform: scale(1.04);
}

.ayllu-team-card-body {
    padding: 1.75rem;
}

.ayllu-team-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ayllu-gold);
}

.ayllu-team-bio {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-quote-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-quote {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.55;
    text-align: center;
    color: var(--ayllu-muted);
    margin: 0;
    padding: 0;
    border: none;
}

.ayllu-quote em {
    color: var(--ayllu-gold);
    font-style: italic;
}

.ayllu-cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--ayllu-dark-soft) 0%, var(--ayllu-dark) 100%);
}

.ayllu-cta-text {
    font-size: 1.1rem;
    color: var(--ayllu-muted);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.ayllu-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .ayllu-cta-links .btn-ayllu {
        width: 100%;
    }
}

/* Compact page hero */
.ayllu-page-hero--compact {
    min-height: 40vh;
    min-height: 40dvh;
    padding: 7rem 0 3rem;
    background: var(--ayllu-dark-soft);
}

.ayllu-page-hero--compact .ayllu-page-hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.2), rgba(15, 15, 15, 0.85));
}

.ayllu-prose--lead p {
    font-size: 1.15rem;
    text-align: center;
}

.ayllu-breadcrumb-link {
    color: var(--ayllu-gold);
    transition: opacity 0.25s ease;
}

.ayllu-breadcrumb-link:hover {
    opacity: 0.8;
    color: var(--ayllu-gold);
}

/* Blog listing */
.ayllu-blog-grid-section {
    padding: 3rem 0 5rem;
    background: var(--ayllu-dark);
}

.ayllu-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.ayllu-blog-card:hover {
    border-color: rgba(201, 169, 98, 0.45);
    transform: translateY(-4px);
}

.ayllu-blog-card-image-link {
    display: block;
}

.ayllu-blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ayllu-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ayllu-blog-card:hover .ayllu-blog-card-image img {
    transform: scale(1.05);
}

.ayllu-blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ayllu-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ayllu-muted);
    margin-bottom: 0.85rem;
}

.ayllu-blog-meta--hero {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.ayllu-blog-meta--hero span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ayllu-blog-card-title {
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.ayllu-blog-card-title a {
    color: var(--ayllu-cream);
    transition: color 0.25s ease;
}

.ayllu-blog-card-title a:hover {
    color: var(--ayllu-gold);
}

.ayllu-blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ayllu-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.ayllu-blog-read-more {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    margin-top: auto;
}

.ayllu-blog-read-more:hover {
    color: var(--ayllu-gold-light);
}

.ayllu-pagination-wrap {
    margin-top: 3.5rem;
}

.ayllu-pagination .page-link {
    background: transparent;
    border-color: var(--ayllu-border);
    color: var(--ayllu-muted);
    padding: 0.65rem 1rem;
    border-radius: 0;
}

.ayllu-pagination .page-item.active .page-link {
    background: var(--ayllu-gold);
    border-color: var(--ayllu-gold);
    color: var(--ayllu-dark);
}

.ayllu-pagination .page-link:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: var(--ayllu-gold);
    color: var(--ayllu-gold);
}

.ayllu-pagination .page-item.disabled .page-link {
    background: transparent;
    color: rgba(245, 240, 232, 0.3);
}

/* Blog post */
.ayllu-blog-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--ayllu-cream);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-prose h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ayllu-gold);
    margin: 2rem 0 1rem;
}

.ayllu-prose ul {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.ayllu-prose ul li {
    color: var(--ayllu-muted);
    margin-bottom: 0.5rem;
}

.ayllu-blog-post-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ayllu-border);
}

.ayllu-blog-related {
    padding: 4rem 0 5rem;
    background: var(--ayllu-dark-soft);
    border-top: 1px solid var(--ayllu-border);
}

.ayllu-blog-card--compact .ayllu-blog-card-body {
    padding: 1.25rem;
}

.ayllu-blog-card--compact .ayllu-blog-card-title {
    font-size: 1.15rem;
}

/* Menu page */
.ayllu-page-hero--menu {
    min-height: 65vh;
    min-height: 65dvh;
}

.ayllu-menu-hero-text {
    max-width: 640px;
    margin-top: 1.25rem;
}

.ayllu-menu-hero-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ayllu-muted);
    margin-bottom: 0.85rem;
}

.ayllu-menu-hero-text p:last-child {
    margin-bottom: 0;
}

.ayllu-menu-nav-wrap {
    position: sticky;
    top: var(--ayllu-header-height, 88px);
    z-index: 1025;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-menu-nav-wrap.is-stuck {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ayllu-menu-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
}

.ayllu-menu-nav-link {
    display: inline-block;
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ayllu-muted);
    white-space: nowrap;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.ayllu-menu-nav-link:hover,
.ayllu-menu-nav-link.active {
    color: var(--ayllu-gold);
    border-bottom-color: var(--ayllu-gold);
}

.ayllu-menu-body {
    background: var(--ayllu-dark);
}

.ayllu-menu-panels {
    min-height: 420px;
}

.ayllu-menu-section,
.ayllu-menu-faq[data-menu-panel] {
    display: none;
    padding: 4rem 0;
    border-bottom: 1px solid var(--ayllu-border);
    background: var(--ayllu-dark);
}

.ayllu-menu-section.is-active,
.ayllu-menu-faq[data-menu-panel].is-active {
    display: block;
}

.ayllu-menu-section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.ayllu-menu-section-subtitle {
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-menu-section-note {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--ayllu-border);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
}

.ayllu-menu-subsection {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ayllu-gold);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-menu-subsection:first-of-type {
    margin-top: 0;
}

.ayllu-menu-items {
    max-width: 820px;
    margin: 0 auto;
}

.ayllu-menu-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.ayllu-menu-item:last-child {
    border-bottom: none;
}

.ayllu-menu-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.ayllu-menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ayllu-cream);
}

.ayllu-menu-dietary {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--ayllu-gold);
    text-transform: uppercase;
}

.ayllu-menu-item-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ayllu-gold);
    white-space: nowrap;
}

.ayllu-menu-item-details {
    margin-top: 0.4rem;
    padding-right: 4rem;
}

.ayllu-menu-item-desc,
.ayllu-menu-item-note {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-menu-item-note {
    font-style: italic;
    margin-top: 0.25rem;
}

.ayllu-menu-signatures {
    padding: 4.5rem 0;
    background: var(--ayllu-dark);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-signature-dish {
    margin: 0;
    text-align: center;
}

.ayllu-signature-dish-image {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--ayllu-border);
    margin-bottom: 0.75rem;
}

.ayllu-signature-dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ayllu-signature-dish:hover .ayllu-signature-dish-image img {
    transform: scale(1.05);
}

.ayllu-signature-dish figcaption {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ayllu-muted);
}

.ayllu-menu-faq {
    padding: 4.5rem 0;
    background: var(--ayllu-dark-soft);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-accordion .accordion-item {
    background: var(--ayllu-dark);
    border: 1px solid var(--ayllu-border);
    margin-bottom: 0.75rem;
}

.ayllu-accordion .accordion-button {
    background: transparent;
    color: var(--ayllu-cream);
    font-family: var(--font-display);
    font-size: 1.15rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.ayllu-accordion .accordion-button:not(.collapsed) {
    background: rgba(201, 169, 98, 0.08);
    color: var(--ayllu-gold);
}

.ayllu-accordion .accordion-button::after {
    filter: invert(0.8);
}

.ayllu-accordion .accordion-body {
    color: var(--ayllu-muted);
    line-height: 1.7;
    padding: 0.75rem 1.5rem 1.25rem;
}

@media (max-width: 767.98px) {
    .ayllu-menu-item-details {
        padding-right: 0;
    }

    .ayllu-menu-item-main {
        flex-direction: column;
        gap: 0.35rem;
    }

    .ayllu-menu-item-price {
        align-self: flex-start;
    }
}

/* Private dining */
.ayllu-pd-intro {
    padding: 5rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-pd-intro-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--ayllu-border);
}

body.ayllu-body .ayllu-pd-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ayllu-pd-cards {
    padding: 5rem 0;
    background: var(--ayllu-dark-soft);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-pd-card {
    height: 100%;
    padding: 2rem;
    background: var(--ayllu-dark);
    border: 1px solid var(--ayllu-border);
    transition: border-color 0.3s ease;
}

.ayllu-pd-card:hover {
    border-color: rgba(201, 169, 98, 0.45);
}

.ayllu-pd-card-title {
    font-size: 1.35rem;
    color: var(--ayllu-gold);
    margin-bottom: 1rem;
}

.ayllu-pd-card-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-pd-features {
    padding: 5rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-pd-feature {
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--ayllu-border);
    background: var(--ayllu-dark-soft);
}

.ayllu-pd-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--ayllu-border);
    color: var(--ayllu-gold);
    font-size: 1.25rem;
}

.ayllu-pd-feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    color: var(--ayllu-cream);
}

.ayllu-pd-feature-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-pd-gallery {
    padding: 5rem 0;
    background: var(--ayllu-dark);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-pd-gallery-item {
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--ayllu-border);
}

body.ayllu-body .ayllu-pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ayllu-pd-gallery-item:hover img {
    transform: scale(1.04);
}

/* Book page */
.ayllu-book-main {
    padding: 4rem 0 5rem;
    background: var(--ayllu-dark);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-book-note {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ayllu-muted);
}

.ayllu-book-widget {
    height: 100%;
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
}

.ayllu-book-widget-header {
    padding: 1.75rem 1.75rem 0;
}

.ayllu-book-widget-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--ayllu-cream);
}

.ayllu-book-widget-text {
    font-size: 0.95rem;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-book-widget-frame {
    padding: 1.25rem 1.75rem 1.75rem;
}

#ot-booking-frame {
    display: block;
    width: 100%;
    min-height: 600px;
    height: 600px;
    background: #fff;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 2px;
}

.ayllu-book-sidebar {
    height: 100%;
    padding: 2rem;
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
}

.ayllu-book-sidebar-block + .ayllu-book-sidebar-block {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--ayllu-border);
}

.ayllu-book-sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ayllu-cream);
}

.ayllu-book-sidebar-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    margin-bottom: 0.85rem;
}

.ayllu-book-sidebar-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-book-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ayllu-muted);
}

.ayllu-book-sidebar-item + .ayllu-book-sidebar-item {
    margin-top: 0.85rem;
}

.ayllu-book-sidebar-item i {
    color: var(--ayllu-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ayllu-book-sidebar-item a {
    color: var(--ayllu-cream);
    transition: color 0.25s ease;
}

.ayllu-book-sidebar-item a:hover {
    color: var(--ayllu-gold);
}

.ayllu-hours-list--compact li {
    padding: 0.55rem 0;
    font-size: 0.92rem;
}

.ayllu-book-entertainment {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ayllu-book-entertainment li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ayllu-border);
    font-size: 0.92rem;
    color: var(--ayllu-muted);
}

.ayllu-book-entertainment li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ayllu-book-entertainment strong {
    color: var(--ayllu-cream);
    font-weight: 500;
}

.ayllu-book-enquiry {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--ayllu-dark-soft) 0%, var(--ayllu-dark) 100%);
}

.ayllu-book-enquiry-card {
    padding: 2.5rem;
    background: var(--ayllu-dark);
    border: 1px solid var(--ayllu-border);
}

.ayllu-book-enquiry-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-book-form .form-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ayllu-gold);
    margin-bottom: 0.45rem;
}

.ayllu-book-form .form-control {
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
    color: var(--ayllu-cream);
    border-radius: 0;
    padding: 0.85rem 1rem;
}

.ayllu-book-form .form-control::placeholder {
    color: rgba(245, 240, 232, 0.35);
}

.ayllu-book-form .form-control:focus {
    background: var(--ayllu-dark-soft);
    border-color: var(--ayllu-gold);
    color: var(--ayllu-cream);
    box-shadow: none;
}

.ayllu-book-alert {
    border-radius: 0;
    border: 1px solid var(--ayllu-border);
    background: var(--ayllu-dark-soft);
    color: var(--ayllu-cream);
}

@media (max-width: 991.98px) {
    .ayllu-book-sidebar {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .ayllu-book-enquiry-card {
        padding: 1.5rem;
    }

    .ayllu-book-widget-header,
    .ayllu-book-widget-frame {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Content pages */
.ayllu-faq-section,
.ayllu-gallery-section,
.ayllu-press-section,
.ayllu-recipes-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--ayllu-border);
    --bs-accordion-btn-bg: var(--ayllu-dark-soft);
    --bs-accordion-active-bg: var(--ayllu-dark-soft);
    --bs-accordion-btn-color: var(--ayllu-cream);
    --bs-accordion-active-color: var(--ayllu-gold);
    --bs-accordion-btn-focus-box-shadow: none;
}

.ayllu-accordion-item {
    background: transparent;
    border: 1px solid var(--ayllu-border);
    border-radius: 0 !important;
    margin-bottom: 0.75rem;
}

.ayllu-accordion-button {
    font-family: var(--ayllu-font-display);
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}

.ayllu-accordion-button:not(.collapsed) {
    color: var(--ayllu-gold);
}

.ayllu-accordion-button::after {
    filter: invert(0.8);
}

.ayllu-gallery-tabs {
    border-bottom: 1px solid var(--ayllu-border);
    gap: 0.5rem;
}

.ayllu-gallery-tabs .nav-link {
    color: var(--ayllu-muted);
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ayllu-gallery-tabs .nav-link.active,
.ayllu-gallery-tabs .nav-link:hover {
    color: var(--ayllu-gold);
    background: transparent;
    border-bottom: 2px solid var(--ayllu-gold);
}

.ayllu-gallery-item {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--ayllu-border);
}

.ayllu-gallery-trigger {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

body.ayllu-body .ayllu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ayllu-gallery-trigger:hover img {
    transform: scale(1.04);
}

.ayllu-gallery-zoom {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(15, 15, 15, 0.72);
    border: 1px solid var(--ayllu-border);
    color: var(--ayllu-gold);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ayllu-gallery-trigger:hover .ayllu-gallery-zoom,
.ayllu-gallery-trigger:focus-visible .ayllu-gallery-zoom {
    opacity: 1;
}

.ayllu-gallery-category-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--ayllu-cream);
}

.ayllu-gallery-category-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ayllu-muted);
    margin: 0;
}

.ayllu-gallery-empty {
    color: var(--ayllu-muted);
    padding: 2rem 0;
}

body.ayllu-lightbox-open {
    overflow: hidden;
}

.ayllu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
}

.ayllu-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.ayllu-lightbox-dialog {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 4rem 1.5rem 2rem;
}

.ayllu-lightbox-figure {
    margin: 0;
    max-width: min(96vw, 1400px);
    text-align: center;
}

.ayllu-lightbox-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: calc(100vh - 8rem);
    margin: 0 auto;
    border: 1px solid var(--ayllu-border);
}

.ayllu-lightbox-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--ayllu-muted);
}

.ayllu-lightbox-close,
.ayllu-lightbox-nav {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--ayllu-border);
    background: rgba(15, 15, 15, 0.85);
    color: var(--ayllu-cream);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.ayllu-lightbox-close:hover,
.ayllu-lightbox-nav:hover {
    color: var(--ayllu-gold);
    border-color: rgba(201, 169, 98, 0.5);
}

.ayllu-lightbox-close {
    top: 1rem;
    right: 1rem;
}

.ayllu-lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.ayllu-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 575.98px) {
    .ayllu-lightbox-prev {
        left: 0.5rem;
    }

    .ayllu-lightbox-next {
        right: 0.5rem;
    }
}

.ayllu-recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ayllu-recaptcha .g-recaptcha {
    transform-origin: center;
}

@media (max-width: 575.98px) {
    .ayllu-recaptcha .g-recaptcha {
        transform: scale(0.92);
    }
}

.ayllu-press-intro {
    color: var(--ayllu-muted);
    font-size: 1.05rem;
}

.ayllu-press-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ayllu-press-list li {
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-press-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    color: var(--ayllu-cream);
    transition: color 0.25s ease;
}

.ayllu-press-list a:hover {
    color: var(--ayllu-gold);
}

.ayllu-press-list-title {
    font-size: 1rem;
}

.ayllu-recipe-card {
    height: 100%;
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
}

.ayllu-recipe-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ayllu-recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ayllu-recipe-card-body {
    padding: 1.75rem;
}

.ayllu-recipe-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ayllu-cream);
}

.ayllu-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.ayllu-contact-main {
    padding: 4rem 0 5rem;
    background: var(--ayllu-dark);
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-contact-details {
    height: 100%;
}

.ayllu-contact-detail-block + .ayllu-contact-detail-block {
    margin-top: 1.75rem;
}

.ayllu-contact-detail-label {
    font-weight: 700;
    color: var(--ayllu-cream);
    margin-bottom: 0.35rem;
}

.ayllu-contact-detail-text {
    color: var(--ayllu-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.ayllu-contact-detail-text a {
    color: var(--ayllu-cream);
    transition: color 0.25s ease;
}

.ayllu-contact-detail-text a:hover {
    color: var(--ayllu-gold);
}

.ayllu-contact-detail-sep {
    margin: 0 0.5rem;
    color: var(--ayllu-border);
}

.ayllu-contact-form-wrap {
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
    padding: 2.5rem;
}

@media (max-width: 991.98px) {
    .ayllu-contact-form-wrap {
        padding: 1.75rem;
    }
}

.ayllu-contact-form-card {
    height: 100%;
}

.ayllu-contact-sidebar {
    height: 100%;
}

.ayllu-contact-info {
    border-bottom: 1px solid var(--ayllu-border);
}

.ayllu-prose h3 {
    font-family: var(--ayllu-font-display);
    font-size: 1.25rem;
    color: var(--ayllu-cream);
    margin: 2rem 0 0.75rem;
}

.ayllu-prose a {
    color: var(--ayllu-gold);
}

/* Shop pages */
.ayllu-shop-section {
    padding: 4rem 0 5rem;
    background: var(--ayllu-dark);
}

.ayllu-shop-sidebar {
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
    padding: 1.5rem;
}

.ayllu-shop-sidebar h3 {
    font-family: var(--ayllu-font-display);
    font-size: 1.25rem;
    color: var(--ayllu-cream);
    margin-bottom: 1rem;
}

.ayllu-shop-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ayllu-shop-categories li + li {
    margin-top: 0.5rem;
}

.ayllu-shop-categories a {
    color: var(--ayllu-muted);
    transition: color 0.25s ease;
}

.ayllu-shop-categories a:hover,
.ayllu-shop-categories a.active {
    color: var(--ayllu-gold);
}

.ayllu-shop-card {
    height: 100%;
    background: var(--ayllu-dark-soft);
    border: 1px solid var(--ayllu-border);
    transition: border-color 0.3s ease;
}

.ayllu-shop-card:hover {
    border-color: rgba(201, 169, 98, 0.5);
}

.ayllu-shop-empty {
    text-align: center;
    color: var(--ayllu-muted);
    padding: 3rem 0;
}

.ayllu-shop-card-image {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.ayllu-shop-card-body {
    padding: 1.25rem;
}

.ayllu-shop-card-title {
    font-size: 1.1rem;
    color: var(--ayllu-cream);
    margin-bottom: 0.5rem;
}

.ayllu-shop-card-price {
    color: var(--ayllu-gold);
    margin-bottom: 0.75rem;
}

.ayllu-shop-card-link {
    font-size: 0.85rem;
    color: var(--ayllu-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ayllu-shop-card:hover .ayllu-shop-card-link {
    color: var(--ayllu-gold);
}
