/* Sections */
section {
    padding: 70px 0
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

section h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: .2px;
}

section {
    opacity: .85;
    transition: opacity .6s ease;
}

section.is-visible {
    opacity: 1;
}

.lead {
    color: var(--muted);
    margin: 8px 0 0;
    max-width: 70ch
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}

.list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .03);
}

.li strong {
    display: block;
    font-size: 14px
}

.li span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px
}

li .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 7px;
    background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
    box-shadow: 0 0 0 4px rgba(214, 179, 106, .10);
    flex: 0 0 auto;
}

.list .li {
    transition: transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.list .li:hover {
    transform: translateY(-1px);
    border-color: rgba(214, 178, 106, .45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(214, 178, 106, .15);
}

.list .li:hover .dot {
    box-shadow: 0 0 18px rgba(214, 178, 106, .6);
}

/* Surf table */
.surf {
    overflow: hidden;
}

.surf table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.surf table th, .surf table td {
    padding: 0 12px;
    line-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: var(--text);
    text-align: left;
}

.surf table th {
    color: var(--muted);
    font-weight: 600;
}

.surf table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.surf table tr td a {
    display: block;
}

@media only screen and (min-width: 740px) {
    .surf table tr td a:hover{
        color: var(--gold2);
    }
}

.surf table tr .km {
    color: var(--muted);
}

/* Gallery carousel */
.carousel {
    position: relative;
    padding: 16px;
    border-radius: var(--radius2);
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .25);
}

.carousel-track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, .03);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06)
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex: 1
}

.dotbtn {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(214, 179, 106, .45);
    background: rgba(214, 179, 106, .15);
    cursor: pointer;
    opacity: .7;
}

.dotbtn.active {
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    opacity: 1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 480px) {
    div.contact-grid div.card a.btn:not(.primary) { display: none }
}

.kv {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.kv b {
    color: var(--text);
    font-weight: 600
}

.qr {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.qr img {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    object-fit: cover;
}

.footer {
    padding: 26px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: 13px;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 480px) {
    footer.footer div.row span.location { display: none }
}

.subtle {
    color: var(--muted)
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 18px 0 0
}

.accent-line {
    height: 2px;
    width: 84px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 999px;
    margin-top: 10px;
}

.map-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; /* 👈 desired ratio */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(214, 179, 106, .18);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: rgba(233, 230, 223, .55);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: color .25s ease,
    border-color .25s ease,
    background .25s ease,
    transform .2s ease;
}

.ig-link:hover {
    color: var(--gold2);
    border-color: rgba(214, 179, 106, .45);
    background: rgba(214, 179, 106, .08);
    transform: translateY(-1px);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 32px;
}

.legal-links a {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.6;
}

.legal-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Specific button hover states that aren't critical */
.btn:hover::after { opacity: .35; }
.btn:not(.primary):not(.ghost):hover {
    transform: translateY(-2px);
    background: linear-gradient(
        180deg,
        rgba(214, 179, 106, .30),
        rgba(214, 179, 106, .14)
    );
    border-color: rgba(241, 215, 155, .75);
    box-shadow: 0 14px 34px rgba(214, 179, 106, .22),
    0 0 0 1px rgba(214, 179, 106, .18);
}
.btn.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        180deg,
        rgba(241, 215, 155, .98),
        rgba(214, 179, 106, .75)
    );
    border-color: rgba(255, 230, 180, 1);
    box-shadow: 0 20px 48px rgba(214, 179, 106, .35),
    0 0 0 1px rgba(241, 215, 155, .35);
}
.btn.primary:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(214, 179, 106, .25);
}
.btn.ghost:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(214, 179, 106, .35);
    box-shadow: 0 0 0 1px rgba(214, 179, 106, .12);
    color: var(--gold2);
}

.siyomin-index,
.siyomin404 {
    min-height: calc(100vh - 250px);
    display:flex;
    align-items:center;
    padding-bottom: 70px;
    color: var(--muted);
}
.siyomin404 article {
    max-width:560px;
    margin:80px auto;
    text-align:center;
}

.siyomin404 article h1{
    font-size:42px;
    margin-bottom:12px;
}

.siyomin404 article p.lead{
    margin-bottom:18px;
}

.siyomin404 article p.subtle{
    margin-bottom:28px;
}
