@font-face {
    font-family: "Agerola";
    src: url("../fonts/agerola-regular.woff2") format("woff2"),
         url("../fonts/agerola-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --tc-black: #080706;
    --tc-bg: #1a1110;
    --tc-bg-soft: #211715;
    --tc-orange: #ffa200;
    --tc-beige: #dbd3bc;
    --tc-muted: rgba(219, 211, 188, 0.72);
    --tc-line: rgba(245, 160, 0, 0.35);
    --tc-line-soft: rgba(219, 211, 188, 0.16);
    --tc-container: 1180px;
    --tc-radius: 10px;
    --tc-footer-height: 120px;
    --tc-font-display: "Agerola", Georgia, "Times New Roman", serif;
    --tc-font-body: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--tc-black);
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: 16px;
    line-height: 1.6;
}

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

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

.tc-container {
    width: min(100% - 40px, var(--tc-container));
    margin-inline: auto;
}

.tc-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(245, 160, 0, 0.14), transparent 36rem),
        linear-gradient(180deg, #080706 0%, #1a1110 100%);
}

.tc-section-title,
.tc-standard-title {
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.tc-section-title {
    font-size: clamp(3rem, 9vw, 8rem);
}

.tc-standard-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
}

.tc-section-kicker {
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-size: clamp(0.78rem, 1.4vw, 1rem);
}

.tc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border: 1px solid var(--tc-orange);
    color: var(--tc-beige);
    background: rgba(8, 7, 6, 0.45);
    font-family: var(--tc-font-body);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tc-button:hover {
    background: var(--tc-orange);
    color: var(--tc-black);
    transform: translateY(-1px);
}

.tc-site-header,
.tc-site-footer {
    position: relative;
    z-index: 10;
}

/* Home */
.tc-home {
    min-height: calc(100svh - var(--tc-footer-height));
    background: var(--tc-black);
}

.tc-home-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--tc-footer-height));
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.tc-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            circle at center,
            rgba(8, 7, 6, 0.24) 0%,
            rgba(8, 7, 6, 0.48) 52%,
            rgba(8, 7, 6, 0.78) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 7, 6, 0.28) 0%,
            rgba(8, 7, 6, 0.26) 44%,
            rgba(8, 7, 6, 0.78) 100%
        );
    pointer-events: none;
}

.tc-home-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: center;
}

.tc-home-hero__logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tc-home-hero__logo {
    width: min(760px, 78vw);
    height: auto;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.42));
}

.tc-home-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
}

.tc-home-hero__actions .tc-button {
    min-width: 220px;
    color: #fff;
    background: transparent;
    border-color: var(--tc-orange);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tc-home-hero__actions .tc-button:hover {
    color: #fff;
    background: transparent;
    border-color: var(--tc-orange);
}

/* Menu page */
.tc-menu-page {
    padding: 0;
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.42) 0%, rgba(8, 7, 6, 0.62) 34%, rgba(8, 7, 6, 0.86) 68%, rgba(8, 7, 6, 0.99) 100%),
        url("https://www.thecornercocktailbar.it/wp-content/uploads/2026/05/background-interno.jpg"),
        var(--tc-black);
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.tc-menu-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(180px, 22vw, 270px) 0 56px;
    text-align: center;
}

.tc-menu-hero__eyebrow {
    order: 2;
    margin: 26px 0 0;
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: clamp(0.78rem, 1.4vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.tc-menu-hero__title {
    order: 1;
    position: relative;
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-size: clamp(5.8rem, 15vw, 13rem);
    font-weight: 400;
    line-height: 0.82;
    text-transform: uppercase;
}

.tc-menu-hero__title::after {
    content: "";
    display: block;
    width: min(220px, 48vw);
    height: 1px;
    margin: 30px auto 0;
    background: var(--tc-orange);
    opacity: 0.65;
}

.tc-menu-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0 0 54px;
}

.tc-menu-category-card {
    min-width: 0;
}

.tc-menu-category-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: rgba(8, 7, 6, 0.62);
    transition: border-color 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.tc-menu-category-card__link:hover {
    border-color: var(--tc-orange);
    background: rgba(8, 7, 6, 0.78);
    transform: translateY(-4px);
}

.tc-menu-category-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--tc-bg-soft);
}

.tc-menu-category-card__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.08) 0%, rgba(8, 7, 6, 0.22) 58%, rgba(8, 7, 6, 0.72) 100%);
    pointer-events: none;
}

.tc-menu-category-card__image,
.tc-menu-category-card__image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s ease, filter 0.36s ease;
}

.tc-menu-category-card__image-placeholder {
    background:
        radial-gradient(circle at center, rgba(255, 162, 0, 0.16), transparent 18rem),
        linear-gradient(135deg, var(--tc-bg-soft), var(--tc-black));
}

.tc-menu-category-card__link:hover .tc-menu-category-card__image {
    transform: scale(1.035);
    filter: brightness(1.04);
}

.tc-menu-category-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 26px 34px;
    text-align: center;
}

.tc-menu-category-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    color: var(--tc-orange);
    line-height: 1;
}

.tc-menu-category-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.tc-menu-category-card__title {
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-size: 45px;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.tc-menu-category-card__subtitle {
    margin: 18px 0 0;
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    line-height: 1.5;
    text-transform: uppercase;
}

.tc-menu-category-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--tc-orange);
    font-family: var(--tc-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tc-menu-category-card__cta span {
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.24s ease;
}

.tc-menu-category-card__link:hover .tc-menu-category-card__cta span {
    transform: translate(6px, -1px);
}

.tc-menu-page__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 0 76px;
    color: var(--tc-beige);
    text-align: center;
}

.tc-menu-page__hint::before,
.tc-menu-page__hint::after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--tc-line) 100%);
}

.tc-menu-page__hint::after {
    background: linear-gradient(90deg, var(--tc-line) 0%, transparent 100%);
}

.tc-menu-page__hint span {
    color: var(--tc-orange);
    font-size: 2rem;
    line-height: 1;
}

.tc-menu-page__hint p {
    margin: 0;
    font-family: var(--tc-font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.tc-empty-state {
    margin: 0;
    padding: 64px 0;
    color: var(--tc-muted);
    text-align: center;
}

/* Category page */
.tc-category-page {
    background:
        radial-gradient(circle at top center, rgba(255, 162, 0, 0.1), transparent 34rem),
        linear-gradient(180deg, var(--tc-black) 0%, var(--tc-bg) 100%);
}

.tc-category-hero {
    position: relative;
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    background: var(--tc-black);
}

.tc-category-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--tc-line-soft);
    pointer-events: none;
}

.tc-category-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 750px;
    padding: 132px 0 64px;
}

.tc-category-hero__content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.tc-category-hero__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    object-fit: contain;
}

.tc-category-hero__title {
    position: relative;
    z-index: 4;
    max-width: 760px;
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-size: clamp(4.4rem, 7.6vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.86;
    text-transform: uppercase;
}

.tc-category-hero__title::after {
    content: "";
    display: block;
    width: min(620px, 52vw);
    height: 1px;
    margin: 28px 0 0;
    background: var(--tc-orange);
    opacity: 0.55;
}

.tc-category-hero__background-image {
    position: absolute;
    top: 92px;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 100vw;
    min-height: 448px;
    margin: 0;
    overflow: hidden;
    background: var(--tc-black);
    transform: translateX(-50%);
}

.tc-category-hero__background-image::before,
.tc-category-hero__background-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.tc-category-hero__background-image::before {
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.72) 0%, rgba(8, 7, 6, 0.42) 34%, rgba(8, 7, 6, 0.02) 66%, rgba(8, 7, 6, 0.12) 100%),
        radial-gradient(circle at 78% 48%, rgba(255, 162, 0, 0.04) 0%, rgba(8, 7, 6, 0.08) 58%, rgba(8, 7, 6, 0.22) 100%);
}

.tc-category-hero__background-image::after {
    background: linear-gradient(180deg, rgba(8, 7, 6, 0) 0%, rgba(8, 7, 6, 0) 46%, rgba(8, 7, 6, 0.28) 100%);
}

.tc-category-hero__background-image img {
    display: block;
    width: 100vw;
    max-width: none;
    height: 100%;
    min-height: 448px;
    object-fit: cover;
    object-position: center center;
    filter: none;
}

.tc-category-hero__subtitle {
    position: relative;
    z-index: 4;
    margin: 28px 0 0;
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: clamp(0.78rem, 1.2vw, 0.98rem);
    font-weight: 500;
    letter-spacing: 0.52em;
    line-height: 1.6;
    text-transform: uppercase;
}

.tc-category-hero__description {
    position: relative;
    z-index: 4;
    max-width: 520px;
    margin-top: 22px;
    color: var(--tc-muted);
    font-family: var(--tc-font-body);
    font-size: 1rem;
    line-height: 1.6;
}

.tc-category-hero__description p {
    margin: 0;
}


.tc-category-content {
    padding: 82px 0 104px;
}

.tc-category-section + .tc-category-section {
    margin-top: 72px;
}

.tc-category-section__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 28px;
    text-align: center;
}

.tc-category-section__heading::before,
.tc-category-section__heading::after {
    content: "";
    display: block;
    width: min(210px, 30vw);
    height: 1px;
    background: rgba(255, 162, 0, 0.45);
}

.tc-category-section__heading h2 {
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.46em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tc-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid var(--tc-line-soft);
    background: rgba(8, 7, 6, 0.36);
}

.tc-category-item {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(80px, auto);
    gap: 28px;
    align-items: center;
    min-height: 76px;
    padding: 18px 30px;
    border-bottom: 1px solid var(--tc-line-soft);
}

.tc-category-item:last-child {
    border-bottom: 0;
}

.tc-category-item__title {
    min-width: 0;
    color: var(--tc-beige);
    font-family: var(--tc-font-display);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
}

.tc-category-item__price {
    color: var(--tc-orange);
    font-family: var(--tc-font-body);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.tc-category-item__prices {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.tc-category-item__price-separator {
    color: var(--tc-orange);
    line-height: 1;
}

.tc-category-item--wine {
    grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.55fr) minmax(80px, auto);
    gap: 28px;
}

.tc-category-item__details {
    min-width: 0;
    color: var(--tc-muted);
}

.tc-category-item__description {
    margin: 0;
    font-family: var(--tc-font-body);
    font-size: 0.88rem;
    line-height: 1.55;
}

.tc-category-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    margin-top: 10px;
    color: rgba(219, 211, 188, 0.62);
    font-family: var(--tc-font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.tc-category-item__meta strong {
    color: rgba(219, 211, 188, 0.88);
    font-weight: 700;
}

.tc-menu-category-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contacts page */
.tc-contacts-page {
    background:
        radial-gradient(circle at top center, rgba(255, 162, 0, 0.1), transparent 34rem),
        linear-gradient(180deg, var(--tc-black) 0%, var(--tc-bg) 100%);
}

.tc-contacts-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--tc-black);
}

.tc-contacts-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--tc-line-soft);
    pointer-events: none;
}

.tc-contacts-hero__background {
    position: absolute;
    inset: 92px 0 0;
    z-index: 1;
    overflow: hidden;
    background: var(--tc-black);
}

.tc-contacts-hero__background::before,
.tc-contacts-hero__background::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.tc-contacts-hero__background::before {
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.98) 0%, rgba(8, 7, 6, 0.82) 34%, rgba(8, 7, 6, 0.2) 64%, rgba(8, 7, 6, 0.48) 100%),
        radial-gradient(circle at 74% 48%, rgba(255, 162, 0, 0.06) 0%, rgba(8, 7, 6, 0.18) 56%, rgba(8, 7, 6, 0.72) 100%);
}

.tc-contacts-hero__background::after {
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.06) 0%, rgba(8, 7, 6, 0.14) 56%, rgba(8, 7, 6, 0.92) 100%);
}

.tc-contacts-hero__background img {
    width: 100%;
    height: 100%;
    min-height: 528px;
    object-fit: cover;
    object-position: center center;
    filter: none;
}

.tc-contacts-hero__inner {
    position: relative;
    z-index: 3;
    min-height: 620px;
    padding: 190px 0 84px;
}

.tc-contacts-hero__content {
    max-width: 560px;
}

.tc-contacts-hero__title {
    position: relative;
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-size: clamp(5.4rem, 11vw, 11rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.86;
    text-transform: uppercase;
}

.tc-contacts-hero__title::after {
    content: "";
    display: block;
    width: min(430px, 52vw);
    height: 1px;
    margin: 30px 0 0;
    background: var(--tc-orange);
    opacity: 0.58;
}

.tc-contacts-hero__subtitle {
    margin: 30px 0 0;
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: clamp(0.78rem, 1.2vw, 0.98rem);
    font-weight: 500;
    letter-spacing: 0.52em;
    line-height: 1.8;
    text-transform: uppercase;
}

.tc-contacts-hero__text {
    max-width: 520px;
    margin-top: 24px;
    color: var(--tc-muted);
    font-family: var(--tc-font-body);
    font-size: 0.98rem;
    line-height: 1.85;
}

.tc-contacts-hero__text p {
    margin: 0;
}

.tc-contacts-hero__text p + p {
    margin-top: 0.8rem;
}

.tc-contacts-main {
    padding: 100px 0;
}

.tc-contacts-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 42px;
    align-items: stretch;
    margin-top: -22px;
}

.tc-contacts-info {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--tc-line-soft);
    background: rgba(8, 7, 6, 0.36);
}

.tc-contacts-info__item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    flex: 1 1 0;
    min-height: 0;
    padding: 28px 28px;
    border-bottom: 1px solid var(--tc-line-soft);
}

.tc-contacts-info__item:last-child {
    border-bottom: 0;
}

.tc-contacts-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--tc-orange);
    border: 1px solid var(--tc-line);
    border-radius: 999px;
}

.tc-contacts-info__icon .dashicons {
    width: 26px;
    height: 26px;
    font-size: 26px;
    line-height: 1;
}

.tc-contacts-info__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tc-contacts-info__content h2 {
    margin: 0;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-size: 1.72rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.tc-contacts-info__content p {
    margin: 10px 0 0;
    color: var(--tc-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.tc-contacts-info__content a {
    color: var(--tc-muted);
    transition: color 0.2s ease;
}

.tc-contacts-info__content a:hover {
    color: var(--tc-orange);
}

.tc-contacts-info__hours-text {
    margin-top: 12px;
    color: var(--tc-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.tc-contacts-info__hours-text p {
    margin: 0;
}

.tc-contacts-info__hours-text p + p {
    margin-top: 0.7rem;
}

.tc-contacts-map {
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--tc-line-soft);
    background: rgba(8, 7, 6, 0.42);
}

.tc-contacts-map iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 560px;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.86) brightness(0.58) sepia(0.18);
}


/* Footer */
.tc-site-footer {
    display: flex;
    align-items: center;
    min-height: var(--tc-footer-height);
    padding: 20px 0;
    background: var(--tc-black);
    border-top: 1px solid var(--tc-line-soft);
}

.tc-site-footer__inner {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 1.6fr) 1fr;
    align-items: center;
    gap: 32px;
}

.tc-site-footer__inner--columns {
    grid-template-columns: 1fr minmax(420px, 1.6fr) 1fr;
}

.tc-site-footer__brand,
.tc-site-footer__column--logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.tc-site-footer__logo {
    width: 148px;
    max-width: 100%;
    height: auto;
}


.tc-site-footer__column--content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    max-width: 680px;
    margin-inline: auto;
}

.tc-site-footer__text {
    color: var(--tc-muted);
    font-family: var(--tc-font-body);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.6;
}

.tc-site-footer__text--main {
    padding-right: 24px;
    border-right: 1px solid var(--tc-muted);
    text-align: right;
}

.tc-site-footer__text--tax {
    text-align: left;
}

.tc-site-footer__text p {
    margin: 0;
}

.tc-site-footer__text p + p {
    margin-top: 0.7rem;
}

.tc-site-footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.tc-site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--tc-beige);
    border: 1px solid var(--tc-line-soft);
    border-radius: 999px;
    background: rgba(219, 211, 188, 0.03);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.tc-site-footer__social-link:hover {
    color: var(--tc-black);
    border-color: var(--tc-orange);
    background: var(--tc-orange);
    transform: translateY(-1px);
}

.tc-site-footer__social-icon {
    width: 22px;
    height: 22px;
}

/* Header */
.tc-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--tc-black);
    border-bottom: 1px solid rgba(219, 211, 188, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.admin-bar .tc-site-header {
    top: 32px;
}

body.page-template-page-menu .tc-site-header,
body.page-template-page-menu-php .tc-site-header,
body.tc-menu-page-template .tc-site-header,
body:has(.tc-menu-page) .tc-site-header {
    background: transparent;
}

.tc-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 32px;
}

.tc-site-header__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.tc-site-header__logo {
    width: 154px;
    max-width: 100%;
    height: auto;
}

.tc-main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tc-main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tc-main-menu li {
    margin: 0;
    padding: 0;
}

.tc-main-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--tc-beige);
    font-family: var(--tc-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.tc-main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 100%;
    height: 1px;
    background: var(--tc-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.tc-main-menu a:hover,
.tc-main-menu .current-menu-item > a,
.tc-main-menu .current_page_item > a {
    color: var(--tc-orange);
}

.tc-main-menu a:hover::after,
.tc-main-menu .current-menu-item > a::after,
.tc-main-menu .current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tc-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 0 0 18px;
    border: 0;
    color: var(--tc-beige);
    background: transparent;
    font-family: var(--tc-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.tc-menu-toggle__icon {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 28px;
    height: 28px;
}

.tc-menu-toggle__icon span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--tc-orange);
    transition: transform 0.24s ease, opacity 0.2s ease;
}

body.tc-menu-open {
    overflow: hidden;
}

body.tc-menu-open .tc-menu-toggle__icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

body.tc-menu-open .tc-menu-toggle__icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tc-standard-page {
    padding-top: 140px;
}

.tc-standard-hero {
    padding: 0 0 40px;
    border-bottom: 1px solid var(--tc-line-soft);
}

.tc-standard-hero .tc-section-kicker {
    display: none;
}

.tc-standard-content {
    padding: 56px 0 96px;
}

.tc-standard-content__inner {
    max-width: 860px;
}

.tc-standard-content__inner h2,
.tc-standard-content__inner h3,
.tc-standard-content__inner h4 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--tc-orange);
    font-family: var(--tc-font-display);
    font-weight: 400;
    line-height: 1.15;
}

.tc-standard-content__inner a {
    color: var(--tc-orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tc-standard-content__inner ul,
.tc-standard-content__inner ol {
    padding-left: 1.4rem;
}

@media (max-width: 768px) {
    .tc-container {
        width: min(100% - 28px, var(--tc-container));
    }

    :root {
        --tc-footer-height: 320px;
    }

    .tc-button {
        width: 100%;
    }

    .tc-home {
        min-height: 100svh;
    }

    .tc-home-hero {
        min-height: 100svh;
        padding: 56px 0;
        background-position: center center;
    }

    .tc-home-hero__content {
        gap: 34px;
    }

    .tc-home-hero__logo {
        width: min(420px, 86vw);
    }

    .tc-home-hero__actions {
        flex-direction: column;
        gap: 14px;
        max-width: 320px;
        margin-inline: auto;
    }

    .tc-home-hero__actions .tc-button {
        min-width: 0;
    }

    .tc-standard-page {
        padding-top: 110px;
    }

    .tc-standard-hero {
        padding: 0 0 32px;
    }

    .tc-standard-content {
        padding: 40px 0 72px;
    }

    .tc-site-header__inner {
        min-height: 78px;
    }

    body.admin-bar .tc-site-header {
        top: 46px;
    }

    body.page-template-page-menu .tc-site-header,
    body.page-template-page-menu-php .tc-site-header,
    body.tc-menu-page-template .tc-site-header,
    body:has(.tc-menu-page) .tc-site-header {
        background: transparent;
    }

    .tc-site-header__logo {
        width: 124px;
    }

    .tc-menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 120;
    }

    .tc-main-navigation {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 110px 28px 48px;
        background:
            radial-gradient(circle at top center, rgba(255, 162, 0, 0.16), transparent 30rem),
            linear-gradient(180deg, rgba(8, 7, 6, 0.98) 0%, rgba(26, 17, 16, 0.98) 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    }

    body.tc-menu-open .tc-main-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .tc-main-menu {
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }

    .tc-main-menu a {
        justify-content: center;
        min-height: auto;
        color: var(--tc-orange);
        font-family: var(--tc-font-display);
        font-size: clamp(3rem, 15vw, 5.6rem);
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 0.95;
        text-align: center;
        text-transform: uppercase;
    }

    .tc-main-menu a::after {
        display: none;
    }

    .tc-site-footer {
        min-height: var(--tc-footer-height);
        padding: 32px 0;
    }

    .tc-site-footer__inner,
    .tc-site-footer__inner--columns {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .tc-site-footer__brand,
    .tc-site-footer__column--logo,
    .tc-site-footer__social {
        justify-content: center;
    }

    .tc-site-footer__logo {
        width: 132px;
    }

    .tc-site-footer__column--content {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 420px;
    }

    .tc-site-footer__text {
        font-size: 0.7rem;
        text-align: center;
    }

    .tc-site-footer__text--main {
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid var(--tc-muted);
        text-align: center;
    }

    .tc-site-footer__text--tax {
        text-align: center;
    }
    
    .tc-menu-page {
        padding-top: 0;
        background-size: auto 620px;
        background-position: center top;
    }

    .tc-menu-hero {
        padding: 150px 0 34px;
    }

    .tc-menu-hero__eyebrow {
        margin: 20px 0 0;
        font-size: 0.72rem;
        letter-spacing: 0.32em;
    }

    .tc-menu-hero__title {
        font-size: clamp(4.4rem, 25vw, 7rem);
    }

    .tc-menu-hero__title::after {
        margin-top: 22px;
    }

    .tc-menu-categories {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-bottom: 42px;
    }

    .tc-menu-category-card__link {
        min-height: 0;
    }

    .tc-menu-category-card__content {
        padding: 24px 22px 30px;
    }

    .tc-menu-category-card__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 16px;
    }

    .tc-menu-category-card__title {
        font-size: 42px;
    }

    .tc-menu-category-card__subtitle {
        font-size: 0.72rem;
        letter-spacing: 0.32em;
    }

    .tc-menu-category-card__cta {
        font-size: 0.72rem;
        letter-spacing: 0.24em;
    }

    .tc-menu-page__hint {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 54px;
    }

    .tc-menu-page__hint::before,
    .tc-menu-page__hint::after {
        width: 120px;
    }

    .tc-menu-page__hint p {
        font-size: 0.72rem;
        letter-spacing: 0.32em;
        line-height: 1.8;
    }

    .tc-category-hero {
        padding: 0;
    }

    .tc-category-hero__inner {
        min-height: 500px;
        padding: 106px 0 54px;
        align-items: center;
    }

    .tc-category-hero__content {
        max-width: none;
        text-align: center;
    }

    .tc-category-hero__icon {
        width: 44px;
        height: 44px;
        margin: 0 auto 20px;
    }

    .tc-category-hero__title {
        font-size: clamp(3.7rem, 19vw, 6.2rem);
    }

    .tc-category-hero__title::after {
        width: min(260px, 70vw);
        margin: 24px auto 0;
    }

    .tc-category-hero__background-image {
        top: 78px;
        right: auto;
        bottom: 0;
        left: 50%;
        width: 100vw;
        min-height: 422px;
        margin-left: 0;
        transform: translateX(-50%);
    }

    .tc-category-hero__background-image img {
        width: 100vw;
        max-width: none;
        min-height: 422px;
        object-position: 78% center;
    }

    .tc-category-hero__background-image::before {
        background:
            linear-gradient(90deg, rgba(8, 7, 6, 0.78) 0%, rgba(8, 7, 6, 0.54) 38%, rgba(8, 7, 6, 0.34) 68%, rgba(8, 7, 6, 0.46) 100%),
            radial-gradient(circle at 78% 48%, rgba(255, 162, 0, 0.03) 0%, rgba(8, 7, 6, 0.24) 58%, rgba(8, 7, 6, 0.58) 100%);
    }

    .tc-category-hero__background-image::after {
        background: linear-gradient(180deg, rgba(8, 7, 6, 0.08) 0%, rgba(8, 7, 6, 0.22) 42%, rgba(8, 7, 6, 0.68) 100%);
    }

    .tc-category-hero__subtitle {
        margin-top: 22px;
        font-size: 0.72rem;
        letter-spacing: 0.34em;
    }

    .tc-category-hero__description {
        margin-inline: auto;
        font-size: 0.88rem;
    }


    .tc-category-content {
        padding: 54px 0 72px;
    }

    .tc-category-section + .tc-category-section {
        margin-top: 54px;
    }

    .tc-category-section__heading {
        gap: 14px;
        margin-bottom: 22px;
    }

    .tc-category-section__heading::before,
    .tc-category-section__heading::after {
        width: 48px;
    }

    .tc-category-section__heading h2 {
        font-size: 0.78rem;
        letter-spacing: 0.32em;
    }

    .tc-category-item,
    .tc-category-item--wine {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        min-height: 0;
        padding: 18px 18px;
    }

    .tc-category-item--wine .tc-category-item__details {
        grid-column: 1 / -1;
        order: 3;
    }

    .tc-category-item__title {
        font-size: 1.38rem;
    }

    .tc-category-item__price {
        font-size: 1rem;
    }

    .tc-category-item__prices--multiple {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .tc-category-item__prices--multiple .tc-category-item__price-separator {
        display: none;
    }

    .tc-category-item__description {
        font-size: 0.84rem;
    }

    .tc-category-item__meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        font-size: 0.62rem;
    }

    /* Contacts page */
    .tc-contacts-hero {
        min-height: 520px;
    }

    .tc-contacts-hero__background {
        inset: 78px 0 0;
    }

    .tc-contacts-hero__background img {
        min-height: 442px;
        object-position: center center;
    }

    .tc-contacts-hero__inner {
        min-height: 520px;
        padding: 132px 0 58px;
    }

    .tc-contacts-hero__content {
        max-width: none;
        text-align: center;
    }

    .tc-contacts-hero__title {
        font-size: clamp(4.2rem, 21vw, 6.8rem);
    }

    .tc-contacts-hero__title::after {
        width: min(260px, 70vw);
        margin: 24px auto 0;
    }

    .tc-contacts-hero__subtitle {
        margin-top: 22px;
        font-size: 0.72rem;
        letter-spacing: 0.34em;
    }

    .tc-contacts-hero__text {
        max-width: 320px;
        margin-inline: auto;
        font-size: 0.88rem;
    }

    .tc-contacts-main {
        padding: 0 0 72px;
    }

    .tc-contacts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 0;
    }

    .tc-contacts-info {
        width: 100%;
    }

    .tc-contacts-info__item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 18px;
        flex: initial;
        padding: 24px 20px;
    }

    .tc-contacts-info__icon {
        width: 52px;
        height: 52px;
    }

    .tc-contacts-info__icon .dashicons {
        width: 23px;
        height: 23px;
        font-size: 23px;
    }

    .tc-contacts-info__icon img {
        width: 24px;
        height: 24px;
    }

    .tc-contacts-info__content h2 {
        font-size: 1.45rem;
    }

    .tc-contacts-info__content p,
    .tc-contacts-info__hours-text {
        font-size: 0.88rem;
    }

    .tc-contacts-map {
        min-height: 0;
    }

    .tc-contacts-map iframe {
        min-height: 360px;
    }
}
