/* ==================================================
   TAMAYA COLOUR PALETTE
   ================================================== */

:root {
    --tamaya-primary: #705568;       /* Dusty plum */
    --tamaya-primary-dark: #4f3a4a;
    --tamaya-secondary: #87927a;     /* Muted sage */
    --tamaya-secondary-light: #e3e7dc;
    --tamaya-accent: #b89560;        /* Soft gold */
    --tamaya-background: #faf7f2;    /* Warm ivory */
    --tamaya-surface: #ffffff;
    --tamaya-text: #342f32;
    --tamaya-muted: #746c70;
    --tamaya-border: #e8dfda;

    /* Cassiopeia variables */
    --cassiopeia-color-primary: var(--tamaya-primary);
    --cassiopeia-color-link: var(--tamaya-primary);
    --cassiopeia-color-hover: var(--tamaya-primary-dark);
}

body.site {
    background-color: var(--tamaya-background);
    color: var(--tamaya-text);
}

h1,
h2,
h3,
h4 {
    color: var(--tamaya-primary-dark);
}


.site-grid > [class^="container-"],
.site-grid > [class*=" container-"] {
    margin: 0;
}

.container-component>:first-child,
.container-sidebar-left>:first-child,
.container-sidebar-right>:first-child,
.container-component>*+*,
.container-sidebar-left>*+*,
.container-sidebar-right>*+*{
    margin-top: 0 !important;
}

.card-body {
    padding: 0;
}
.pagenavigation,
.article-info {
    display: none !important;
}

.com-content-article > .page-header,
.item-page > .page-header {
    display: none;
}

/* ==================================================
   HEADER
   Logo left — menu centred
   ================================================== */

.container-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    align-items: center;

    padding: 0.65rem clamp(1rem, 4vw, 4rem);

    background: rgb(255 255 255 / 96%);
    background-image: none;
    border-bottom: 1px solid var(--tamaya-border);
    box-shadow: 0 4px 24px rgb(79 58 74 / 9%);
}

/* Logo section */
.container-header > .grid-child:first-child {
    grid-column: 1;
    justify-self: start;

    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Menu section */
.container-header > .container-nav {
    grid-column: 2;
    justify-self: center;

    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Logo size */
.container-header .navbar-brand {
    margin: 0;
    padding: 0;
}

.container-header .navbar-brand img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 72px;
}


/* ==================================================
   MAIN MENU
   ================================================== */

.container-header .mod-menu {
    justify-content: center;
    align-items: center;
    gap: clamp(0.1rem, 0.7vw, 0.65rem);
    margin: 0;
    color: var(--tamaya-text);
}

.container-header .metismenu > li > a,
.container-header .metismenu > li > button {
    position: relative;
    padding: 0.85rem 0.7rem;

    color: var(--tamaya-text);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-decoration: none;

    background: transparent;
    border: 0;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

/* Animated underline */
.container-header .metismenu > li > a::after,
.container-header .metismenu > li > button::after {
    position: absolute;
    right: 0.7rem;
    bottom: 0.35rem;
    left: 0.7rem;

    height: 2px;

    content: "";
    background: var(--tamaya-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.container-header .metismenu > li > a:hover,
.container-header .metismenu > li > button:hover,
.container-header .metismenu > li.active > a,
.container-header .metismenu > li.current > a {
    color: var(--tamaya-primary);
}

.container-header .metismenu > li > a:hover::after,
.container-header .metismenu > li > button:hover::after,
.container-header .metismenu > li.active > a::after,
.container-header .metismenu > li.current > a::after {
    transform: scaleX(1);
}
.tamaya-menu-cta{
 background-color: #281638;
}
.itemid-113{ 
 .item-113{
    display: none !important;
}}

/* ==================================================
   DROPDOWN MENU
   ================================================== */

.container-header .metismenu.mod-menu .mm-collapse {
    min-width: 245px;
    padding: 0.5rem;

    background: var(--tamaya-surface);
    border: 1px solid var(--tamaya-border);
    border-radius: 0.8rem;
    box-shadow: 0 14px 35px rgb(79 58 74 / 14%);
}

.container-header .metismenu .mm-collapse a {
    padding: 0.65rem 0.8rem;
    color: var(--tamaya-text);
    border-radius: 0.5rem;
}

.container-header .metismenu .mm-collapse a:hover {
    color: var(--tamaya-primary-dark);
    background: var(--tamaya-secondary-light);
}


/* ==========================================================
   TAMAYA RESPONSIVE HOME HERO
   ========================================================== */

.tamaya-hero-module,
.tamaya-hero-module .mod-custom {
    width: 100%;
    margin: 0;
    padding: 0;
}

/*
 * Prevent accidental horizontal scrolling caused by
 * full-width Joomla module breakouts.
 */
html,
body {
    overflow-x: clip;
}

.tamaya-hero {
    --hero-text: #4f4035;
    --hero-heading: #49392f;
    --hero-accent: #b8864f;
    --hero-accent-dark: #8f673c;
    --hero-light: #fffaf3;

    position: relative;
    width: 100%;
    min-height: clamp(560px, calc(100svh - 90px), 860px);
    overflow: hidden;

    display: flex;
    align-items: center;

    background-image: url("/images/hero.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    isolation: isolate;
}

/*
 * Use this breakout only when Joomla puts the module
 * inside a limited-width container.
 */
.tamaya-hero-module {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
}

/* Readability overlay */
.tamaya-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(248, 235, 214, 0.9) 0%,
        rgba(248, 235, 214, 0.75) 34%,
        rgba(248, 235, 214, 0.28) 61.8%,
        rgba(248, 235, 214, 0.03) 82%,
        transparent 100%
    );
}

/* Golden-ratio desktop layout */
.tamaya-hero__inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding:
        clamp(3rem, 8vh, 7rem)
        clamp(1.25rem, 6vw, 6rem);

    display: grid;
    grid-template-columns: minmax(0, 61.8%) minmax(0, 38.2%);
    align-items: center;
}

.tamaya-hero__content {
    grid-column: 1;
    position: relative;
    width: min(100%, 680px);
}

/*
 * Slides overlap, but the container remains responsive.
 * The height scales with the screen instead of being fixed.
 */
.tamaya-hero__slides {
    position: relative;
    min-height: clamp(350px, 46vh, 460px);
}

.tamaya-hero__slide {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);

    transition:
        opacity 700ms ease,
        transform 700ms ease,
        visibility 700ms;
}

.tamaya-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.tamaya-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: clamp(0.55rem, 1vw, 0.85rem);

    margin: 0 0 clamp(0.8rem, 2vh, 1.15rem);
    color: var(--hero-accent-dark);

    font-size: clamp(0.7rem, 0.9vw, 0.92rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: clamp(0.1em, 0.18vw, 0.18em);
    text-transform: uppercase;
}

.tamaya-hero__eyebrow::before {
    content: "";
    flex: 0 0 auto;
    width: clamp(2rem, 5vw, 5rem);
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.tamaya-hero h1,
.tamaya-hero h2 {
    max-width: 13ch;
    margin: 0;

    color: var(--hero-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5.2vw, 5.25rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.tamaya-hero__description {
    max-width: 52ch;
    margin: clamp(1.15rem, 3vh, 2rem) 0 0;

    color: var(--hero-text);
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    line-height: 1.65;
    text-wrap: pretty;
}

.tamaya-hero__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 50px;
    margin-top: clamp(1.45rem, 3.5vh, 2.5rem);
    padding: 0.8rem clamp(1.25rem, 2vw, 1.75rem);

    border: 1px solid rgba(143, 103, 60, 0.55);
    border-radius: 999px;

    color: var(--hero-heading);
    background: rgba(255, 250, 243, 0.46);
    box-shadow: 0 12px 35px rgba(91, 63, 37, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-size: clamp(0.9rem, 1vw, 0.98rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.03em;
    text-decoration: none;

    transition:
        color 250ms ease,
        background-color 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.tamaya-hero__button:hover,
.tamaya-hero__button:focus-visible {
    color: #fff;
    background: var(--hero-accent-dark);
    border-color: var(--hero-accent-dark);
    box-shadow: 0 16px 38px rgba(91, 63, 37, 0.18);
    transform: translateY(-3px);
    text-decoration: none;
}

.tamaya-hero__button:focus-visible,
.tamaya-hero__dot:focus-visible {
    outline: 3px solid rgba(143, 103, 60, 0.35);
    outline-offset: 4px;
}

/* Dots */

.tamaya-hero__navigation {
    position: relative;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin-top: clamp(0.75rem, 2vh, 1.5rem);
}

.tamaya-hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: rgba(79, 64, 53, 0.35);
    cursor: pointer;

    transition:
        width 300ms ease,
        border-radius 300ms ease,
        background-color 300ms ease,
        transform 300ms ease;
}

.tamaya-hero__dot:hover {
    background: rgba(79, 64, 53, 0.68);
    transform: scale(1.15);
}

.tamaya-hero__dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--hero-accent-dark);
}

/* ==========================================================
   LARGE DESKTOP
   ========================================================== */

@media (min-width: 1600px) {
    .tamaya-hero {
        min-height: min(860px, calc(100svh - 90px));
        background-position: center center;
    }

    .tamaya-hero__inner {
        width: min(100%, 1540px);
    }
}

/* ==========================================================
   SMALL LAPTOP / TABLET LANDSCAPE
   ========================================================== */

@media (max-width: 1100px) {
    .tamaya-hero {
        min-height: clamp(580px, calc(100svh - 80px), 760px);
        background-position: 58% center;
    }

    .tamaya-hero__inner {
        grid-template-columns: minmax(0, 66%) minmax(0, 34%);
        padding-inline: clamp(1.5rem, 5vw, 4rem);
    }

    .tamaya-hero__content {
        width: min(100%, 600px);
    }

    .tamaya-hero h1,
    .tamaya-hero h2 {
        font-size: clamp(2.45rem, 5.8vw, 4.5rem);
    }
}

/* ==========================================================
   TABLET PORTRAIT
   ========================================================== */

@media (max-width: 820px) {
    .tamaya-hero {
        min-height: max(680px, calc(100svh - 75px));
        align-items: flex-end;

        /* Use only one image */
        background-image: url("/images/hero.webp");
        background-repeat: no-repeat;
        background-size: cover;

        /*
         * Focus on the right side:
         * bird, sunlight and lotus.
         */
        background-position: 76% center;
    }

    .tamaya-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(248, 235, 214, 0.01) 0%,
                rgba(248, 235, 214, 0.06) 25%,
                rgba(248, 235, 214, 0.42) 48%,
                rgba(248, 235, 214, 0.88) 66%,
                rgba(248, 235, 214, 0.98) 82%,
                rgba(248, 235, 214, 1) 100%
            );
    }

    .tamaya-hero__inner {
        display: block;
        width: 100%;

        padding:
            clamp(14rem, 32vh, 19rem)
            clamp(1.3rem, 5vw, 3rem)
            clamp(2.5rem, 6vh, 4rem);
    }

    .tamaya-hero__content {
        width: min(100%, 590px);
    }

    .tamaya-hero__slides {
        min-height: clamp(350px, 44vh, 430px);
    }

    .tamaya-hero h1,
    .tamaya-hero h2 {
        max-width: 14ch;
        font-size: clamp(2.4rem, 7.5vw, 4rem);
        line-height: 1.02;
    }

    .tamaya-hero__description {
        max-width: 52ch;
        font-size: clamp(1rem, 2.3vw, 1.12rem);
        line-height: 1.6;
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {
    .tamaya-hero {
        min-height: max(680px, calc(100svh - 68px));
        align-items: flex-end;

        background-image: url("/images/hero.webp");
        background-repeat: no-repeat;
        background-size: cover;

        /*
         * Show the right side of the image:
         * bird, light and lotus.
         */
        background-position: 80% center;
    }

    .tamaya-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(248, 235, 214, 0.02) 0%,
                rgba(248, 235, 214, 0.08) 24%,
                rgba(248, 235, 214, 0.5) 50%,
                rgba(248, 235, 214, 0.92) 68%,
                rgba(248, 235, 214, 0.99) 100%
            );
    }

    .tamaya-hero__inner {
        width: 100%;
        padding:
            clamp(15rem, 34vh, 19rem)
            clamp(1rem, 5vw, 1.5rem)
            clamp(2rem, 5vh, 3rem);
    }

    .tamaya-hero__content {
        width: 100%;
    }

    .tamaya-hero__slides {
        min-height: clamp(350px, 45vh, 420px);
    }

    .tamaya-hero h1,
    .tamaya-hero h2 {
        max-width: 100%;
        font-size: clamp(2.1rem, 10vw, 3.3rem);
        line-height: 1.02;
    }

    .tamaya-hero__description {
        max-width: 100%;
        margin-top: 1rem;
        font-size: clamp(0.96rem, 4vw, 1.05rem);
        line-height: 1.55;
    }

    .tamaya-hero__button {
        min-height: 48px;
        margin-top: 1.4rem;
        padding-inline: 1.3rem;
    }

    .tamaya-hero__navigation {
        margin-top: 0.75rem;
    }
}
/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media (max-width: 380px) {
    .tamaya-hero {
        min-height: max(660px, calc(100svh - 64px));

        /*
         * Move the crop slightly farther right
         * on very narrow phones.
         */
        background-position: 84% center;
    }

    .tamaya-hero__inner {
        padding:
            clamp(14rem, 32vh, 17rem)
            1rem
            1.75rem;
    }

    .tamaya-hero__slides {
        min-height: 380px;
    }

    .tamaya-hero h1,
    .tamaya-hero h2 {
        font-size: clamp(1.95rem, 10vw, 2.7rem);
    }

    .tamaya-hero__description {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .tamaya-hero__button {
        width: 100%;
    }
}

/* ==========================================================
   SHORT SCREENS / LANDSCAPE PHONES
   ========================================================== */

@media (max-height: 600px) and (orientation: landscape) {
    .tamaya-hero {
        min-height: 560px;
        align-items: center;
        background-position: 62% center;
    }

    .tamaya-hero__inner {
        padding:
            2rem
            clamp(1.5rem, 6vw, 4rem);
    }

    .tamaya-hero__content {
        width: min(58%, 560px);
    }

    .tamaya-hero__slides {
        min-height: 350px;
    }

    .tamaya-hero h1,
    .tamaya-hero h2 {
        font-size: clamp(2.25rem, 6vw, 3.5rem);
    }

    .tamaya-hero__description {
        margin-top: 0.9rem;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .tamaya-hero__button {
        margin-top: 1.15rem;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-hero__slide,
    .tamaya-hero__button,
    .tamaya-hero__dot {
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   TAMAYA ACHIEVEMENTS
   Clean layout, no cards, no frames
   ========================================================== */

.tamaya-achievements-module,
.tamaya-achievements-module .mod-custom {
    width: 100%;
    margin: 0;
    padding: 0;
}

/*
 * Full-width section when the module is placed
 * inside Cassiopeia's limited-width container.
 */
.tamaya-achievements-module {
    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
}

.tamaya-achievements {
    --achievements-gold: #b89560;
    --achievements-gold-dark: #8f673c;
    --achievements-purple: #705568;
    --achievements-purple-light: #cdb8d1;
    --achievements-heading: #49392f;
    --achievements-text: #62544c;
    --achievements-background: #faf7f2;

    position: relative;
    overflow: hidden;

    padding:
        clamp(1.5rem, 0vw, 0rem)
        clamp(0.25rem, 1vw, 4rem);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(184, 149, 96, 0.13),
            transparent 36%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(112, 85, 104, 0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(184, 149, 96, 0.08),
            transparent 30%
        ),
        var(--achievements-background);
}

/* Soft decorative glows */

.tamaya-achievements::before,
.tamaya-achievements::after {
    position: absolute;
    z-index: 0;

    width: clamp(200px, 28vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;

    content: "";
    pointer-events: none;

    filter: blur(75px);
    opacity: 0.28;
}

.tamaya-achievements::before {
    top: -18%;
    left: -10%;
    background: rgba(205, 184, 209, 0.42);
}

.tamaya-achievements::after {
    right: -10%;
    bottom: -28%;
    background: rgba(222, 188, 129, 0.42);
}

.tamaya-achievements__inner {
    position: relative;
    z-index: 1;

    width: min(100%, 1440px);
    margin-inline: auto;
}

/* ==========================================================
   SECTION HEADING
   ========================================================== */

.tamaya-achievements__header {
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.tamaya-achievements__eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;

    margin: 0 0 0.9rem;

    color: var(--achievements-gold-dark);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-achievements__eyebrow::before,
.tamaya-achievements__eyebrow::after {
    width: clamp(2rem, 4vw, 4rem);
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.55;
}

.tamaya-achievements__header h2 {
    margin: 0;

    color: var(--achievements-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.tamaya-achievements__intro {
    max-width: 55ch;
    margin: 1rem auto 0;

    color: var(--achievements-text);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.65;
}

/* ==========================================================
   ACHIEVEMENTS GRID
   ========================================================== */

.tamaya-achievements__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: start;
}

/* ==========================================================
   INDIVIDUAL ACHIEVEMENT
   No card, border or background
   ========================================================== */

.tamaya-achievement {
    position: relative;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 0.25rem 0.5rem;
    text-align: center;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    /*
     * Hidden state before the section enters the viewport.
     */
    opacity: 0;
    filter: blur(6px);
    transform: translateY(34px) scale(0.96);

    transition:
        opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 750ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 750ms ease;

    transition-delay: var(--achievement-delay, 0ms);

    will-change: opacity, transform, filter;
}

/*
 * JavaScript adds .is-visible to the section.
 */
.tamaya-achievements.is-visible .tamaya-achievement {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* Remove decorative line from the previous design */

.tamaya-achievement::before {
    display: none;
}

/* Small hover movement */

.tamaya-achievement:hover {
    transform: translateY(-5px);
}

/* ==========================================================
   ICON
   ========================================================== */

.tamaya-achievement__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: clamp(190px, 17vw, 240px);

    margin: 0 auto 0.4rem;
}

.tamaya-achievement__icon img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: 230px;

    object-fit: contain;
    object-position: center;

    opacity: 0;
    transform: scale(0.86) translateY(12px);

    transition:
        opacity 800ms ease,
        transform 950ms cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay:
        calc(var(--achievement-delay, 0ms) + 100ms);
}

.tamaya-achievements.is-visible
.tamaya-achievement__icon img {
    opacity: 1;
    transform: scale(1.5) translateY(0);
}

/* ==========================================================
   NUMBER
   ========================================================== */

.tamaya-achievement__number {
    margin: 0;

    color: var(--achievements-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;

    font-variant-numeric: tabular-nums;
}

.tamaya-achievement__suffix {
    color: var(--achievements-gold-dark);
    font-size: 0.68em;
    vertical-align: 0.1em;
}

/* ==========================================================
   LABEL
   ========================================================== */

.tamaya-achievement h3 {
    max-width: 18ch;
    min-height: auto;

    margin: 0.45rem auto 0;

    color: var(--achievements-purple);
    font-size: clamp(0.95rem, 1.1vw, 1.08rem);
    font-weight: 650;
    line-height: 1.35;

    text-wrap: balance;
}

/* ==========================================================
   TABLET
   Two columns
   ========================================================== */

@media (max-width: 991px) {
    .tamaya-achievements {
        padding:
            clamp(3.25rem, 7vw, 5rem)
            clamp(1.25rem, 4vw, 3rem);
    }

    .tamaya-achievements__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap:
            clamp(2rem, 5vw, 3rem)
            clamp(1.5rem, 4vw, 2.5rem);
    }

    .tamaya-achievement__icon {
        height: 210px;
    }

    .tamaya-achievement__icon img {
        max-width: 205px;
    }
}


/* ==========================================================
   MOBILE
   Two columns
   ========================================================== */

@media (max-width: 600px) {
    .tamaya-achievements {
        padding:
            clamp(3rem, 10vw, 4.25rem)
            1rem;
    }

    .tamaya-achievements__header {
        margin-bottom: 2.25rem;
    }

    .tamaya-achievements__header h2 {
        font-size: clamp(2rem, 9vw, 2.85rem);
    }

    .tamaya-achievements__intro {
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .tamaya-achievements__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 0.8rem;
    }

    .tamaya-achievement {
        padding: 0;
    }

    .tamaya-achievement__icon {
        height: 160px;
        margin-bottom: 0.25rem;
    }

    .tamaya-achievement__icon img {
        max-width: 155px;
    }

    .tamaya-achievement__number {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .tamaya-achievement h3 {
        max-width: 15ch;
        margin-top: 0.3rem;

        font-size: clamp(0.82rem, 3.6vw, 0.94rem);
        line-height: 1.3;
    }
}

/* ==========================================================
   VERY SMALL PHONES
   One column
   ========================================================== */

@media (max-width: 380px) {
    .tamaya-achievements__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .tamaya-achievement__icon {
        height: 175px;
    }

    .tamaya-achievement__icon img {
        max-width: 170px;
    }

    .tamaya-achievement__number {
        font-size: 2.65rem;
    }

    .tamaya-achievement h3 {
        max-width: 20ch;
        font-size: 0.94rem;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-achievement,
    .tamaya-achievement__icon img {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

/* ==================================================
   FOOTER CONTENT
   Statement left — contact info right
   ================================================== */

.tamaya-footer-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;

    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 3rem clamp(1.25rem, 5vw, 5rem);
}

/* Left section */
.tamaya-footer-content .izjava {
    max-width: 760px;
}

/* Right section */
.tamaya-footer-content .info {
    padding-left: 2rem;
    border-left: 1px solid rgb(255 255 255 / 18%);
}

/* Headings */
.tamaya-footer-content h3 {
    margin: 0 0 1rem;

    color: var(--tamaya-surface);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Paragraphs */
.tamaya-footer-content p {
    margin: 0 0 0.65rem;

    color: rgb(250 247 242 / 82%);
    line-height: 1.75;
}

.tamaya-footer-content .izjava p {
    max-width: 70ch;
}

/* Contact links */
.tamaya-footer-content a {
    color: var(--tamaya-secondary-light);
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

.tamaya-footer-content a:hover,
.tamaya-footer-content a:focus {
    color: var(--tamaya-accent);
}

.footer .grid-child{
    padding: 0;
}

.footer{
    margin-top: 0 !important;
}

.items-more{
    display: none;
}
/* Mobile layout */
@media (max-width: 767.98px) {
    .tamaya-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-block: 2.5rem;
    }

    .tamaya-footer-content .info {
        padding-top: 2rem;
        padding-left: 0;

        border-top: 1px solid rgb(255 255 255 / 18%);
        border-left: 0;
    }
}


/* ==================================================
   MOBILE HEADER
   ================================================== */

@media (max-width: 991.98px) {
    .container-header {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 0.6rem 1rem;
    }

    .container-header > .grid-child:first-child {
        grid-column: 1;
    }

    .container-header > .container-nav {
        grid-column: 2;
        justify-self: end;
    }

    .container-header .navbar {
        position: static;
    }

    .container-header .navbar-brand img {
        max-width: 145px;
        max-height: 58px;
    }

    .container-header .navbar-toggler {
        color: var(--tamaya-primary-dark);
        border-color: var(--tamaya-border);
    }

    .container-header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;

        padding: 0.75rem;

        background: var(--tamaya-surface);
        border: 1px solid var(--tamaya-border);
        border-radius: 0 0 0.9rem 0.9rem;
        box-shadow: 0 14px 30px rgb(79 58 74 / 14%);
    }

    .container-header .mod-menu {
        align-items: stretch;
        gap: 0;
    }
}



/* ==========================================================
   TAMAYA — SHARED CSS FOR ALL STORITVE PAGES
   Joomla 6 / Cassiopeia
   ========================================================== */

/* ---------- 1. Page variables and full-width reset ---------- */

.tamaya-service-page {
    --service-bg: #faf7f2;
    --service-bg-soft: #f3ece5;
    --service-paper: #fffdf9;
    --service-heading: #49382f;
    --service-text: #65564e;
    --service-purple: #70556d;
    --service-purple-soft: #cdb8d1;
    --service-gold: #b8894d;
    --service-gold-dark: #91653a;
    --service-gold-light: #e1c18b;
    --service-border: rgba(184, 137, 77, 0.22);
    --service-shadow: 0 24px 65px rgba(61, 43, 36, 0.11);
    --service-content: 1080px;
    --service-wide: 1440px;
    --service-hero-position: center center;

    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 0 -50vw;
    overflow: hidden;

    color: var(--service-text);
    background: var(--service-bg);
}

.com-content-article:has(.tamaya-service-page),
.com-content-article__body:has(.tamaya-service-page),
.item-page:has(.tamaya-service-page) {
    margin: 0;
    padding: 0;
}

.tamaya-service-page *,
.tamaya-service-page *::before,
.tamaya-service-page *::after {
    box-sizing: border-box;
}

/* Optional page-specific hero positions */

.tamaya-service-page--karmicna {
    --service-hero-position: center center;
}

.tamaya-service-page--ciscenje {
    --service-hero-position: center center;
}

.tamaya-service-page--kvantni {
    --service-hero-position: center center;
}

.tamaya-service-page--esence {
    --service-hero-position: center center;
}


/* ---------- 2. Hero ---------- */

.tamaya-service-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: clamp(560px, 76vh, 800px);
    overflow: hidden;
    background: #050819;
}

.tamaya-service-hero__media {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.tamaya-service-page--karmicna
.tamaya-service-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: center 10%;
}

.itemid-110 .tamaya-service-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 29%;
}

.tamaya-service-hero__media img,
.tamaya-service-hero__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--service-hero-position);
}

/* Darker on the left for readable text */
.tamaya-service-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
background:
    linear-gradient(
        90deg,
        rgba(48, 27, 60, 0.94) 0%,
        rgba(68, 39, 76, 0.84) 30%,
        rgba(105, 66, 101, 0.50) 58%,
        rgba(135, 91, 111, 0.08) 100%
    ),
    linear-gradient(
        0deg,
        rgba(43, 23, 54, 0.55) 0%,
        transparent 50%
    );
}

.tamaya-service-hero::before {
    position: absolute;
    top: 12%;
    left: 0;
    z-index: -2;
    width: min(48vw, 650px);
    aspect-ratio: 1;
    content: "";
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(192, 139, 76, 0.14),
        transparent 68%
    );
    filter: blur(35px);
}

.tamaya-service-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 110px;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(4, 7, 24, 0.35)
    );
}

.tamaya-service-hero__content {
    position: relative;
    z-index: 1;
    width: min(
        calc(100% - clamp(2.5rem, 10vw, 11rem)),
        var(--service-wide)
    );
    margin-inline: auto;
    padding-block: clamp(6rem, 11vw, 10rem);
    color: #fff;
}

.tamaya-service-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1rem;
    color: var(--service-gold-light);
    font-size: clamp(0.7rem, 0.9vw, 0.82rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tamaya-service-hero__eyebrow::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
    opacity: 0.7;
}

.tamaya-service-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6.4vw, 6.2rem);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.tamaya-service-hero__lead {
    max-width: 630px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.03rem, 1.45vw, 1.27rem);
    line-height: 1.72;
}


/* ---------- 3. Buttons ---------- */

.tamaya-service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 48px;
    margin-top: 2rem;
    padding: 0.88rem 1.5rem;

    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        var(--service-gold),
        var(--service-gold-dark)
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow:
        0 13px 32px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        filter 240ms ease;
}

.tamaya-service-button::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;
    transition: transform 240ms ease;
}

.tamaya-service-button:hover,
.tamaya-service-button:focus-visible {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.07);
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tamaya-service-button:hover::after,
.tamaya-service-button:focus-visible::after {
    transform: translateX(4px);
}

.tamaya-service-button:focus-visible {
    outline: 3px solid rgba(225, 193, 139, 0.5);
    outline-offset: 4px;
}


/* ---------- 4. Main article content ---------- */

.tamaya-service-content {
    position: relative;
    width: min(calc(100% - 2rem), var(--service-content));
    margin-inline: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

#vsebina {
    scroll-margin-top: 100px;
}

.tamaya-service-copy {
    max-width: 80ch;
}

.tamaya-service-section {
    position: relative;
    padding-block: clamp(3rem, 6vw, 5.25rem);
}

.tamaya-service-section:first-child {
    padding-top: 0;
}

.tamaya-service-section + .tamaya-service-section {
    border-top: 1px solid var(--service-border);
}

.tamaya-service-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    margin: 0 0 0.85rem;
    color: var(--service-gold-dark);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tamaya-service-section__eyebrow::before {
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
    opacity: 0.65;
}

.tamaya-service-section h2 {
    max-width: 850px;
    margin: 0 0 1.5rem;
    color: var(--service-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.05rem, 4vw, 3.55rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.tamaya-service-section h3 {
    max-width: 800px;
    margin: 2.3rem 0 1rem;
    color: var(--service-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.25vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
}

.tamaya-service-section p {
    max-width: 80ch;
    margin: 0 0 1.35rem;
    color: var(--service-text);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.87;
}

.tamaya-service-section p:last-child {
    margin-bottom: 0;
}

.tamaya-service-section strong {
    color: var(--service-heading);
}

.tamaya-service-section a:not(.tamaya-service-button) {
    color: var(--service-purple);
    text-decoration-color: rgba(112, 85, 109, 0.36);
    text-underline-offset: 0.2em;
}

.tamaya-service-section a:not(.tamaya-service-button):hover {
    color: var(--service-gold-dark);
}


/* ---------- 5. Soft full-width text section ---------- */

.tamaya-service-section--soft {
    margin-inline: calc(50% - 50vw);
    padding-inline: max(
        1rem,
        calc((100vw - var(--service-content)) / 2)
    );
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(112, 85, 109, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(184, 137, 77, 0.09),
            transparent 30%
        ),
        var(--service-bg-soft);
    border-top: 1px solid rgba(184, 137, 77, 0.12);
    border-bottom: 1px solid rgba(184, 137, 77, 0.12);
}

.tamaya-service-section--soft +
.tamaya-service-section {
    border-top: 0;
}


/* ---------- 6. Lists from the old articles ---------- */

.tamaya-service-section ul,
.tamaya-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
    max-width: 940px;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.tamaya-service-section ul li,
.tamaya-service-list li {
    position: relative;
    min-width: 0;
    padding: 0.15rem 0 0.15rem 1.7rem;
    color: var(--service-text);
    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    line-height: 1.68;
}

.tamaya-service-section ul li::before,
.tamaya-service-list li::before {
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--service-gold);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(184, 137, 77, 0.1),
        0 0 14px rgba(184, 137, 77, 0.35);
}

.tamaya-service-section ol {
    max-width: 850px;
    margin: 2rem 0 0;
    padding-left: 1.5rem;
}

.tamaya-service-section ol li {
    margin-bottom: 0.9rem;
    padding-left: 0.4rem;
    line-height: 1.75;
}

.tamaya-service-section ol li::marker {
    color: var(--service-gold-dark);
    font-weight: 700;
}


/* ---------- 7. Optional highlight/quote blocks ---------- */

.tamaya-service-highlight {
    position: relative;
    max-width: 900px;
    margin: 2.5rem 0 0;
    padding: clamp(1.5rem, 3vw, 2.35rem);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--service-border);
    border-radius: 20px;
    box-shadow: 0 16px 45px rgba(73, 56, 47, 0.06);
}

.tamaya-service-highlight::before {
    position: absolute;
    top: 1.4rem;
    bottom: 1.4rem;
    left: 0;
    width: 3px;
    content: "";
    background: linear-gradient(
        to bottom,
        var(--service-gold-light),
        var(--service-purple-soft)
    );
    border-radius: 999px;
}

.tamaya-service-quote {
    max-width: 850px;
    margin: clamp(2.5rem, 5vw, 4rem) auto;
    padding: clamp(2rem, 4vw, 3.5rem);
    color: var(--service-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.6vw, 2.15rem);
    font-style: italic;
    line-height: 1.48;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.88),
        rgba(244, 238, 231, 0.85)
    );
    border: 1px solid var(--service-border);
    border-radius: 24px;
}

.tamaya-service-quote::before {
    display: block;
    margin-bottom: 0.5rem;
    content: "“";
    color: var(--service-gold);
    font-size: 4rem;
    font-style: normal;
    line-height: 0.7;
}


/* ---------- 8. CTA ---------- */

.tamaya-service-cta {
    position: relative;
    overflow: hidden;
    margin-top: clamp(3rem, 7vw, 6rem);
    padding: clamp(2.5rem, 6vw, 5rem);
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(225, 193, 139, 0.23),
            transparent 44%
        ),
        radial-gradient(
            circle at 10% 100%,
            rgba(112, 85, 109, 0.08),
            transparent 32%
        ),
        var(--service-paper);
    border: 1px solid var(--service-border);
    border-radius: 28px;
    box-shadow: var(--service-shadow);
}

.tamaya-service-cta::before,
.tamaya-service-cta::after {
    position: absolute;
    width: 180px;
    aspect-ratio: 1;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(184, 137, 77, 0.1);
    border-radius: 50%;
}

.tamaya-service-cta::before {
    top: -85px;
    left: -65px;
}

.tamaya-service-cta::after {
    right: -70px;
    bottom: -95px;
}

.tamaya-service-cta__eyebrow {
    margin: 0 0 0.85rem;
    color: var(--service-gold-dark);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tamaya-service-cta h2 {
    max-width: 800px;
    margin: 0 auto 1.2rem;
    color: var(--service-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.05rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.tamaya-service-cta p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--service-text);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.75;
}


/* ---------- 9. Tablet ---------- */

@media (max-width: 991px) {
    .tamaya-service-hero {
        min-height: 650px;
    }

    .tamaya-service-hero__content {
        width: min(calc(100% - 3rem), var(--service-wide));
    }

    .tamaya-service-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 7, 24, 0.92) 0%,
                rgba(4, 7, 24, 0.77) 50%,
                rgba(4, 7, 24, 0.36) 100%
            ),
            linear-gradient(
                0deg,
                rgba(4, 7, 24, 0.55),
                transparent 54%
            );
    }
}


/* ---------- 10. Mobile ---------- */

@media (max-width: 700px) {
    .tamaya-service-page {
        --service-hero-position: center center;
    }

    .tamaya-service-hero {
        align-items: end;
        min-height: 620px;
    }

    .tamaya-service-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(4, 7, 24, 0.97) 0%,
                rgba(4, 7, 24, 0.84) 40%,
                rgba(4, 7, 24, 0.3) 80%,
                rgba(4, 7, 24, 0.12) 100%
            );
    }

    .tamaya-service-hero::before {
        top: auto;
        bottom: 4%;
        left: -25%;
        width: 420px;
    }

    .tamaya-service-hero__content {
        width: 100%;
        margin: 0;
        padding: 5rem 1.25rem 3.5rem;
    }

    .tamaya-service-hero__eyebrow {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .tamaya-service-hero__eyebrow::before {
        width: 28px;
    }

    .tamaya-service-hero h1 {
        max-width: 100%;
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 1;
    }

    .tamaya-service-hero__lead {
        max-width: 100%;
        margin-top: 1.1rem;
        font-size: 1rem;
        line-height: 1.62;
    }

    .tamaya-service-button {
        margin-top: 1.5rem;
        padding-inline: 1.25rem;
    }

    .tamaya-service-content {
        width: min(calc(100% - 2rem), var(--service-content));
        padding-block: 3.5rem;
    }

    .tamaya-service-section {
        padding-block: 3.2rem;
    }

    .tamaya-service-section h2,
    .tamaya-service-cta h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .tamaya-service-section p {
        font-size: 1rem;
        line-height: 1.77;
    }

    .tamaya-service-section--soft {
        padding-inline: 1rem;
    }

    .tamaya-service-section ul,
    .tamaya-service-list {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .tamaya-service-highlight {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .tamaya-service-quote {
        padding: 2rem 1.3rem;
        border-radius: 18px;
    }

    .tamaya-service-cta {
        padding: 2.5rem 1.35rem;
        border-radius: 20px;
    }
}

@media (max-width: 390px) {
    .tamaya-service-hero {
        min-height: 590px;
    }

    .tamaya-service-hero__content {
        padding-inline: 1rem;
    }

    .tamaya-service-hero h1 {
        font-size: 2.5rem;
    }

    .tamaya-service-button {
        width: 100%;
    }

    .tamaya-service-content {
        width: calc(100% - 1.5rem);
    }
}


/* ---------- 11. Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    .tamaya-service-button,
    .tamaya-service-button::after {
        transition: none;
    }

    .tamaya-service-button:hover,
    .tamaya-service-button:focus-visible {
        transform: none;
    }
}



/* ==========================================================
   TAMAYA — CENIK
   ========================================================== */

.tamaya-price-page {
    --price-bg: #faf7f2;
    --price-bg-soft: #f3ece5;
    --price-paper: #fffdf9;

    --price-heading: #49382f;
    --price-text: #66574f;
    --price-purple: #70556d;

    --price-gold: #b8894d;
    --price-gold-dark: #91653a;
    --price-gold-light: #dfbf8b;

    --price-border: rgba(184, 137, 77, 0.23);
    --price-shadow: 0 22px 60px rgba(73, 56, 47, 0.09);

    --price-content-width: 1060px;
    --price-wide-width: 1440px;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin: 0 0 0 -50vw;
    padding: 0;

    overflow: hidden;

    color: var(--price-text);
    background: var(--price-bg);
}

.tamaya-price-page *,
.tamaya-price-page *::before,
.tamaya-price-page *::after {
    box-sizing: border-box;
}

/* Remove Joomla article spacing */

.com-content-article:has(.tamaya-price-page),
.com-content-article__body:has(.tamaya-price-page),
.item-page:has(.tamaya-price-page) {
    margin: 0;
    padding: 0;
}

/* ==========================================================
   HERO
   ========================================================== */

.tamaya-price-hero {
    position: relative;
    isolation: isolate;

    display: grid;
    align-items: center;

    min-height: clamp(390px, 52vh, 560px);
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(183, 139, 203, 0.28),
            transparent 34%
        ),
        radial-gradient(
            circle at 22% 80%,
            rgba(223, 191, 139, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #080b22,
            #15102a 58%,
            #281737
        );
}

.tamaya-price-hero::before,
.tamaya-price-hero::after {
    position: absolute;
    z-index: -1;

    width: clamp(250px, 36vw, 520px);
    aspect-ratio: 1;

    content: "";
    pointer-events: none;

    border: 1px solid rgba(223, 191, 139, 0.11);
    border-radius: 50%;
}

.tamaya-price-hero::before {
    top: -48%;
    right: 8%;
}

.tamaya-price-hero::after {
    right: -8%;
    bottom: -70%;
}

.tamaya-price-hero__decoration {
    position: absolute;
    top: 50%;
    right: clamp(2rem, 11vw, 10rem);

    width: clamp(180px, 25vw, 360px);
    aspect-ratio: 1;

    border: 1px solid rgba(223, 191, 139, 0.13);
    border-radius: 50%;

    transform: translateY(-50%);
}

.tamaya-price-hero__decoration::before,
.tamaya-price-hero__decoration::after {
    position: absolute;
    inset: 15%;

    content: "";

    border: 1px solid rgba(205, 184, 209, 0.13);
    border-radius: 50%;
}

.tamaya-price-hero__decoration::after {
    inset: 30%;
    border-color: rgba(223, 191, 139, 0.2);
}

.tamaya-price-hero__content {
    width: min(
        calc(100% - clamp(2.5rem, 10vw, 11rem)),
        var(--price-wide-width)
    );

    margin-inline: auto;
    padding-block: clamp(5rem, 10vw, 8rem);

    color: #fff;
}

.tamaya-price-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;

    margin: 0 0 1rem;

    color: var(--price-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tamaya-price-hero__eyebrow::before {
    width: 42px;
    height: 1px;

    content: "";
    background: currentColor;
}

.tamaya-price-hero h1 {
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
}

.tamaya-price-hero__lead {
    max-width: 620px;
    margin: 1.4rem 0 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.7;
}

/* ==========================================================
   CONTENT
   ========================================================== */

.tamaya-price-content {
    width: min(
        calc(100% - 2rem),
        var(--price-content-width)
    );

    margin-inline: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.tamaya-price-section {
    padding-block: clamp(3rem, 6vw, 5rem);
}

.tamaya-price-section:first-child {
    padding-top: 0;
}

.tamaya-price-section + .tamaya-price-section {
    border-top: 1px solid var(--price-border);
}

.tamaya-price-section--soft {
    position: relative;

    margin-inline: calc(50% - 50vw);

    padding-inline:
        max(
            1rem,
            calc((100vw - var(--price-content-width)) / 2)
        );

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(112, 85, 109, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 90%,
            rgba(184, 137, 77, 0.09),
            transparent 30%
        ),
        var(--price-bg-soft);

    border-top: 1px solid rgba(184, 137, 77, 0.14);
    border-bottom: 1px solid rgba(184, 137, 77, 0.14);
}

.tamaya-price-section--soft +
.tamaya-price-section {
    border-top: 0;
}

/* ==========================================================
   SECTION HEADERS
   ========================================================== */

.tamaya-price-section__header {
    max-width: 800px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tamaya-price-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;

    margin: 0 0 0.8rem;

    color: var(--price-gold-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tamaya-price-section__eyebrow::before {
    width: 34px;
    height: 1px;

    content: "";
    background: currentColor;
}

.tamaya-price-section h2 {
    margin: 0;

    color: var(--price-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;

    text-wrap: balance;
}

/* ==========================================================
   PRICE LIST
   ========================================================== */

.tamaya-price-list {
    border-top: 1px solid var(--price-border);
}

.tamaya-price-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;

    min-height: 105px;
    padding: 1.5rem 0;

    border-bottom: 1px solid var(--price-border);

    transition:
        padding 240ms ease,
        background 240ms ease;
}

.tamaya-price-item:hover {
    padding-inline: 1.2rem;

    background: rgba(255, 255, 255, 0.48);
}

.tamaya-price-item__content {
    min-width: 0;
}

.tamaya-price-item__content h3 {
    margin: 0;

    color: var(--price-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.3;
}

.tamaya-price-item__content p {
    margin: 0.35rem 0 0;

    color: var(--price-purple);
    font-size: 0.92rem;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.tamaya-price-item__price {
    min-width: 115px;
    margin: 0;

    color: var(--price-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

/* ==========================================================
   VALIDITY
   ========================================================== */

.tamaya-price-footer {
    margin-top: clamp(3rem, 7vw, 6rem);
    padding: clamp(2rem, 5vw, 3.5rem);

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(223, 191, 139, 0.2),
            transparent 48%
        ),
        var(--price-paper);

    border: 1px solid var(--price-border);
    border-radius: 24px;

    box-shadow: var(--price-shadow);
}

.tamaya-price-footer__label {
    margin: 0 0 0.6rem;

    color: var(--price-gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tamaya-price-footer__date {
    margin: 0;

    color: var(--price-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.2;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {
    .tamaya-price-hero__decoration {
        right: -5%;
        opacity: 0.55;
    }

    .tamaya-price-hero__content {
        width: calc(100% - 3rem);
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {
    .tamaya-price-hero {
        min-height: 420px;
    }

    .tamaya-price-hero__content {
        width: 100%;
        padding: 5rem 1.25rem 4rem;
    }

    .tamaya-price-hero h1 {
        font-size: clamp(3.3rem, 17vw, 4.6rem);
    }

    .tamaya-price-hero__lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .tamaya-price-hero__decoration {
        top: 25%;
        right: -35%;
        width: 300px;
        opacity: 0.4;
    }

    .tamaya-price-content {
        width: calc(100% - 2rem);
        padding-block: 3.5rem;
    }

    .tamaya-price-section {
        padding-block: 3.25rem;
    }

    .tamaya-price-section--soft {
        padding-inline: 1rem;
    }

    .tamaya-price-item {
        grid-template-columns: 1fr;
        gap: 0.85rem;

        min-height: auto;
        padding-block: 1.4rem;
    }

    .tamaya-price-item:hover {
        padding-inline: 0.75rem;
    }

    .tamaya-price-item__content h3 {
        font-size: 1.3rem;
    }

    .tamaya-price-item__price {
        min-width: 0;
        font-size: 2rem;
        text-align: left;
    }

    .tamaya-price-footer {
        border-radius: 19px;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-price-item {
        transition: none;
    }
}



/* ==========================================================
   TAMAYA — O MENI
   ========================================================== */

.tamaya-about-page {
    --about-bg: #faf7f2;
    --about-bg-soft: #f3ece5;
    --about-paper: #fffdf9;

    --about-heading: #49382f;
    --about-text: #66574f;
    --about-purple: #70556d;
    --about-purple-soft: #cdb8d1;

    --about-gold: #b8894d;
    --about-gold-dark: #91653a;
    --about-gold-light: #dfbf8b;

    --about-border: rgba(184, 137, 77, 0.22);
    --about-shadow: 0 24px 65px rgba(73, 56, 47, 0.1);

    --about-content-width: 1080px;
    --about-wide-width: 1440px;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin: 0 0 0 -50vw;
    padding: 0;

    overflow: hidden;

    color: var(--about-text);
    background: var(--about-bg);
}

.tamaya-about-page *,
.tamaya-about-page *::before,
.tamaya-about-page *::after {
    box-sizing: border-box;
}

/* Remove Joomla article spacing */

.com-content-article:has(.tamaya-about-page),
.com-content-article__body:has(.tamaya-about-page),
.item-page:has(.tamaya-about-page) {
    margin: 0;
    padding: 0;
}

/* ==========================================================
   HERO
   ========================================================== */

.tamaya-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);

    /* Never taller than the browser screen */
    min-height: 0;
    height: clamp(650px, 82vh, 850px);
    max-height: 100vh;

    /* Better sizing on mobile browsers */
    height: clamp(650px, 82dvh, 850px);
    max-height: 100dvh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(205, 184, 209, 0.2),
            transparent 32%
        ),
        radial-gradient(
            circle at 68% 85%,
            rgba(223, 191, 139, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080b22,
            #17112a 58%,
            #281638
        );
}

.tamaya-about-hero__image {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.tamaya-about-hero__image::after {
    position: absolute;
    inset: 0;

    content: "";
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 58%,
            rgba(10, 10, 29, 0.88) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 9, 26, 0.32),
            transparent 50%
        );
}

.tamaya-about-hero__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 36%;
}

.tamaya-about-hero__content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-width: 0;
    padding:
        clamp(5rem, 9vw, 9rem)
        clamp(2rem, 8vw, 8rem)
        clamp(5rem, 9vw, 9rem)
        clamp(2.5rem, 6vw, 6rem);

    color: #fff;
}

.tamaya-about-hero__content::before {
    position: absolute;
    top: 12%;
    right: 8%;

    width: clamp(180px, 24vw, 370px);
    aspect-ratio: 1;

    content: "";
    pointer-events: none;

    border: 1px solid rgba(223, 191, 139, 0.11);
    border-radius: 50%;

    box-shadow:
        0 0 0 45px rgba(205, 184, 209, 0.025),
        0 0 0 90px rgba(223, 191, 139, 0.018);
}

.tamaya-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    margin: 0 0 0.85rem;

    color: var(--about-gold-dark);
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tamaya-about-eyebrow::before {
    width: 35px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.7;
}

.tamaya-about-hero__content .tamaya-about-eyebrow {
    color: var(--about-gold-light);
}

.tamaya-about-hero h1 {
    position: relative;
    max-width: 720px;
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 6.8vw, 6.7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;

    text-wrap: balance;
}

.tamaya-about-hero__lead {
    position: relative;
    max-width: 560px;
    margin: 1.5rem 0 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.72;
}

/* ==========================================================
   BUTTON
   ========================================================== */

.tamaya-about-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;

    min-height: 48px;
    margin-top: 2rem;
    padding: 0.88rem 1.5rem;

    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    background:
        linear-gradient(
            135deg,
            var(--about-gold),
            var(--about-gold-dark)
        );

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;

    box-shadow:
        0 13px 32px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        filter 240ms ease;
}

.tamaya-about-button::after {
    content: "→";
    font-size: 1rem;
    line-height: 1;

    transition: transform 240ms ease;
}

.tamaya-about-button:hover,
.tamaya-about-button:focus-visible {
    color: #fff;
    text-decoration: none;

    filter: brightness(1.07);
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tamaya-about-button:hover::after,
.tamaya-about-button:focus-visible::after {
    transform: translateX(4px);
}

.tamaya-about-button:focus-visible {
    outline: 3px solid rgba(223, 191, 139, 0.5);
    outline-offset: 4px;
}

/* ==========================================================
   CONTENT
   ========================================================== */

.tamaya-about-content {
    width: min(
        calc(100% - 2rem),
        var(--about-content-width)
    );

    margin-inline: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

#moja-pot {
    scroll-margin-top: 100px;
}

/* ==========================================================
   INTRO
   ========================================================== */

.tamaya-about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: clamp(2.5rem, 7vw, 7rem);

    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.tamaya-about-intro__heading,
.tamaya-about-intro__text {
    min-width: 0;
}

.tamaya-about-intro h2 {
    margin: 0;

    color: var(--about-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.tamaya-about-intro__text p {
    margin: 0;

    color: var(--about-text);
    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
    line-height: 1.9;
}

/* ==========================================================
   STORY SECTIONS
   ========================================================== */

.tamaya-about-section {
    display: grid;
    grid-template-columns: minmax(80px, 0.2fr) minmax(0, 0.8fr);
    gap: clamp(1.5rem, 5vw, 5rem);

    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.tamaya-about-section + .tamaya-about-section {
    border-top: 1px solid var(--about-border);
}

.tamaya-about-section--soft {
    position: relative;

    margin-inline: calc(50% - 50vw);

    padding-inline:
        max(
            1rem,
            calc((100vw - var(--about-content-width)) / 2)
        );

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(112, 85, 109, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(184, 137, 77, 0.09),
            transparent 30%
        ),
        var(--about-bg-soft);

    border-top: 1px solid rgba(184, 137, 77, 0.13);
    border-bottom: 1px solid rgba(184, 137, 77, 0.13);
}

.tamaya-about-section--soft +
.tamaya-about-section {
    border-top: 0;
}

.tamaya-about-section__number {
    color: rgba(145, 101, 58, 0.25);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    line-height: 0.9;
}

.tamaya-about-section__content {
    min-width: 0;
}

.tamaya-about-section h2 {
    max-width: 800px;
    margin: 0 0 1.5rem;

    color: var(--about-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;

    text-wrap: balance;
}

.tamaya-about-section p {
    max-width: 78ch;
    margin: 0;

    color: var(--about-text);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.87;
}

/* ==========================================================
   TEXT LINKS
   ========================================================== */

.tamaya-about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    margin-top: 1.5rem;

    color: var(--about-purple);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.tamaya-about-text-link::after {
    content: "→";

    color: var(--about-gold-dark);
    font-size: 1rem;

    transition: transform 220ms ease;
}

.tamaya-about-text-link:hover {
    color: var(--about-gold-dark);
    text-decoration: none;
}

.tamaya-about-text-link:hover::after {
    transform: translateX(4px);
}

/* ==========================================================
   CTA
   ========================================================== */

.tamaya-about-cta {
    position: relative;
    overflow: hidden;

    margin-top: clamp(3rem, 7vw, 6rem);
    padding: clamp(2.5rem, 6vw, 5rem);

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(223, 191, 139, 0.23),
            transparent 44%
        ),
        radial-gradient(
            circle at 10% 100%,
            rgba(112, 85, 109, 0.08),
            transparent 32%
        ),
        var(--about-paper);

    border: 1px solid var(--about-border);
    border-radius: 28px;

    box-shadow: var(--about-shadow);
}

.tamaya-about-cta .tamaya-about-eyebrow {
    justify-content: center;
}

.tamaya-about-cta .tamaya-about-eyebrow::after {
    width: 35px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.7;
}

.tamaya-about-cta h2 {
    max-width: 800px;
    margin: 0 auto 1.2rem;

    color: var(--about-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;

    text-wrap: balance;
}

.tamaya-about-cta p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--about-text);
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.75;
}

/* ==========================================================
   O MENI — RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
    .tamaya-about-hero {
        grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
        min-height: 680px;
    }

    .tamaya-about-hero__content {
        padding-inline: 2.5rem;
    }

    .tamaya-about-hero h1 {
        font-size: clamp(3.2rem, 7vw, 5.2rem);
    }
}

@media (max-width: 800px) {
    .tamaya-about-hero {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 46%) minmax(0, 54%);
        min-height: 0;
        height: min(100svh, 820px);
        max-height: 100svh;
    }

    @supports (height: 100dvh) {
        .tamaya-about-hero {
            height: min(100dvh, 820px);
            max-height: 100dvh;
        }
    }

    .tamaya-about-hero__image {
        min-height: 0;
    }

    .tamaya-about-hero__image img {
        object-position: center 31%;
    }

    .tamaya-about-hero__image::after {
        background: linear-gradient(
            to bottom,
            transparent 48%,
            rgba(10, 10, 29, 0.84) 100%
        );
    }

    .tamaya-about-hero__content {
        min-height: 0;
        justify-content: center;
        margin: 0;
        padding: 1.6rem 1.25rem 2rem;
        overflow: hidden;
    }

    .tamaya-about-hero__content::before {
        display: none;
    }

    .tamaya-about-hero h1 {
        max-width: 100%;
        font-size: clamp(2.55rem, 11vw, 3.75rem);
        line-height: 0.98;
    }

    .tamaya-about-hero__lead {
        max-width: 34rem;
        margin-top: 1rem;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .tamaya-about-button {
        min-height: 44px;
        margin-top: 1.25rem;
        padding: 0.75rem 1.15rem;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .tamaya-about-content {
        width: calc(100% - 2rem);
        padding-block: 3.5rem;
    }

    .tamaya-about-intro,
    .tamaya-about-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .tamaya-about-intro {
        gap: 1.5rem;
        padding-bottom: 4rem;
    }

    .tamaya-about-intro h2 {
        max-width: 100%;
        font-size: clamp(2.4rem, 11vw, 3.25rem);
    }

    .tamaya-about-intro__text p,
    .tamaya-about-section p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.78;
    }

    .tamaya-about-section {
        gap: 1rem;
        padding-block: 3.25rem;
    }

    .tamaya-about-section__number,
    .tamaya-about-section__content {
        min-width: 0;
        width: 100%;
    }

    .tamaya-about-section__number {
        margin-bottom: 0.25rem;
        font-size: 3rem;
        line-height: 1;
    }

    .tamaya-about-section h2,
    .tamaya-about-cta h2 {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .tamaya-about-section--soft {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-inline: 1rem;
    }

    .tamaya-about-cta {
        padding: 2.5rem 1.35rem;
        border-radius: 20px;
    }
}

@media (max-width: 390px) {
    .tamaya-about-hero {
        grid-template-rows: minmax(0, 42%) minmax(0, 58%);
    }

    .tamaya-about-hero__content {
        padding: 1.35rem 1rem 1.65rem;
    }

    .tamaya-about-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3rem);
    }

    .tamaya-about-hero__lead {
        margin-top: 0.8rem;
        font-size: 0.91rem;
        line-height: 1.48;
    }

    .tamaya-about-button {
        width: 100%;
        margin-top: 1rem;
    }

    .tamaya-about-content {
        width: calc(100% - 1.5rem);
    }

    .tamaya-about-section--soft {
        padding-inline: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tamaya-about-button,
    .tamaya-about-button::after,
    .tamaya-about-text-link::after {
        transition: none;
    }

    .tamaya-about-button:hover {
        transform: none;
    }
}


/* ==========================================================
   TAMAYA — MENU CTA BUTTON
   ========================================================== */

.container-header .mod-menu {
    align-items: center;
}

/* Push the CTA to the right side of the desktop menu */
.container-header .mod-menu > li:has(> a.tamaya-menu-cta) {
    margin-left: auto;
    padding-left: clamp(1rem, 2vw, 2rem);
}

.container-header a.tamaya-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    min-height: 44px;
    padding: 0.75rem 1.35rem;

    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        #8b5f8f,
        #604164
    );

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;

    box-shadow:
        0 10px 26px rgba(73, 56, 47, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        filter 220ms ease;
}

.container-header a.tamaya-menu-cta::after {
    content: "→";
    font-size: 0.95rem;
    line-height: 1;

    transition: transform 220ms ease;
}

.container-header a.tamaya-menu-cta:hover,
.container-header a.tamaya-menu-cta:focus-visible,
.container-header .active > a.tamaya-menu-cta {
    color: #ffffff;
    text-decoration: none;

    filter: brightness(1.07);
    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(73, 56, 47, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.container-header a.tamaya-menu-cta:hover::after,
.container-header a.tamaya-menu-cta:focus-visible::after {
    transform: translateX(4px);
}

.container-header a.tamaya-menu-cta:focus-visible {
    outline: 3px solid rgba(223, 191, 139, 0.45);
    outline-offset: 4px;
}

/* Mobile menu */
@media (max-width: 991px) {
    .container-header .mod-menu > li:has(> a.tamaya-menu-cta) {
        width: 100%;
        margin-left: 0;
        padding: 0.75rem 0 0;
    }

    .container-header a.tamaya-menu-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .container-header a.tamaya-menu-cta,
    .container-header a.tamaya-menu-cta::after {
        transition: none;
    }

    .container-header a.tamaya-menu-cta:hover {
        transform: none;
    }
}

/* ==========================================================
   TAMAYA — ARTICLE LIST PAGES
   Objave, Mnenja strank, Primeri svetovanj

   Works with either:
   - only the individual page class, or
   - tamaya-list-page plus the individual page class
   ========================================================== */

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) {
    --list-background: #faf7f2;
    --list-surface: rgba(255, 255, 255, 0.56);
    --list-surface-hover: rgba(255, 255, 255, 0.76);
    --list-heading: #49382f;
    --list-text: #62544c;
    --list-purple: #705568;
    --list-gold: #b89560;
    --list-gold-dark: #8f673c;
    --list-border: rgba(255, 255, 255, 0.84);
    --list-shadow: 0 18px 48px rgba(67, 52, 67, 0.11);
    --list-shadow-hover: 0 28px 68px rgba(67, 52, 67, 0.17);
    --list-width: 1180px;

    background-color: var(--list-background);
    background-image:
        linear-gradient(
            rgba(250, 247, 242, 0.72),
            rgba(250, 247, 242, 0.88)
        ),
        url("/images/objave-background.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

/* Transparent Joomla containers */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) :is(.site-grid, .grid-child, main) {
    background: transparent;
}

/* Main category layout */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog {
    position: relative;
    width: min(calc(100% - 2rem), var(--list-width));
    margin-inline: auto;
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

/* Optional category page heading */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .page-header {
    display: block;
    max-width: 780px;
    margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
    padding: 0;
    text-align: center;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .page-header::before {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--list-gold-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    content: "Tamaya";
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .page-header :is(h1, h2) {
    margin: 0;
    color: var(--list-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

/* Only Joomla's top-level article list */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Only top-level article cards */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;

    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.65rem);

    background: var(--list-surface);
    border: 1px solid var(--list-border);
    border-radius: 26px;
    box-shadow:
        var(--list-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    transform: translateY(0);
    transition:
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item:hover,
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item:focus-within {
    background: var(--list-surface-hover);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
        var(--list-shadow-hover),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transform: translateY(-6px);
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item::before {
    position: absolute;
    top: 0;
    right: clamp(1.5rem, 4vw, 2.65rem);
    left: clamp(1.5rem, 4vw, 2.65rem);
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        rgba(184, 149, 96, 0.8),
        rgba(112, 85, 104, 0.55),
        transparent
    );
}

/* Joomla wrappers inside each top-level article */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item > .item-content {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/*
 * Some imported articles contain old Joomla blog wrappers in their content.
 * Keep their text, but remove nested grid/card styling.
 */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .blog-items {
    display: block;
    margin: 0;
    padding: 0;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .blog-item .blog-item {
    margin: 0;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .blog-items .blog-item {
    overflow: visible;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
}

/* Remove empty imported wrappers */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .blog-item:has(.page-header:only-child) {
    display: none;
}

/* Article metadata */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item > .item-content > .article-info {
    display: none;
}

/* Article title */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item
  > .item-content > .page-header {
    display: block;
    margin: 0 0 1.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item
  > .item-content > .page-header h2 {
    margin: 0;
    padding: 0;
    color: var(--list-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 400;
    line-height: 1.17;
    letter-spacing: -0.025em;
    text-transform: none;
    text-wrap: balance;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .page-header h2 a {
    color: inherit;
    text-decoration: none;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .page-header h2 a:hover,
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .page-header h2 a:focus-visible {
    color: var(--list-purple);
}

/* Article text */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item
  :is(p, li, .item-content > div) {
    color: var(--list-text);
    font-size: clamp(1rem, 1.1vw, 1.07rem);
    line-height: 1.78;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item p {
    margin: 0 0 1rem;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item p:last-child {
    margin-bottom: 0;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item :is(ul, ol) {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item a:not(.btn) {
    color: var(--list-purple);
    text-decoration-color: rgba(112, 85, 104, 0.35);
    text-underline-offset: 0.18em;
}

/* Optional article images */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .item-image {
    margin: 0 0 1.5rem;
    overflow: hidden;
    border-radius: 18px;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .item-image img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog > .blog-items > .blog-item:hover
  .item-image img {
    transform: scale(1.025);
}

/* Read more */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .readmore {
    margin-top: 1.5rem;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .readmore .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0.72rem 1.2rem;

    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        var(--list-gold),
        var(--list-gold-dark)
    );
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(79, 58, 74, 0.14);
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .blog-item .readmore .btn::after {
    content: "→";
}


/* Primeri svetovanj variation */
body:is(.primeri-svetovanj-page, .itemid-114)
.com-content-category-blog > .blog-items > .blog-item::after {
    position: absolute;
    top: 1.3rem;
    right: clamp(1.5rem, 4vw, 2.65rem);

    width: 42px;
    height: 42px;

    content: "";
    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(184, 149, 96, 0.38) 0 12%,
            transparent 13% 100%
        ),
        radial-gradient(
            circle at center,
            transparent 0 44%,
            rgba(112, 85, 104, 0.12) 45% 47%,
            transparent 48% 100%
        );

    border: 1px solid rgba(184, 149, 96, 0.16);
    border-radius: 50%;
}

body:is(.primeri-svetovanj-page, .itemid-114)
.com-content-category-blog > .blog-items > .blog-item
> .item-content > .page-header {
    padding-right: 4rem;
}

/* Mnenja strank variation */
body:is(.mnenja-strank-page, .itemid-105)
.com-content-category-blog > .blog-items > .blog-item {
    padding-top: clamp(3.5rem, 6vw, 4.6rem);
}

body:is(.mnenja-strank-page, .itemid-105)
.com-content-category-blog > .blog-items > .blog-item::after {
    position: absolute;
    top: 0.7rem;
    left: clamp(1.5rem, 4vw, 2.65rem);
    color: rgba(184, 149, 96, 0.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    line-height: 1;
    content: "“";
}


body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .com-content-category-blog__counter {
    float: none !important;
    margin: 1rem 0 0;
    padding: 0 !important;

    color: var(--list-purple);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

/* Pagination */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .pagination {
    justify-content: center;
    gap: 0.35rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .page-link {
    color: var(--list-purple);
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(184, 149, 96, 0.24);
    border-radius: 999px;
}

body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .active > .page-link {
    color: #fff;
    background: var(--list-purple);
    border-color: var(--list-purple);
}

/* Hide Joomla's extra linked-articles list */
body:is(
    .tamaya-list-page,
    .objave-page,
    .mnenja-strank-page,
    .primeri-svetovanj-page,
    .itemid-104,
    .itemid-105,
    .itemid-114
) .items-more {
    display: none;
}

@media (max-width: 700px) {
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) {
        background-attachment: scroll;
    }

    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog {
        width: min(calc(100% - 1.5rem), var(--list-width));
        padding-block: 3rem 4rem;
    }

    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item {
        padding: 1.35rem;
        border-radius: 20px;
    }

    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item:hover,
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item:focus-within {
        transform: translateY(-3px);
    }

    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item
      > .item-content > .page-header h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    body.mnenja-strank-page
    .com-content-category-blog > .blog-items > .blog-item {
        padding-top: 3.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item,
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .blog-item .item-image img {
        transition: none;
    }

    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item:hover,
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .com-content-category-blog > .blog-items > .blog-item:focus-within,
    body:is(
        .tamaya-list-page,
        .objave-page,
        .mnenja-strank-page,
        .primeri-svetovanj-page
    ) .blog-item .item-image img {
        transform: none;
    }
}

/* ==========================================================
   TAMAYA — CLEAN DESKTOP MENU
   Joomla order:
   Domov, Mnenja strank, Storitve, Blog, O meni, Cenik,
   Naroči se zdaj
   ========================================================== */

.container-header {
    position: relative;
    z-index: 1000;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4.5rem);

    min-height: 82px;
    padding: 0.55rem clamp(1rem, 3.5vw, 4rem);

    background: rgba(255, 255, 255, 0.96);
    background-image: none;
    border-top: 2px solid var(--tamaya-primary-dark);
    border-bottom: 1px solid rgba(112, 85, 104, 0.14);

    box-shadow: 0 8px 30px rgba(52, 47, 50, 0.08);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

/* Logo */
.container-header > .grid-child:first-child {
    grid-column: 1;
    justify-self: start;

    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.container-header .navbar-brand {
    margin: 0;
    padding: 0;
}

.container-header .navbar-brand img {
    display: block;
    width: auto;
    max-width: 138px;
    max-height: 64px;
}

/* Navigation occupies all remaining header space */
.container-header > .container-nav {
    grid-column: 2;
    justify-self: stretch;

    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.container-header .navbar,
.container-header .navbar-collapse {
    width: 100%;
}

.container-header .mod-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.15rem, 0.6vw, 0.7rem);

    width: 100%;
    margin: 0;
    padding: 0;

    color: var(--tamaya-text);
}

.container-header .metismenu > li {
    flex: 0 0 auto;
}

/* Standard links and dropdown headings */
.container-header .metismenu > li > a,
.container-header .metismenu > li > button {
    position: relative;

    min-height: 44px;
    padding: 0.76rem clamp(0.48rem, 0.75vw, 0.78rem);

    color: var(--tamaya-text);
    font-size: clamp(0.82rem, 0.85vw, 0.94rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.015em;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;

    background: transparent;
    border: 0;
    border-radius: 9px;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}

/* Small, clean active underline */
.container-header .metismenu > li > a::after,
.container-header .metismenu > li > button::after {
    position: absolute;
    right: 0.72rem;
    bottom: 0.36rem;
    left: 0.72rem;

    height: 2px;

    content: "";
    pointer-events: none;

    background: var(--tamaya-accent);
    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.container-header .metismenu > li:not(.item-113) > a:hover,
.container-header .metismenu > li:not(.item-113) > a:focus-visible,
.container-header .metismenu > li > button:hover,
.container-header .metismenu > li > button:focus-visible,
.container-header .metismenu > li.active:not(.item-113) > a,
.container-header .metismenu > li.current:not(.item-113) > a {
    color: var(--tamaya-primary);
    background: rgba(112, 85, 104, 0.055);
}

.container-header .metismenu > li:not(.item-113) > a:hover::after,
.container-header .metismenu > li:not(.item-113) > a:focus-visible::after,
.container-header .metismenu > li > button:hover::after,
.container-header .metismenu > li > button:focus-visible::after,
.container-header .metismenu > li.active:not(.item-113) > a::after,
.container-header .metismenu > li.current:not(.item-113) > a::after {
    transform: scaleX(1);
}

/* Move the CTA to the far right */
.container-header .metismenu > li.item-113 {
    margin-left: auto;
    padding-left: clamp(0.8rem, 1.8vw, 2rem);
}

/* Purple CTA */
.container-header a.tamaya-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0.78rem 1.35rem;

    color: #fff;
    font-size: 0.75rem;
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: 0.09em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    background: linear-gradient(
        135deg,
        var(--tamaya-primary),
        var(--tamaya-primary-dark)
    );

    border: 1px solid rgba(79, 58, 74, 0.2);
    border-radius: 999px;

    box-shadow:
        0 10px 24px rgba(79, 58, 74, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    transition:
        transform 200ms ease,
        filter 200ms ease,
        box-shadow 200ms ease;
}

/* Remove the normal menu underline and the previous arrow */
.container-header a.tamaya-menu-cta::after {
    display: none !important;
    content: none !important;
}

.container-header a.tamaya-menu-cta:hover,
.container-header a.tamaya-menu-cta:focus-visible,
.container-header .item-113.active > a.tamaya-menu-cta,
.container-header .item-113.current > a.tamaya-menu-cta {
    color: #fff;
    text-decoration: none;

    filter: brightness(1.07);
    transform: translateY(-2px);

    box-shadow:
        0 15px 32px rgba(79, 58, 74, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.container-header a.tamaya-menu-cta:focus-visible,
.container-header .metismenu > li > a:focus-visible,
.container-header .metismenu > li > button:focus-visible {
    outline: 3px solid rgba(112, 85, 104, 0.24);
    outline-offset: 3px;
}

/* Clean dropdowns */
.container-header .metismenu.mod-menu .mm-collapse {
    min-width: 245px;
    margin-top: 0.35rem;
    padding: 0.48rem;

    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(112, 85, 104, 0.14);
    border-radius: 14px;

    box-shadow: 0 18px 42px rgba(52, 47, 50, 0.14);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.container-header .metismenu .mm-collapse a {
    display: block;
    padding: 0.68rem 0.82rem;

    color: var(--tamaya-text);
    font-size: 0.9rem;
    line-height: 1.35;
    text-decoration: none;

    border-radius: 9px;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease;
}

.container-header .metismenu .mm-collapse a:hover,
.container-header .metismenu .mm-collapse a:focus-visible,
.container-header .metismenu .mm-collapse .current > a {
    color: var(--tamaya-primary-dark);
    background: rgba(112, 85, 104, 0.08);
    transform: translateX(3px);
}

/* Slight compression before the mobile breakpoint */
@media (max-width: 1220px) and (min-width: 992px) {
    .container-header {
        gap: 1.4rem;
        padding-inline: 1.5rem;
    }

    .container-header .navbar-brand img {
        max-width: 118px;
        max-height: 58px;
    }

    .container-header .mod-menu {
        gap: 0.05rem;
    }

    .container-header .metismenu > li > a,
    .container-header .metismenu > li > button {
        padding-inline: 0.46rem;
        font-size: 0.8rem;
    }

    .container-header .metismenu > li.item-113 {
        padding-left: 0.65rem;
    }

    .container-header a.tamaya-menu-cta {
        padding-inline: 1rem;
        font-size: 0.68rem;
    }
}

/* Mobile navigation */
@media (max-width: 991.98px) {
    .container-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;

        min-height: 70px;
        padding: 0.5rem 1rem;
    }

    .container-header > .grid-child:first-child {
        grid-column: 1;
    }

    .container-header > .container-nav {
        grid-column: 2;
        justify-self: end;
        width: auto;
    }

    .container-header .navbar {
        position: static;
        width: auto;
    }

    .container-header .navbar-brand img {
        max-width: 112px;
        max-height: 54px;
    }

    .container-header .navbar-toggler {
        min-width: 44px;
        min-height: 44px;

        color: var(--tamaya-primary-dark);
        background: rgba(112, 85, 104, 0.05);
        border: 1px solid rgba(112, 85, 104, 0.18);
        border-radius: 10px;
    }

    .container-header .navbar-collapse {
        position: absolute;
        top: calc(100% + 1px);
        right: 0.75rem;
        left: 0.75rem;

        width: auto;
        max-height: calc(100svh - 90px);
        overflow-y: auto;

        padding: 0.75rem;

        background: rgba(255, 255, 255, 0.99);
        border: 1px solid rgba(112, 85, 104, 0.14);
        border-radius: 0 0 16px 16px;

        box-shadow: 0 18px 40px rgba(52, 47, 50, 0.16);
    }

    .container-header .mod-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;

        width: 100%;
    }

    .container-header .metismenu > li {
        width: 100%;
    }

    .container-header .metismenu > li > a,
    .container-header .metismenu > li > button {
        width: 100%;
        min-height: 46px;
        padding: 0.78rem 0.9rem;

        font-size: 0.93rem;
        text-align: left;
    }

    .container-header .metismenu > li > a::after,
    .container-header .metismenu > li > button::after {
        display: none;
    }

    .container-header .metismenu > li.item-113 {
        margin-left: 0;
        padding: 0.65rem 0 0;
    }

    .container-header a.tamaya-menu-cta {
        width: 100%;
        min-height: 48px;
    }

    .container-header .metismenu.mod-menu .mm-collapse {
        min-width: 0;
        margin: 0.2rem 0 0.4rem;
        padding: 0.35rem;

        background: rgba(112, 85, 104, 0.04);
        border: 0;
        border-radius: 10px;
        box-shadow: none;
    }

    .container-header .metismenu .mm-collapse a {
        padding-left: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .container-header a,
    .container-header button,
    .container-header a::after,
    .container-header button::after {
        transition: none !important;
    }

    .container-header a:hover,
    .container-header button:hover {
        transform: none !important;
    }
}

/* ==========================================================
   TAMAYA — CENTERED MENU + COMPACT DROPDOWNS
   Final override: keep at the end of user.css
   ========================================================== */

@media (min-width: 992px) {

    /* Equal outside columns keep the normal menu visually centered. */
    .container-header {
        grid-template-columns:
            minmax(130px, 1fr)
            auto
            minmax(180px, 1fr);

        column-gap: 1rem;
    }

    .container-header > .grid-child:first-child {
        grid-column: 1;
        justify-self: start;
    }

    .container-header > .container-nav {
        position: static;

        grid-column: 2;
        justify-self: center;

        width: auto;
        min-width: 0;
    }

    .container-header .navbar,
    .container-header .navbar-collapse,
    .container-header .mod-menu {
        position: static;
        width: auto;
    }

    /* Centre only the normal links. */
    .container-header .mod-menu {
        justify-content: center;
        gap: clamp(0.18rem, 0.55vw, 0.68rem);
    }

    /* CTA is removed from the menu flow and anchored to the far right. */
    .container-header .metismenu > li.item-113 {
        position: absolute;
        top: 50%;
        right: clamp(1rem, 3.5vw, 4rem);

        margin: 0;
        padding: 0;

        transform: translateY(-50%);
    }

    /* Each dropdown is positioned relative to its own parent item. */
    .container-header .metismenu > li.deeper {
        position: relative;
    }

    /* Clean dropdown trigger and arrow. */
    .container-header
    .metismenu > li > button.mm-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.48rem;
    }

    .container-header
    .metismenu > li > button.mm-toggler::after {
        position: static;

        width: 0.44rem;
        height: 0.44rem;

        content: "";

        background: none;
        border: 0;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        border-radius: 0;

        transform: rotate(45deg) translateY(-1px);
        transform-origin: center;
        transition: transform 180ms ease;
    }

    .container-header
    .metismenu > li > button.mm-toggler[aria-expanded="true"]::after {
        transform: rotate(225deg) translate(-1px, -1px);
    }

    /* Compact dropdown panel. */
    .container-header
    .metismenu.mod-menu > li > .mm-collapse {
        position: absolute !important;
        top: calc(100% + 0.65rem);
        left: 50%;
        z-index: 1200;

        width: max-content;
        min-width: 250px;
        max-width: min(330px, calc(100vw - 2rem));

        margin: 0;
        padding: 0.4rem;

        background: rgba(255, 255, 255, 0.985);
        border: 1px solid rgba(112, 85, 104, 0.14);
        border-radius: 14px;

        box-shadow:
            0 18px 45px rgba(52, 47, 50, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);

        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);

        transform: translateX(-50%);
    }

    /* Small bridge prevents the dropdown closing while moving the pointer. */
    .container-header
    .metismenu.mod-menu > li > .mm-collapse::before {
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;

        height: 0.7rem;

        content: "";
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li {
        display: block !important;

        width: 100%;
        min-height: 0;

        margin: 0 !important;
        padding: 0 !important;
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li + li {
        margin-top: 0.12rem !important;
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li > a {
        display: flex;
        align-items: center;

        width: 100%;
        min-height: 0;
        padding: 0.72rem 0.88rem;

        color: var(--tamaya-text);
        font-size: 0.88rem;
        font-weight: 500;
        line-height: 1.3;
        white-space: nowrap;

        background: transparent;
        border-radius: 9px;
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li > a:hover,
    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li > a:focus-visible,
    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li.current > a {
        color: var(--tamaya-primary-dark);
        background: rgba(112, 85, 104, 0.075);
        transform: none;
    }
}

/* Keep the mobile dropdown inside the opened mobile menu. */
@media (max-width: 991.98px) {

    .container-header .metismenu > li.item-113 {
        position: static;
        transform: none;
    }

    .container-header .metismenu > li.deeper {
        position: static;
    }

    .container-header
    .metismenu > li > button.mm-toggler {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .container-header
    .metismenu > li > button.mm-toggler::after {
        position: static;

        width: 0.44rem;
        height: 0.44rem;

        content: "";

        background: none;
        border: 0;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        border-radius: 0;

        transform: rotate(45deg);
    }

    .container-header
    .metismenu > li > button.mm-toggler[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse {
        position: static !important;

        width: 100%;
        min-width: 0;
        max-width: none;

        margin: 0.2rem 0 0.45rem;
        padding: 0.32rem;

        border-radius: 10px;
        box-shadow: none;

        transform: none;
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .container-header
    .metismenu.mod-menu > li > .mm-collapse > li > a {
        width: 100%;
        padding: 0.68rem 0.95rem 0.68rem 1.2rem;
        white-space: normal;
    }
}


/* NAROČI SE ZDAJ — FINAL PURPLE BUTTON */

.container-header
.metismenu > li.item-113 > a.tamaya-menu-cta {
    color: #ffffff !important;

    background: #70556d !important;

    border: 1px solid #70556d !important;
    border-radius: 999px;

    box-shadow:
        0 10px 24px rgba(112, 85, 109, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.container-header
.metismenu > li.item-113 > a.tamaya-menu-cta:hover,
.container-header
.metismenu > li.item-113 > a.tamaya-menu-cta:focus-visible {
    color: #ffffff !important;
    background: #5c425a !important;
    border-color: #5c425a !important;

    box-shadow:
        0 14px 30px rgba(92, 66, 90, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.container-header
.metismenu > li.item-113 > a.tamaya-menu-cta::after {
    display: none !important;
    content: none !important;
}


/* ==========================================================
   TAMAYA — CLEAN LOGO ANIMATION
   ========================================================== */

.container-header .navbar-brand {
    position: relative;
    isolation: isolate;
}

.container-header .brand-logo {
    position: relative;

    display: inline-grid;
    place-items: center;

    border-radius: 50%;

    animation: tamaya-logo-enter 700ms
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

/* Decorative ring */
.container-header .brand-logo::before {
    position: absolute;
    inset: -6px;
    z-index: -1;

    content: "";
    pointer-events: none;

    border: 1px solid rgba(112, 85, 109, 0.28);
    border-radius: 50%;

    opacity: 0;
    transform: scale(0.84) rotate(-12deg);

    transition:
        opacity 350ms ease,
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Soft glow */
.container-header .brand-logo::after {
    position: absolute;
    inset: 8%;
    z-index: -2;

    content: "";
    pointer-events: none;

    background: radial-gradient(
        circle,
        rgba(139, 95, 143, 0.24),
        rgba(184, 149, 96, 0.12) 45%,
        transparent 72%
    );

    border-radius: 50%;
    filter: blur(12px);

    opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 350ms ease,
        transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.container-header .navbar-brand img {
    transform: translateY(0) scale(1) rotate(0deg);

    transition:
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 350ms ease;
}

/* Hover animation */
.container-header .brand-logo:hover::before,
.container-header .brand-logo:focus-visible::before {
    opacity: 1;
    transform: scale(1) rotate(8deg);
}

.container-header .brand-logo:hover::after,
.container-header .brand-logo:focus-visible::after {
    opacity: 1;
    transform: scale(1.08);
}

.container-header .brand-logo:hover img,
.container-header .brand-logo:focus-visible img {
    transform:
        translateY(-3px)
        scale(1.045)
        rotate(-1.5deg);

    filter:
        drop-shadow(0 8px 12px rgba(79, 58, 74, 0.2))
        saturate(1.08);
}

.container-header .brand-logo:focus-visible {
    outline: 3px solid rgba(112, 85, 109, 0.26);
    outline-offset: 8px;
}

/* Entrance animation */
@keyframes tamaya-logo-enter {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.86);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .container-header .brand-logo {
        animation: none;
    }

    .container-header .brand-logo::before,
    .container-header .brand-logo::after,
    .container-header .navbar-brand img {
        transition: none;
    }

    .container-header .brand-logo:hover img,
    .container-header .brand-logo:focus-visible img {
        transform: none;
    }
}

/* ==========================================================
   TAMAYA — HOME PAGE SERVICES
   ========================================================== */

.tamaya-services {
    --services-bg: #faf7f2;
    --services-heading: #49382f;
    --services-text: #66574f;
    --services-purple: #70556d;
    --services-gold: #b8894d;
    --services-gold-light: #dfbf8b;
    --services-width: 1480px;

    position: relative;
    overflow: hidden;

    padding-block: clamp(4.5rem, 8vw, 4rem);

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(112, 85, 109, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(184, 137, 77, 0.09),
            transparent 28%
        ),
        var(--services-bg);
}

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

.tamaya-services__inner {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        var(--services-width)
    );

    margin-inline: auto;
}


/* ==========================================================
   SECTION HEADER
   ========================================================== */

.tamaya-services__header {
    max-width: 760px;
    margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);

    text-align: center;
}

.tamaya-services__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    margin: 0 0 0.85rem;

    color: var(--services-gold);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-services__eyebrow::before,
.tamaya-services__eyebrow::after {
    width: 35px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.65;
}

.tamaya-services__header h2 {
    margin: 0;

    color: var(--services-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tamaya-services__intro {
    max-width: 680px;
    margin: 1.25rem auto 0;

    color: var(--services-text);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.75;
}


/* ==========================================================
   SERVICES GRID
   ========================================================== */

.tamaya-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.5vw, 1.5rem);

    perspective: 1300px;
}


/* ==========================================================
   SERVICE CARD
   ========================================================== */

.tamaya-service-card {
    position: relative;
    isolation: isolate;

    display: block;
    min-width: 0;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    color: #ffffff;
    text-decoration: none;

    background: #251b2b;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 26px;

    box-shadow:
        0 20px 50px rgba(58, 43, 55, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    opacity: 1;

    transform:
        translateY(0)
        translateZ(0)
        scale(1);

    transform-style: preserve-3d;

    transition:
        opacity 1000ms ease,
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 1000ms ease,
        border-color 1000ms ease,
        box-shadow 1000ms ease;
}

.tamaya-service-card img {
    position: absolute;
    inset: 0;
    z-index: -3;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.015);

    transition:
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 430ms ease;
}

.tamaya-service-card--karmicna img {
    object-position: 35% center;
}

.tamaya-service-card--ciscenje img {
    object-position: 48% center;
}

.tamaya-service-card--kvantni img {
    object-position: center;
}

.tamaya-service-card--esence img {
    object-position: center;
}


/* Dark overlay for text readability */

.tamaya-service-card__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(14, 9, 19, 0.08) 0%,
            rgba(17, 10, 22, 0.12) 34%,
            rgba(20, 12, 25, 0.8) 76%,
            rgba(15, 9, 19, 0.96) 100%
        ),
        linear-gradient(
            135deg,
            rgba(112, 85, 109, 0.18),
            transparent 55%
        );

    transition: background 430ms ease;
}


/* Gold line */

.tamaya-service-card::before {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    left: 1.3rem;
    z-index: 2;

    height: 1px;

    content: "";
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(223, 191, 139, 0),
        rgba(223, 191, 139, 0.75),
        rgba(223, 191, 139, 0)
    );

    opacity: 0.6;

    transform: scaleX(0.65);

    transition:
        opacity 430ms ease,
        transform 430ms ease;
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.tamaya-service-card__content {
    position: absolute;
    inset: auto 0 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: clamp(1.35rem, 2.3vw, 2.1rem);
}

.tamaya-service-card__number {
    position: absolute;
    right: clamp(1.35rem, 2.3vw, 2.1rem);
    bottom: clamp(1.35rem, 2.3vw, 2.1rem);

    color: rgba(255, 255, 255, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 0.8;

    transition:
        color 430ms ease,
        transform 430ms ease;
}


.tamaya-service-card__title {
    max-width: 95%;

    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.3vw, 2.65rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.tamaya-service-card__description {
    max-width: 94%;
    max-height: 0;
    margin-top: 0;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.84rem, 0.92vw, 0.96rem);
    line-height: 1.58;

    opacity: 0;
    transform: translateY(10px);

    transition:
        max-height 430ms ease,
        margin-top 430ms ease,
        opacity 330ms ease,
        transform 430ms ease;
}

.tamaya-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    margin-top: 1.15rem;

    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.82;
}

.tamaya-service-card__link span {
    color: var(--services-gold-light);

    transition: transform 260ms ease;
}


/* ==========================================================
   HOVER: ACTIVE CARD FORWARD, OTHERS BACK
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

    .tamaya-services__grid:hover
    .tamaya-service-card:not(:hover) {
        opacity: 0.54;

        filter:
            saturate(0.68)
            brightness(0.84);

        transform:
            translateY(3px)
            translateZ(-55px)
            scale(0.955);
    }

    .tamaya-services__grid:hover
    .tamaya-service-card:hover {
        z-index: 5;

        opacity: 1;

        filter:
            saturate(1.06)
            brightness(1.02);

        border-color: rgba(223, 191, 139, 0.56);

        box-shadow:
            0 34px 72px rgba(55, 38, 51, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.23);

        transform:
            translateY(-9px)
            translateZ(38px)
            scale(1.025);
    }

    .tamaya-service-card:hover img {
        transform: scale(1.085);
    }

    .tamaya-service-card:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .tamaya-service-card:hover
    .tamaya-service-card__description {
        max-height: 8rem;
        margin-top: 0.9rem;

        opacity: 1;
        transform: translateY(0);
    }

    .tamaya-service-card:hover
    .tamaya-service-card__number {
        color: rgba(223, 191, 139, 0.28);
        transform: translateY(-2px);
    }

    .tamaya-service-card:hover
    .tamaya-service-card__link span {
        transform: translateX(5px);
    }


    /* Keyboard focus uses the same interaction */

    .tamaya-services__grid:has(.tamaya-service-card:focus-visible)
    .tamaya-service-card:not(:focus-visible) {
        opacity: 0.54;

        filter:
            saturate(0.68)
            brightness(0.84);

        transform:
            translateZ(-55px)
            scale(0.955);
    }

    .tamaya-service-card:focus-visible {
        z-index: 5;

        outline: 3px solid rgba(223, 191, 139, 0.7);
        outline-offset: 5px;

        transform:
            translateY(-9px)
            translateZ(38px)
            scale(1.025);
    }

    .tamaya-service-card:focus-visible
    .tamaya-service-card__description {
        max-height: 8rem;
        margin-top: 0.9rem;

        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .tamaya-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tamaya-service-card {
        aspect-ratio: 5 / 4;
    }

    .tamaya-service-card__description {
        max-height: 8rem;
        margin-top: 0.85rem;

        opacity: 1;
        transform: none;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .tamaya-services {
        padding-block: 4rem;
    }

    .tamaya-services__inner {
        width: calc(100% - 1.5rem);
    }

    .tamaya-services__header {
        margin-bottom: 2.5rem;
    }

    .tamaya-services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tamaya-service-card {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .tamaya-service-card__content {
        padding: 1.35rem;
    }

    .tamaya-service-card__number {
        right: 1.35rem;
        bottom: 1.35rem;
    }

    .tamaya-service-card__title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .tamaya-service-card__description {
        max-width: 88%;
    }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tamaya-service-card,
    .tamaya-service-card img,
    .tamaya-service-card::before,
    .tamaya-service-card__description,
    .tamaya-service-card__number,
    .tamaya-service-card__link span {
        transition: none;
    }

    .tamaya-services__grid:hover
    .tamaya-service-card,
    .tamaya-service-card:hover,
    .tamaya-service-card:focus-visible {
        transform: none;
    }

}


/* ==========================================================
   STORITVE MODULE — FULL-WIDTH BACKGROUND
   ========================================================== */

/* Remove Joomla card/module spacing around the section */
.card:has(.tamaya-services),
.card:has(.tamaya-services) .card-body,
.mod-custom:has(.tamaya-services) {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Break the section out of Joomla's centered container */
.tamaya-services {
    width: 100vw;
    max-width: 100vw;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Keep the actual content neatly centered */
.tamaya-services__inner {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        1480px
    );

    margin-inline: auto;
}

/* ==========================================================
   TAMAYA — PRIHAJAJOČI DOGODKI
   ========================================================== */

.tamaya-events {
    --events-background: #f3ece5;
    --events-surface: rgba(255, 255, 255, 0.58);
    --events-heading: #49382f;
    --events-text: #66574f;
    --events-purple: #70556d;
    --events-purple-dark: #563f55;
    --events-gold: #b8894d;
    --events-gold-light: #dfbf8b;
    --events-border: rgba(184, 137, 77, 0.2);
    --events-width: 1480px;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin-left: -50vw;
    padding-block: clamp(4.5rem, 8vw, 4rem);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(112, 85, 109, 0.11),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(184, 137, 77, 0.12),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #f7f1ea,
            var(--events-background)
        );
}

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

/* Remove Joomla module/card frame */

.card:has(.tamaya-events),
.card:has(.tamaya-events) .card-body,
.mod-custom:has(.tamaya-events) {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tamaya-events__inner {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        var(--events-width)
    );

    margin-inline: auto;
}

/* Header */

.tamaya-events__header {
    max-width: 850px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);

    text-align: center;
}

.tamaya-events__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    margin: 0 0 0.85rem;

    color: var(--events-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-events__eyebrow::before,
.tamaya-events__eyebrow::after {
    width: 36px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.7;
}

.tamaya-events__header h2 {
    margin: 0;

    color: var(--events-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.tamaya-events__intro {
    max-width: 800px;
    margin: 1.4rem auto 0;

    color: var(--events-text);
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    line-height: 1.8;
}

.tamaya-events__modules-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    margin-top: 1.5rem;

    color: var(--events-purple);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.tamaya-events__modules-link span {
    color: var(--events-gold);

    transition: transform 220ms ease;
}

.tamaya-events__modules-link:hover {
    color: var(--events-purple-dark);
    text-decoration: none;
}

.tamaya-events__modules-link:hover span {
    transform: translate(3px, -3px);
}

/* Grid */

.tamaya-events__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}

/* Cards */

.tamaya-event-card {
    position: relative;
    isolation: isolate;

    min-height: 260px;
    padding: clamp(1.6rem, 3vw, 2.5rem);

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.78),
            rgba(255, 255, 255, 0.42)
        );

    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 24px;

    box-shadow:
        0 18px 48px rgba(73, 56, 47, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    transform: translateY(0);

    transition:
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.tamaya-event-card::before {
    position: absolute;
    top: 0;
    right: 2rem;
    left: 2rem;

    height: 2px;

    content: "";

    background: linear-gradient(
        90deg,
        transparent,
        var(--events-gold-light),
        var(--events-purple),
        transparent
    );

    opacity: 0.68;
}

.tamaya-event-card::after {
    position: absolute;
    right: -80px;
    bottom: -90px;
    z-index: -1;

    width: 210px;
    aspect-ratio: 1;

    content: "";

    border: 1px solid rgba(112, 85, 109, 0.09);
    border-radius: 50%;

    box-shadow:
        0 0 0 34px rgba(184, 137, 77, 0.025),
        0 0 0 68px rgba(112, 85, 109, 0.018);
}

.tamaya-event-card:hover {
    border-color: rgba(184, 137, 77, 0.36);

    box-shadow:
        0 28px 65px rgba(73, 56, 47, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    transform: translateY(-7px);
}



.tamaya-event-card__type {
    margin: 0 0 0.65rem;

    color: var(--events-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tamaya-event-card h3 {
    max-width: 95%;
    margin: 0;

    color: var(--events-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.5vw, 2.3rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.025em;

    text-wrap: balance;
}

.tamaya-event-card__date {
    display: inline-flex;

    margin: 1.4rem 0 0;
    padding: 0.62rem 0.9rem;

    color: var(--events-purple-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;

    background: rgba(112, 85, 109, 0.07);
    border: 1px solid rgba(112, 85, 109, 0.12);
    border-radius: 999px;
}

/* CTA */

.tamaya-events__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(1.5rem, 3vw, 2.3rem);

    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 20px;

    box-shadow: 0 16px 40px rgba(73, 56, 47, 0.07);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.tamaya-events__cta p {
    margin: 0;

    color: var(--events-text);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.6;
}

.tamaya-events__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 47px;
    padding: 0.82rem 1.4rem;

    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    background: linear-gradient(
        135deg,
        var(--events-purple),
        var(--events-purple-dark)
    );

    border: 1px solid rgba(86, 63, 85, 0.25);
    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(86, 63, 85, 0.23);

    transition:
        transform 220ms ease,
        filter 220ms ease,
        box-shadow 220ms ease;
}

.tamaya-events__button:hover {
    color: #fff;
    text-decoration: none;

    filter: brightness(1.08);
    transform: translateY(-3px);

    box-shadow: 0 17px 35px rgba(86, 63, 85, 0.3);
}

/* Tablet */

@media (max-width: 1000px) {
    .tamaya-events__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 650px) {
    .tamaya-events {
        padding-block: 4rem;
    }

    .tamaya-events__inner {
        width: calc(100% - 1.5rem);
    }

    .tamaya-events__grid {
        grid-template-columns: 1fr;
    }

    .tamaya-event-card {
        min-height: 230px;
        padding: 1.5rem;
        border-radius: 19px;
    }



    .tamaya-events__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;

        padding: 1.4rem;
        border-radius: 18px;
    }

    .tamaya-events__button {
        width: 100%;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .tamaya-event-card,
    .tamaya-events__button,
    .tamaya-events__modules-link span {
        transition: none;
    }

    .tamaya-event-card:hover,
    .tamaya-events__button:hover {
        transform: none;
    }
}

/* ==========================================================
   TOP-B — STACK HOME PAGE MODULES VERTICALLY
   ========================================================== */

.container-top-b {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.container-top-b > * {
    grid-column: 1 / -1 !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Remove Cassiopeia card frames around both modules */
.container-top-b > .card,
.container-top-b > div.card,
.container-top-b .card-body {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* ==========================================================
   PRIHAJAJOČI DOGODKI — VERTICAL LIST
   Paste at the very end of user.css
   ========================================================== */

.tamaya-events__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-width: 1050px;
    margin-inline: auto;

    border-top: 1px solid rgba(184, 137, 77, 0.22);
}

/* One event row */
.tamaya-event-card {
    position: relative;

    display: grid;
    grid-template-columns:
        90px
        minmax(0, 1fr)
        auto;

    grid-template-areas:
        "number type date"
        "number title date";

    align-items: center;
    gap: 0.3rem 2rem;

    min-height: 150px;
    margin: 0;
    padding: 1.7rem 1.4rem;

    overflow: hidden;

    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(184, 137, 77, 0.22);
    border-radius: 0;

    box-shadow: none;

    -webkit-backdrop-filter: none;
    backdrop-filter: none;

    transform: none;

    transition:
        background-color 240ms ease,
        padding 240ms ease,
        transform 240ms ease;
}

/* Remove the old decorative card lines and circles */
.tamaya-event-card::before,
.tamaya-event-card::after {
    display: none;
}



/* Small event label */
.tamaya-event-card__type {
    grid-area: type;

    margin: 0;

    color: var(--events-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Event title */
.tamaya-event-card h3 {
    grid-area: title;

    max-width: none;
    margin: 0;

    color: var(--events-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

/* Date */
.tamaya-event-card__date {
    grid-area: date;

    align-self: center;

    margin: 0;
    padding: 0.7rem 1rem;

    color: var(--events-purple-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;

    background: rgba(112, 85, 109, 0.07);
    border: 1px solid rgba(112, 85, 109, 0.13);
    border-radius: 999px;
}

/* Hover */
.tamaya-event-card:hover {
    padding-inline: 2rem;

    background: rgba(255, 255, 255, 0.48);

    box-shadow: none;

    transform: translateX(4px);
}

/* CTA width matches the list */
.tamaya-events__cta {
    max-width: 1050px;
    margin-inline: auto;
    margin-top: 2.5rem;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

    .tamaya-event-card {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
            "number type"
            "number title"
            "number date";

        gap: 0.45rem 1rem;

        min-height: 0;
        padding: 1.5rem 0.4rem;
    }

    .tamaya-event-card:hover {
        padding-inline: 0.7rem;
        transform: none;
    }


    .tamaya-event-card h3 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .tamaya-event-card__date {
        justify-self: start;

        margin-top: 0.45rem;
        padding: 0.58rem 0.82rem;

        white-space: normal;
    }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-event-card {
        transition: none;
    }

    .tamaya-event-card:hover {
        transform: none;
    }
}

/* ==========================================================
   TAMAYA — HOME PAGE TESTIMONIALS
   ========================================================== */

.tamaya-home-testimonials {
    --testimonial-bg: #faf7f2;
    --testimonial-heading: #49382f;
    --testimonial-text: #66574f;
    --testimonial-purple: #70556d;
    --testimonial-purple-dark: #563f55;
    --testimonial-gold: #b8894d;
    --testimonial-gold-light: #dfbf8b;
    --testimonial-width: 1180px;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin-left: -50vw;
    padding-block: clamp(1.5rem, 3vw, 1.5rem);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 22%,
            rgba(112, 85, 109, 0.1),
            transparent 29%
        ),
        radial-gradient(
            circle at 88% 78%,
            rgba(184, 137, 77, 0.1),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #fffdf9,
            var(--testimonial-bg)
        );
}

.tamaya-home-testimonials *,
.tamaya-home-testimonials *::before,
.tamaya-home-testimonials *::after {
    box-sizing: border-box;
}

/* Remove Cassiopeia module frame */

.card:has(.tamaya-home-testimonials),
.card:has(.tamaya-home-testimonials) .card-body,
.mod-custom:has(.tamaya-home-testimonials) {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tamaya-home-testimonials__inner {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        var(--testimonial-width)
    );

    margin-inline: auto;
}

/* Header */

.tamaya-home-testimonials__header {
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);

    text-align: center;
}

.tamaya-home-testimonials__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    margin: 0 0 0.85rem;

    color: var(--testimonial-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-home-testimonials__eyebrow::before,
.tamaya-home-testimonials__eyebrow::after {
    width: 36px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.68;
}

.tamaya-home-testimonials__header h2 {
    margin: 0;

    color: var(--testimonial-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.tamaya-home-testimonials__intro {
    max-width: 660px;
    margin: 1.25rem auto 0;

    color: var(--testimonial-text);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.75;
}

/* Slider */

.tamaya-home-testimonials__slider {
    max-width: 1040px;
    margin-inline: auto;
}

.tamaya-home-testimonial {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;

    height: 390px;
    padding: clamp(2rem, 5vw, 4rem);

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.56)
        );

    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 30px;

    box-shadow:
        0 26px 65px rgba(73, 56, 47, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.tamaya-home-testimonial.is-changing {
    opacity: 0;
    transform: translateY(8px);
}

.tamaya-home-testimonial::before {
    position: absolute;
    top: 0;
    right: clamp(2rem, 5vw, 4rem);
    left: clamp(2rem, 5vw, 4rem);

    height: 2px;

    content: "";

    background: linear-gradient(
        90deg,
        transparent,
        var(--testimonial-gold-light),
        var(--testimonial-purple),
        transparent
    );
}

.tamaya-home-testimonial::after {
    position: absolute;
    right: -105px;
    bottom: -135px;
    z-index: -1;

    width: 310px;
    aspect-ratio: 1;

    content: "";

    border: 1px solid rgba(112, 85, 109, 0.08);
    border-radius: 50%;

    box-shadow:
        0 0 0 48px rgba(184, 137, 77, 0.022),
        0 0 0 96px rgba(112, 85, 109, 0.016);
}

.tamaya-home-testimonial__quote {
    display: block;

    margin-bottom: 1.2rem;

    color: rgba(184, 137, 77, 0.26);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.55;
}

.tamaya-home-testimonial__copy-wrap {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.tamaya-home-testimonial__copy {
    margin: 0;

    color: var(--testimonial-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    line-height: 1.62;
    white-space: pre-line;
}

/* Fade at the bottom of long text */

.tamaya-home-testimonial.is-truncated
.tamaya-home-testimonial__copy-wrap::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 4.5rem;

    content: "";
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(252, 248, 243, 0.98)
    );
}

/* Read more */

.tamaya-home-testimonial__read-more {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.6rem;

    margin-top: 1.2rem;
    padding: 0.72rem 1.1rem;

    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        var(--testimonial-purple),
        var(--testimonial-purple-dark)
    );

    border-radius: 999px;
    box-shadow: 0 11px 25px rgba(86, 63, 85, 0.22);
}

.tamaya-home-testimonial__read-more[hidden] {
    display: none;
}

.tamaya-home-testimonial__read-more:hover,
.tamaya-home-testimonial__read-more:focus-visible {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.08);
}

/* Controls */

.tamaya-home-testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    margin-top: 1.4rem;
}

.tamaya-home-testimonials__controls[hidden] {
    display: none;
}

.tamaya-home-testimonials__button {
    display: inline-grid;
    place-items: center;

    width: 42px;
    height: 42px;
    padding: 0;

    color: var(--testimonial-purple);
    font-size: 1rem;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(112, 85, 109, 0.14);
    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(73, 56, 47, 0.08);

    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.tamaya-home-testimonials__button:hover,
.tamaya-home-testimonials__button:focus-visible {
    color: #fff;
    background: var(--testimonial-purple);
    transform: translateY(-2px);
}

.tamaya-home-testimonials__counter {
    min-width: 64px;
    margin: 0;

    color: var(--testimonial-purple);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

/* Mobile */

@media (max-width: 700px) {
    .tamaya-home-testimonials {
        padding-block: 4rem;
    }

    .tamaya-home-testimonials__inner {
        width: calc(100% - 1.5rem);
    }

    .tamaya-home-testimonial {
        height: 430px;
        padding: 1.6rem;
        border-radius: 21px;
    }

    .tamaya-home-testimonial__quote {
        font-size: 4.2rem;
    }

    .tamaya-home-testimonial__copy {
        font-size: clamp(1.05rem, 5vw, 1.25rem);
        line-height: 1.58;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .tamaya-home-testimonial,
    .tamaya-home-testimonials__button {
        transition: none;
    }

    .tamaya-home-testimonial.is-changing {
        transform: none;
    }

    .tamaya-home-testimonials__button:hover {
        transform: none;
    }
}


/* ==========================================================
   HOME TESTIMONIALS — CLEAN CARD AND SLIDE ANIMATION
   ========================================================== */

/* Controls are no longer used */
.tamaya-home-testimonials__controls {
    display: none !important;
}

/* Wider testimonial area */
.tamaya-home-testimonials__slider {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

/* Cleaner card, closer to the full testimonials page */
.tamaya-home-testimonial {
    position: relative;

    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;

    width: 100%;
    height: 360px;

    padding:
        clamp(1.6rem, 3vw, 2.5rem)
        clamp(1.5rem, 4vw, 3rem);

    overflow: hidden;

    background: rgba(255, 255, 255, 0.68);

    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;

    box-shadow:
        0 18px 48px rgba(67, 52, 67, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    opacity: 1;
    transform: none;
}

/* Remove the large decorative circles */
.tamaya-home-testimonial::after {
    display: none;
}

/* Keep only a subtle upper line */
.tamaya-home-testimonial::before {
    right: 2rem;
    left: 2rem;

    opacity: 0.55;
}

/* Smaller quote that does not consume a full content row */
.tamaya-home-testimonial__quote {
    position: absolute;
    top: 1.2rem;
    left: clamp(1.5rem, 4vw, 3rem);
    z-index: 1;

    margin: 0;

    color: rgba(184, 137, 77, 0.25);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 5vw, 4.8rem);
    line-height: 1;

    pointer-events: none;
}

/* More room for actual testimonial text */
.tamaya-home-testimonial__copy-wrap {
    position: relative;

    min-height: 0;
    padding:
        clamp(0.8rem, 5vw, 1.8rem)
        0
        0
        clamp(2.8rem, 5vw, 4rem);

    overflow: hidden;
}

/* Smaller text means considerably more content is visible */
.tamaya-home-testimonial__copy {
    margin: 0;

    color: #62544c;
    font-family: inherit;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    font-weight: 400;
    line-height: 1.78;

    white-space: pre-line;
    overflow-wrap: anywhere;

    opacity: 1;
    transform: translateX(0);

    transition:
        opacity 320ms ease,
        transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/*
 * Existing testimonial exits to the right.
 */
.tamaya-home-testimonial__copy.is-leaving {
    opacity: 0;
    transform: translateX(90px);
}

/*
 * New testimonial is prepared on the left.
 * JavaScript then removes this class so it slides right.
 */
.tamaya-home-testimonial__copy.is-preparing {
    opacity: 0;
    transform: translateX(-90px);

    transition: none !important;
}

/* Softer fade for truncated text */
.tamaya-home-testimonial.is-truncated
.tamaya-home-testimonial__copy-wrap::after {
    height: 3.75rem;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(250, 247, 242, 0.98)
    );
}

/* Smaller read-more button */
.tamaya-home-testimonial__read-more {
    margin-top: 1rem;
    padding: 0.65rem 1rem;

    font-size: 0.69rem;
    letter-spacing: 0.1em;

    background: #70556d;
    box-shadow: 0 9px 22px rgba(86, 63, 85, 0.2);
}

/* Remove the previous whole-card fade animation */
.tamaya-home-testimonial.is-changing {
    opacity: 1;
    transform: none;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {
    .tamaya-home-testimonial {
        height: 390px;
        padding: 1.35rem 1.2rem;

        border-radius: 20px;
    }

    .tamaya-home-testimonial__quote {
        top: 1rem;
        left: 1.2rem;

        font-size: 3.5rem;
    }

    .tamaya-home-testimonial__copy-wrap {
        padding:
            2.8rem
            0
            0
            2.25rem;
    }

    .tamaya-home-testimonial__copy {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .tamaya-home-testimonial__copy.is-leaving {
        transform: translateX(55px);
    }

    .tamaya-home-testimonial__copy.is-preparing {
        transform: translateX(-55px);
    }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-home-testimonial__copy {
        transition: none;
    }

    .tamaya-home-testimonial__copy.is-leaving,
    .tamaya-home-testimonial__copy.is-preparing {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================
   HOME TESTIMONIALS — ADAPTIVE CARD, FIXED SECTION
   ========================================================== */

/*
 * The complete module keeps a stable height.
 * This prevents Prihajajoči dogodki from moving up and down
 * when testimonials have different lengths.
 */
.tamaya-home-testimonials__inner {
    height: 660px;
    max-height: 660px;
}

/*
 * Reserve a stable area for the changing testimonial.
 */
.tamaya-home-testimonials__slider {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 100%;
    max-width: 1180px;
    min-height: 390px;
    margin-inline: auto;
}

/*
 * Short testimonials use their natural height.
 * Long testimonials stop at 360px.
 */
.tamaya-home-testimonial {
    display: grid;
    grid-template-rows: minmax(0, auto) auto;

    width: 100%;
    height: fit-content;
    min-height: 220px;
    max-height: 360px;

    padding:
        clamp(1.6rem, 3vw, 2.5rem)
        clamp(1.5rem, 4vw, 3rem);
}

/*
 * Text area expands naturally for short content.
 * It becomes constrained only when the card reaches
 * its maximum height.
 */
.tamaya-home-testimonial__copy-wrap {
    min-height: 0;
    max-height: 245px;

    overflow: hidden;
}

/*
 * The button is always visible.
 */
.tamaya-home-testimonial__read-more,
.tamaya-home-testimonial__read-more[hidden] {
    display: inline-flex !important;

    align-items: center;
    justify-self: start;
    gap: 0.6rem;

    flex-shrink: 0;

    margin-top: 1.15rem;
}

/*
 * Fade is shown only when the text is genuinely too long.
 */
.tamaya-home-testimonial:not(.is-truncated)
.tamaya-home-testimonial__copy-wrap::after {
    display: none;
}

.tamaya-home-testimonial.is-truncated
.tamaya-home-testimonial__copy-wrap::after {
    display: block;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {
    .tamaya-home-testimonials__inner {
        height: 650px;
        max-height: 650px;
    }

    .tamaya-home-testimonial {
        max-height: 370px;
    }

    .tamaya-home-testimonial__copy-wrap {
        max-height: 255px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {
    /*
     * The heading can wrap over more lines on phones,
     * so the fixed module height needs to be larger.
     */
    .tamaya-home-testimonials__inner {
        height: 690px;
        max-height: 690px;
    }

    .tamaya-home-testimonials__slider {
        min-height: 420px;
    }

    .tamaya-home-testimonial {
        height: fit-content;
        min-height: 250px;
        max-height: 410px;

        padding: 1.4rem 1.2rem;
    }

    .tamaya-home-testimonial__copy-wrap {
        max-height: 285px;
    }

    .tamaya-home-testimonial__read-more {
        width: auto;
        margin-top: 1rem;
    }
}


/* ==========================================================
   TAMAYA — POGOSTA VPRAŠANJA
   ========================================================== */

.tamaya-faq {
    --faq-background: #f3ece5;
    --faq-surface: rgba(255, 255, 255, 0.64);
    --faq-heading: #49382f;
    --faq-text: #66574f;
    --faq-purple: #70556d;
    --faq-purple-dark: #563f55;
    --faq-gold: #b8894d;
    --faq-gold-light: #dfbf8b;
    --faq-border: rgba(184, 137, 77, 0.2);
    --faq-width: 1180px;

    position: relative;
    left: 50%;

    width: 100vw;
    max-width: 100vw;

    margin-left: -50vw;
    padding-block: clamp(4.5rem, 8vw, 7.5rem);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(112, 85, 109, 0.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(184, 137, 77, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #faf7f2,
            var(--faq-background)
        );
}

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

/* Remove Joomla module frame */

.card:has(.tamaya-faq),
.card:has(.tamaya-faq) .card-body,
.mod-custom:has(.tamaya-faq) {
    width: 100%;
    max-width: none;

    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.tamaya-faq__inner {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        var(--faq-width)
    );

    margin-inline: auto;
}

/* ==========================================================
   HEADER
   ========================================================== */

.tamaya-faq__header {
    max-width: 760px;
    margin: 0 auto clamp(2.75rem, 5vw, 4rem);

    text-align: center;
}

.tamaya-faq__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    margin: 0 0 0.85rem;

    color: var(--faq-gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-faq__eyebrow::before,
.tamaya-faq__eyebrow::after {
    width: 36px;
    height: 1px;

    content: "";
    background: currentColor;
    opacity: 0.68;
}

.tamaya-faq__header h2 {
    margin: 0;

    color: var(--faq-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.tamaya-faq__intro {
    max-width: 650px;
    margin: 1.25rem auto 0;

    color: var(--faq-text);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.75;
}

/* ==========================================================
   FAQ LIST
   ========================================================== */

.tamaya-faq__list {
    overflow: hidden;

    background: var(--faq-surface);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 26px;

    box-shadow:
        0 22px 58px rgba(73, 56, 47, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.tamaya-faq__item {
    margin: 0;
    padding: 0;
}

.tamaya-faq__item + .tamaya-faq__item {
    border-top: 1px solid var(--faq-border);
}

/* Remove default browser marker */

.tamaya-faq__question {
    list-style: none;
}

.tamaya-faq__question::-webkit-details-marker {
    display: none;
}

/* Question row */

.tamaya-faq__question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 1.5rem;
    align-items: center;

    min-height: 94px;
    padding:
        1.4rem
        clamp(1.3rem, 4vw, 2.75rem);

    color: var(--faq-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.3;

    cursor: pointer;

    transition:
        color 220ms ease,
        background-color 220ms ease;
}

.tamaya-faq__question:hover {
    color: var(--faq-purple);
    background: rgba(255, 255, 255, 0.42);
}

.tamaya-faq__question:focus-visible {
    outline: 3px solid rgba(112, 85, 109, 0.25);
    outline-offset: -4px;
}

/* Plus/minus button */

.tamaya-faq__icon {
    position: relative;

    display: block;

    width: 42px;
    height: 42px;

    color: var(--faq-purple);

    background: rgba(112, 85, 109, 0.06);
    border: 1px solid rgba(112, 85, 109, 0.14);
    border-radius: 50%;

    transition:
        color 220ms ease,
        background-color 220ms ease,
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tamaya-faq__icon::before,
.tamaya-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    content: "";

    background: currentColor;
    border-radius: 999px;

    transform: translate(-50%, -50%);

    transition:
        opacity 220ms ease,
        transform 300ms ease;
}

.tamaya-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.tamaya-faq__item[open]
.tamaya-faq__icon {
    color: #fff;
    background: var(--faq-purple);

    transform: rotate(180deg);
}

.tamaya-faq__item[open]
.tamaya-faq__icon::after {
    opacity: 0;
}

/* Open question */

.tamaya-faq__item[open]
.tamaya-faq__question {
    color: var(--faq-purple-dark);
    background: rgba(255, 255, 255, 0.46);
}

/* Answer */

.tamaya-faq__answer {
    padding:
        0
        clamp(1.3rem, 4vw, 2.75rem)
        clamp(1.75rem, 4vw, 2.75rem);

    color: var(--faq-text);

    animation: tamaya-faq-answer-in 300ms ease both;
}

.tamaya-faq__answer p,
.tamaya-faq__answer li {
    max-width: 85ch;

    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    line-height: 1.8;
}

.tamaya-faq__answer p {
    margin: 0 0 1rem;
}

.tamaya-faq__answer p:last-child {
    margin-bottom: 0;
}

.tamaya-faq__answer ul {
    margin: 1.1rem 0 0;
    padding-left: 1.4rem;
}

.tamaya-faq__answer li {
    margin-bottom: 0.5rem;
}

.tamaya-faq__answer li::marker {
    color: var(--faq-gold);
}

@keyframes tamaya-faq-answer-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   CTA
   ========================================================== */

.tamaya-faq__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    margin-top: clamp(2rem, 5vw, 3.5rem);
    padding: clamp(1.4rem, 3vw, 2.2rem);

    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;

    box-shadow: 0 15px 38px rgba(73, 56, 47, 0.07);
}

.tamaya-faq__cta-label {
    margin: 0 0 0.25rem;

    color: var(--faq-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.tamaya-faq__cta p:last-child {
    margin: 0;

    color: var(--faq-text);
    line-height: 1.6;
}

.tamaya-faq__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 47px;
    padding: 0.82rem 1.4rem;

    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    background: linear-gradient(
        135deg,
        var(--faq-purple),
        var(--faq-purple-dark)
    );

    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(86, 63, 85, 0.23);

    transition:
        filter 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.tamaya-faq__button:hover,
.tamaya-faq__button:focus-visible {
    color: #fff;
    text-decoration: none;

    filter: brightness(1.08);
    transform: translateY(-2px);

    box-shadow: 0 16px 34px rgba(86, 63, 85, 0.3);
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {
    .tamaya-faq {
        padding-block: 4rem;
    }

    .tamaya-faq__inner {
        width: calc(100% - 1.5rem);
    }

    .tamaya-faq__list {
        border-radius: 20px;
    }

    .tamaya-faq__question {
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 1rem;

        min-height: 82px;
        padding: 1.2rem;

        font-size: clamp(1.1rem, 5.5vw, 1.35rem);
    }

    .tamaya-faq__icon {
        width: 38px;
        height: 38px;
    }

    .tamaya-faq__answer {
        padding:
            0
            1.2rem
            1.5rem;
    }

    .tamaya-faq__answer p,
    .tamaya-faq__answer li {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .tamaya-faq__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;

        padding: 1.4rem;
        border-radius: 18px;
    }

    .tamaya-faq__button {
        width: 100%;
    }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .tamaya-faq__question,
    .tamaya-faq__icon,
    .tamaya-faq__icon::before,
    .tamaya-faq__icon::after,
    .tamaya-faq__button {
        transition: none;
    }

    .tamaya-faq__answer {
        animation: none;
    }

    .tamaya-faq__button:hover {
        transform: none;
    }
}

/* ==========================================================
   TAMAYA — KONTAKT PAGE
   ========================================================== */

.tamaya-contact-page {
    --contact-background: #faf7f2;
    --contact-surface: rgba(255, 255, 255, 0.72);
    --contact-heading: #49382f;
    --contact-text: #66574f;
    --contact-purple: #70556d;
    --contact-purple-dark: #563f55;
    --contact-gold: #b8894d;
    --contact-border: rgba(184, 137, 77, 0.2);
    --contact-width: 1180px;

    width: 100%;
    color: var(--contact-text);
}

.tamaya-contact-page *,
.tamaya-contact-page *::before,
.tamaya-contact-page *::after {
    box-sizing: border-box;
}

/* ==========================================================
   HERO
   ========================================================== */

.tamaya-contact-hero {
    position: relative;
    left: 50%;

    width: 100vw;
    margin-left: -50vw;
    padding:
        clamp(5rem, 10vw, 8rem)
        clamp(1.25rem, 5vw, 4rem);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(223, 191, 139, 0.28),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(112, 85, 109, 0.2),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #f7efe9,
            #eee3e9
        );
}

.tamaya-contact-hero::before {
    position: absolute;
    top: -180px;
    right: -120px;

    width: 430px;
    height: 430px;

    content: "";

    border: 1px solid rgba(112, 85, 109, 0.13);
    border-radius: 50%;
}

.tamaya-contact-hero__content {
    position: relative;
    z-index: 1;

    width: min(100%, var(--contact-width));
    margin-inline: auto;

    text-align: center;
}

.tamaya-contact-eyebrow {
    margin: 0 0 0.85rem;

    color: var(--contact-gold);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tamaya-contact-hero h1 {
    margin: 0;

    color: var(--contact-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.tamaya-contact-hero__lead {
    max-width: 515px;
    margin: 1.5rem auto 0;

    color: var(--contact-text);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.75;
}

/* ==========================================================
   CONTENT
   ========================================================== */

.tamaya-contact-content {
    width: min(
        calc(100% - clamp(2rem, 6vw, 6rem)),
        var(--contact-width)
    );

    margin-inline: auto;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.tamaya-contact-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.tamaya-contact-card,
.tamaya-contact-appointment {
    padding: clamp(2rem, 5vw, 3.5rem);

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;

    box-shadow:
        0 24px 60px rgba(73, 56, 47, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tamaya-contact-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(250, 247, 242, 0.72)
        );
}

.tamaya-contact-card h2,
.tamaya-contact-appointment h2,
.tamaya-contact-location h2 {
    margin: 0;

    color: var(--contact-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tamaya-contact-card__intro {
    max-width: 650px;
    margin: 1.2rem 0 0;

    line-height: 1.75;
}

/* ==========================================================
   CONTACT DETAILS
   ========================================================== */

.tamaya-contact-details {
    display: grid;
    gap: 0;

    margin-top: 2rem;

    font-style: normal;

    border-top: 1px solid var(--contact-border);
}

.tamaya-contact-detail {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1.25rem;

    padding-block: 1.15rem;

    border-bottom: 1px solid var(--contact-border);
}

.tamaya-contact-detail__label {
    color: var(--contact-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.tamaya-contact-detail__value {
    color: var(--contact-heading);
    font-size: 1.02rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

a.tamaya-contact-detail__value {
    text-decoration: none;
}

a.tamaya-contact-detail__value:hover,
a.tamaya-contact-detail__value:focus-visible {
    color: var(--contact-purple);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ==========================================================
   APPOINTMENT CARD
   ========================================================== */

.tamaya-contact-appointment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    color: rgba(255, 255, 255, 0.82);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(223, 191, 139, 0.2),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--contact-purple),
            var(--contact-purple-dark)
        );
}

.tamaya-contact-appointment .tamaya-contact-eyebrow {
    color: #dfbf8b;
}

.tamaya-contact-appointment h2 {
    color: #fff;
}

.tamaya-contact-appointment > p:not(.tamaya-contact-eyebrow) {
    margin: 1.2rem 0 0;
    line-height: 1.75;
}

.tamaya-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 49px;
    margin-top: 1.75rem;
    padding: 0.85rem 1.45rem;

    color: var(--contact-purple-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    background: #fff;
    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(28, 17, 28, 0.2);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.tamaya-contact-button:hover,
.tamaya-contact-button:focus-visible {
    color: var(--contact-purple-dark);
    text-decoration: none;

    transform: translateY(-2px);

    box-shadow: 0 16px 34px rgba(28, 17, 28, 0.28);
}

/* ==========================================================
   LOCATION
   ========================================================== */

.tamaya-contact-location {
    margin-top: clamp(4rem, 8vw, 7rem);
}

.tamaya-contact-location__header {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;

    margin-bottom: 2rem;
}

.tamaya-contact-location__header > p {
    max-width: 620px;
    margin: 0;

    line-height: 1.75;
}

.tamaya-contact-map {
    position: relative;

    width: 100%;
    min-height: 520px;
    overflow: hidden;

    background: #eee7e1;
    border: 1px solid rgba(184, 137, 77, 0.18);
    border-radius: 28px;

    box-shadow: 0 25px 65px rgba(73, 56, 47, 0.13);
}

.tamaya-contact-map iframe {
    display: block;

    width: 100%;
    min-width: 100%;
    height: 520px;

    border: 0;
}

.tamaya-contact-location__actions {
    display: flex;
    justify-content: center;

    margin-top: 1.75rem;
}

.tamaya-contact-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    min-height: 49px;
    padding: 0.85rem 1.45rem;

    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        var(--contact-purple),
        var(--contact-purple-dark)
    );

    border-radius: 999px;

    box-shadow: 0 12px 28px rgba(86, 63, 85, 0.24);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.tamaya-contact-map-button:hover,
.tamaya-contact-map-button:focus-visible {
    color: #fff;
    text-decoration: none;

    transform: translateY(-2px);

    box-shadow: 0 17px 36px rgba(86, 63, 85, 0.31);
}

/* ==========================================================
   TABLET AND MOBILE
   ========================================================== */

@media (max-width: 900px) {
    .tamaya-contact-intro {
        grid-template-columns: 1fr;
    }

    .tamaya-contact-location__header {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 700px) {
    .tamaya-contact-content {
        width: calc(100% - 1.5rem);
        padding-block: 3.5rem;
    }

    .tamaya-contact-card,
    .tamaya-contact-appointment {
        padding: 2rem 1.35rem;
        border-radius: 22px;
    }

    .tamaya-contact-detail {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .tamaya-contact-button,
    .tamaya-contact-map-button {
        width: 100%;
    }

    .tamaya-contact-map {
        min-height: 390px;
        border-radius: 20px;
    }

    .tamaya-contact-map iframe {
        height: 390px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tamaya-contact-button,
    .tamaya-contact-map-button {
        transition: none;
    }

    .tamaya-contact-button:hover,
    .tamaya-contact-map-button:hover {
        transform: none;
    }
}


/* ==========================================================
   KARMICNA DIAGNOSTIKA — FAQ
   ========================================================== */

.tamaya-service-faq {
    margin-top: clamp(3rem, 7vw, 6rem);
}

.tamaya-service-faq__header {
    max-width: 760px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);

    text-align: center;
}

.tamaya-service-faq__header h2 {
    margin: 0;

    color: #49382f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tamaya-service-faq__header > p:last-child {
    max-width: 650px;
    margin: 1rem auto 0;

    color: #66574f;
    line-height: 1.75;
}

.tamaya-service-faq__list {
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.88),
            rgba(250, 247, 242, 0.75)
        );

    border: 1px solid rgba(184, 137, 77, 0.2);
    border-radius: 24px;

    box-shadow:
        0 22px 55px rgba(73, 56, 47, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tamaya-service-faq__item {
    margin: 0;
    padding: 0;
}

.tamaya-service-faq__item +
.tamaya-service-faq__item {
    border-top: 1px solid rgba(184, 137, 77, 0.18);
}

/* Remove the browser's default arrow */

.tamaya-service-faq__question {
    list-style: none;
}

.tamaya-service-faq__question::-webkit-details-marker {
    display: none;
}

.tamaya-service-faq__question::marker {
    display: none;
    content: "";
}

/* Question */

.tamaya-service-faq__question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 1.5rem;
    align-items: center;

    min-height: 86px;
    padding:
        1.3rem
        clamp(1.25rem, 4vw, 2.5rem);

    color: #49382f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.35;

    cursor: pointer;

    transition:
        color 220ms ease,
        background-color 220ms ease;
}

.tamaya-service-faq__question:hover {
    color: #70556d;
    background: rgba(255, 255, 255, 0.5);
}

.tamaya-service-faq__question:focus-visible {
    outline: 3px solid rgba(112, 85, 109, 0.22);
    outline-offset: -4px;
}

/* Plus and minus icon */

.tamaya-service-faq__icon {
    position: relative;

    display: block;

    width: 42px;
    height: 42px;

    color: #70556d;

    background: rgba(112, 85, 109, 0.06);
    border: 1px solid rgba(112, 85, 109, 0.16);
    border-radius: 50%;

    transition:
        color 220ms ease,
        background-color 220ms ease,
        transform 300ms ease;
}

.tamaya-service-faq__icon::before,
.tamaya-service-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    content: "";

    background: currentColor;
    border-radius: 999px;

    transform: translate(-50%, -50%);

    transition:
        opacity 220ms ease,
        transform 300ms ease;
}

.tamaya-service-faq__icon::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.tamaya-service-faq__item[open]
.tamaya-service-faq__icon {
    color: #fff;
    background: #70556d;

    transform: rotate(180deg);
}

.tamaya-service-faq__item[open]
.tamaya-service-faq__icon::after {
    opacity: 0;
}

.tamaya-service-faq__item[open]
.tamaya-service-faq__question {
    color: #563f55;
    background: rgba(255, 255, 255, 0.48);
}

/* Answer */

.tamaya-service-faq__answer {
    padding:
        0
        clamp(1.25rem, 4vw, 2.5rem)
        clamp(1.6rem, 4vw, 2.5rem);

    color: #66574f;

    animation: tamaya-service-faq-open 280ms ease both;
}

.tamaya-service-faq__answer p,
.tamaya-service-faq__answer li {
    max-width: 85ch;
    font-size: clamp(0.98rem, 1.1vw, 1.05rem);
    line-height: 1.8;
}

.tamaya-service-faq__answer p {
    margin: 0 0 1rem;
}

.tamaya-service-faq__answer p:last-child {
    margin-bottom: 0;
}

.tamaya-service-faq__answer ul {
    margin: 1rem 0 0;
}

@keyframes tamaya-service-faq-open {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {
    .tamaya-service-faq__list {
        border-radius: 19px;
    }

    .tamaya-service-faq__question {
        grid-template-columns: minmax(0, 1fr) 38px;
        gap: 1rem;

        min-height: 78px;
        padding: 1.15rem;

        font-size: 1.15rem;
    }

    .tamaya-service-faq__icon {
        width: 38px;
        height: 38px;
    }

    .tamaya-service-faq__answer {
        padding:
            0
            1.15rem
            1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tamaya-service-faq__question,
    .tamaya-service-faq__icon,
    .tamaya-service-faq__icon::before,
    .tamaya-service-faq__icon::after {
        transition: none;
    }

    .tamaya-service-faq__answer {
        animation: none;
    }
}

.tamaya-hero__dot {
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.tamaya-hero__dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tamaya-hero__dot.is-active::before,
.tamaya-hero__dot[aria-pressed="true"]::before {
    background: #fcdcfc;
    transform: translate(-50%, -50%) scale(1.35);
}

.tamaya-hero__dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}