/* ==========================================================
   Alecia Underwood Cinematic Theme
   Built to match the supplied mockup:
   black background, copper-gold typography, romantic script,
   diner/book hero, thin borders, square buttons, card layout.
========================================================== */

:root {
    --ak-black: #050403;
    --ak-black-2: #0b0704;
    --ak-panel: rgba(9, 6, 4, 0.88);
    --ak-copper: #c06f22;
    --ak-copper-2: #a65317;
    --ak-gold: #d99a45;
    --ak-gold-soft: #efb86a;
    --ak-text: #e0a055;
    --ak-muted: #b87934;
    --ak-border: rgba(192, 111, 34, 0.48);
    --ak-border-soft: rgba(192, 111, 34, 0.25);
    --ak-shadow: 0 28px 70px rgba(0, 0, 0, 0.62);
    --ak-max: 1780px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% -15%, rgba(191, 99, 24, 0.12), transparent 32%),
        url("../images/dark-texture.jpg") center top / cover fixed,
        var(--ak-black);
    color: var(--ak-text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
}

body.admin-bar .ak-header {
    width: 100%;
    min-height: 86px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(192, 111, 34, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48);
}

a {
    color: var(--ak-gold-soft);
}

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

/* HEADER */
.ak-header {
    width: 100%;
    min-height: 88px;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid rgba(192, 111, 34, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48);
}

.ak-header-inner {
    width: min(var(--ak-max), calc(100% - 64px));
    min-height: 86px;
    margin: 0 auto;
    padding-left: 10px;
    display: grid;
    grid-template-columns: 450px 1fr 122px;
    align-items: center;
    gap: 22px;
}

.ak-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 2px;
    overflow: visible;
}

.ak-brand img {
    width: 390px;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: drop-shadow(0 0 14px rgba(192, 111, 34, 0.22));
}

.ak-nav {
    justify-self: center;
}

.ak-menu,
.ak-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ak-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 1.8vw, 34px);
}

.ak-menu a {
    color: #d7b174;
    font-family: "Cinzel", Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 33px 0 29px;
    white-space: nowrap;
    transition: color 220ms ease, text-shadow 220ms ease;
}

.ak-menu a::after {
    content: "";
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ak-copper), transparent);
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    transition: width 240ms ease;
}

.ak-menu a:hover,
.ak-menu .current-menu-item > a,
.ak-menu .current_page_item > a {
    color: var(--ak-copper);
    text-shadow: 0 0 12px rgba(217, 154, 69, 0.42);
}

.ak-menu a:hover::after,
.ak-menu .current-menu-item > a::after,
.ak-menu .current_page_item > a::after {
    width: 110%;
}

.ak-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.ak-social a {
    display: inline-flex;
    width: 25px;
    height: 25px;
    transition: transform 220ms ease, filter 220ms ease;
}

.ak-social a:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(217, 154, 69, 0.5));
}

.ak-menu-toggle {
    display: none;
}

/* HERO */
.ak-hero {
    min-height: 614px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.28) 38%, rgba(0,0,0,0.16) 58%, rgba(0,0,0,0.58) 100%),
        url("../images/hero-diner-only.jpg") center top / cover no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--ak-border);
}

.ak-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 65% 28%, rgba(224, 110, 29, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.70));
    pointer-events: none;
}

.ak-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.ak-hero-inner {
    width: min(var(--ak-max), calc(100% - 54px));
    min-height: 614px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 610px 620px 285px;
    gap: 8px;
    align-items: end;
}

.ak-hero-copy {
    align-self: center;
    padding-top: 0;
    max-width: 560px;
}

.ak-hero-copy h1 {
    margin: 0;
    color: var(--ak-gold-soft);
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-size: clamp(76px, 6.1vw, 132px);
    line-height: 0.74;
    letter-spacing: 0.01em;
    text-shadow:
        0 0 18px rgba(192, 111, 34, 0.32),
        0 7px 20px rgba(0,0,0,0.78);
}

.ak-hero-copy h1 span {
    font-size: 0.64em;
}

.ak-ornament,
.ak-small-ornament {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--ak-copper);
    margin: 24px 0 18px;
}

.ak-ornament span,
.ak-small-ornament span,
.ak-footer-tagline span,
.ak-section-title span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ak-copper), transparent);
}

.ak-ornament span {
    width: 160px;
}

.ak-ornament b,
.ak-small-ornament b {
    font-family: Georgia, serif;
    font-size: 45px;
    line-height: 1;
    font-weight: 400;
}

.ak-hero-copy p {
    max-width: 470px;
    margin: 0 0 24px;
    color: var(--ak-gold-soft);
    font-size: 24px;
    line-height: 1.17;
    font-weight: 700;
    text-shadow: 0 3px 14px rgba(0,0,0,0.85);
}

.ak-hero-buttons {
    display: flex;
    gap: 22px;
    align-items: center;
}

.ak-btn,
.ak-small-btn,
.wp-block-button__link,
button,
input[type="submit"] {
    appearance: none;
    border-radius: 4px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 34px;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 220ms ease;
}

.ak-btn-solid,
.ak-small-btn,
.wp-block-button__link,
input[type="submit"] {
    color: #fff4df;
    background: linear-gradient(180deg, #c9782a 0%, #a65317 100%);
    border: 1px solid rgba(241, 178, 91, 0.50);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.17),
        0 0 22px rgba(192, 111, 34, 0.14);
}

.ak-btn-outline {
    color: var(--ak-gold-soft);
    background: rgba(5, 4, 3, 0.42);
    border: 1px solid rgba(217, 154, 69, 0.70);
}

.ak-btn:hover,
.ak-small-btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192, 111, 34, 0.28);
    filter: brightness(1.08);
}

.ak-book-wrap {
    display: none !important;
}

.ak-book {
    display: none !important;
}

.ak-author-wrap {
    align-self: end;
    height: 614px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.ak-quote-mark {
    display: block;
    color: var(--ak-copper);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.48;
}

.ak-quote p {
    margin: 0 auto 8px;
    max-width: 270px;
    color: var(--ak-gold-soft);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.09;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}

.ak-quote strong {
    display: block;
    color: var(--ak-gold);
    font-family: "Great Vibes", cursive;
    font-size: 34px;
    font-weight: 400;
}

.ak-small-ornament {
    justify-content: center;
    gap: 13px;
    margin: 6px auto 0;
}

.ak-small-ornament span {
    width: 70px;
}

.ak-small-ornament b {
    font-size: 31px;
}

/* FEATURE STRIP */
.ak-feature-strip {
    width: 100%;
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ak-border-soft);
    border-bottom: 1px solid var(--ak-border);
    background: rgba(8, 6, 4, 0.92);
}

.ak-feature {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    min-height: 150px;
    padding: 20px;
    border-right: 1px solid rgba(192,111,34,0.45);
}

.ak-feature:last-child {
    border-right: none;
}

.ak-feature img {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
}

.ak-feature h2 {
    margin: 0 0 7px;
    color: var(--ak-copper);
    font-family: "Cinzel", Georgia, serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.ak-feature p {
    margin: 0;
    color: var(--ak-gold-soft);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

.ak-feature-script {
    flex-direction: column;
    gap: 3px;
}

.ak-feature-script h2 {
    font-family: "Great Vibes", cursive;
    font-size: 43px;
    font-weight: 400;
    text-transform: none;
}

/* LOWER CONTENT */
.ak-lower {
    background:
        linear-gradient(180deg, rgba(6,5,3,0.95), rgba(5,4,3,0.98)),
        url("../images/dark-texture.jpg") center top / cover no-repeat;
    border-bottom: 1px solid var(--ak-border-soft);
}

.ak-lower-inner {
    width: min(1700px, calc(100% - 150px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px 1fr 330px;
    gap: 50px;
    padding: 26px 0 42px;
}

.ak-about-card h2,
.ak-newsletter h2,
.ak-section-title h2 {
    color: var(--ak-copper);
    font-family: "Cinzel", Georgia, serif;
    font-size: 25px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.ak-about-card img {
    width: 100%;
    border: 1px solid var(--ak-border);
    display: block;
    margin-bottom: 14px;
}

.ak-about-card p {
    color: var(--ak-gold-soft);
    font-size: 20px;
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 16px;
}

.ak-small-btn {
    min-height: 39px;
    padding: 0 34px;
    font-size: 13px;
}

.ak-kitchen-section {
    min-width: 0;
}

.ak-section-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin: 0 0 14px;
}

.ak-section-title span {
    width: 100%;
}

.ak-section-title h2 {
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.ak-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ak-story-card {
    border: 1px solid var(--ak-border);
    background: rgba(7, 5, 3, 0.72);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.ak-story-card img {
    display: block;
    width: 100%;
    height: 178px;
    object-fit: cover;
    border-bottom: 1px solid var(--ak-border);
}

.ak-story-card div {
    padding: 18px 24px 21px;
    min-height: 170px;
}

.ak-story-card h3 {
    margin: 0 0 8px;
    color: var(--ak-gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    line-height: 0.96;
    font-weight: 700;
    text-align: center;
}

.ak-story-card p {
    margin: 0 0 12px;
    color: var(--ak-gold-soft);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 700;
    text-align: center;
}

.ak-story-card a {
    display: block;
    color: var(--ak-gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.ak-story-card a span {
    font-size: 23px;
    vertical-align: -2px;
    margin-left: 8px;
}

.ak-newsletter {
    border-left: 1px solid var(--ak-border);
    padding-left: 50px;
    text-align: center;
}

.ak-newsletter h2 {
    margin-bottom: 12px;
}

.ak-newsletter p {
    max-width: 280px;
    margin: 0 auto 18px;
    color: var(--ak-gold-soft);
    font-size: 21px;
    line-height: 1.12;
    font-weight: 700;
}

.ak-newsletter form {
    display: grid;
    gap: 14px;
}

.ak-newsletter label span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.ak-newsletter input {
    width: 100%;
    height: 49px;
    border: 1px solid rgba(192,111,34,0.55);
    border-radius: 4px;
    background: rgba(4,3,2,0.72);
    color: var(--ak-gold-soft);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    padding: 0 16px;
    outline: none;
}

.ak-newsletter input::placeholder {
    color: #c9944f;
    opacity: 1;
}

.ak-newsletter input:focus {
    border-color: var(--ak-gold);
    box-shadow: 0 0 0 3px rgba(192,111,34,0.14);
}

.ak-newsletter .ak-btn {
    width: 100%;
    margin-top: 14px;
}

.ak-news-heart {
    margin-top: 22px;
    color: var(--ak-copper);
    font-size: 45px;
    line-height: 1;
}

/* FOOTER */
.ak-footer {
    background: #050403;
    border-top: 1px solid var(--ak-border);
    color: var(--ak-gold);
}

.ak-footer-inner {
    width: min(var(--ak-max), calc(100% - 140px));
    margin: 0 auto;
    text-align: center;
    padding: 17px 0 18px;
    position: relative;
}

.ak-footer-tagline {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 10px;
}

.ak-footer-tagline span {
    width: 130px;
}

.ak-footer-tagline strong {
    color: var(--ak-copper);
    font-family: "Cinzel", Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.ak-footer-tagline em {
    color: var(--ak-gold);
    font-family: "Great Vibes", cursive;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    margin-left: -12px;
}

.ak-footer-domain {
    display: inline-block;
    color: var(--ak-gold-soft);
    font-family: "Cinzel", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.ak-footer p {
    position: absolute;
    right: 0;
    bottom: 18px;
    margin: 0;
    color: var(--ak-gold);
    font-size: 14px;
}

/* CONTENT PAGES */
.ak-content-wrap {
    min-height: 62vh;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0;
}

.ak-page-header h1,
.ak-page-card h1 {
    margin: 0 0 24px;
    color: var(--ak-gold-soft);
    font-family: "Great Vibes", cursive;
    font-size: clamp(62px, 8vw, 105px);
    font-weight: 400;
    line-height: 0.95;
    text-align: center;
}

.ak-page-card,
.ak-post-card {
    border: 1px solid var(--ak-border);
    border-radius: 6px;
    background: rgba(7, 5, 3, 0.82);
    box-shadow: var(--ak-shadow);
    padding: clamp(24px, 4vw, 52px);
    color: var(--ak-gold-soft);
}

.ak-post-list {
    display: grid;
    gap: 28px;
}

.ak-post-card h2 {
    margin: 0 0 10px;
    color: var(--ak-gold);
    font-family: "Cinzel", Georgia, serif;
    text-transform: uppercase;
}

.ak-post-card h2 a,
.ak-read-link {
    color: var(--ak-gold);
    text-decoration: none;
}

.ak-post-meta {
    color: var(--ak-muted);
    font-family: "Cinzel", Georgia, serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ak-entry-content {
    color: var(--ak-gold-soft);
    font-size: 22px;
    line-height: 1.42;
}

.ak-entry-content h2,
.ak-entry-content h3 {
    color: var(--ak-copper);
    font-family: "Cinzel", Georgia, serif;
}

.ak-featured-image {
    margin: 0 0 28px;
}

.ak-featured-image img,
.ak-post-thumb img {
    border: 1px solid var(--ak-border);
    border-radius: 5px;
    display: block;
    width: 100%;
    height: auto;
}

.ak-pagination {
    margin-top: 32px;
    text-align: center;
}

/* ANIMATION */
.ak-animate-in {
    animation: akFadeUp 720ms ease both;
}

.ak-book-wrap {
    animation-delay: 120ms;
}

.ak-author-wrap {
    animation-delay: 180ms;
}

.ak-quote {
    align-self: center;
    text-align: center;
    margin: 0;
    padding-top: 0;
    padding-bottom: 4px;
}

@keyframes akFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ak-animate-in,
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* RESPONSIVE */
@media (max-width: 1500px) {
    .ak-header-inner {
        width: min(var(--ak-max), calc(100% - 70px));
        grid-template-columns: 360px 1fr 110px;
        gap: 24px;
    }

    .ak-brand img {
        width: 330px;
    }

    .ak-menu {
        gap: 24px;
    }

    .ak-menu a {
        font-size: 12px;
    }

    .ak-hero-inner {
        width: min(var(--ak-max), calc(100% - 80px));
        grid-template-columns: 430px 330px 430px 260px;
    }

    .ak-author {
    width: 590px;
    max-width: none;
    max-height: 614px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.45));
}
}

@media (max-width: 1180px) {
    body.admin-bar .ak-header {
        top: 46px;
    }

    .ak-header {
        position: sticky;
    }

    .ak-header-inner {
        min-height: 78px;
        grid-template-columns: 1fr auto;
        width: min(100% - 36px, 980px);
    }

    .ak-brand img {
        width: 285px;
    }

    .ak-menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 54px;
        height: 48px;
        background: rgba(192,111,34,0.1);
        border: 1px solid var(--ak-border);
        border-radius: 4px;
        color: var(--ak-gold);
        cursor: pointer;
    }

    .ak-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ak-gold);
    }

    .ak-menu-toggle em {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .ak-nav {
        grid-column: 1 / -1;
        width: 100%;
        display: none;
        padding-bottom: 18px;
    }

    .ak-nav.is-open {
        display: block;
    }

    .ak-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border: 1px solid var(--ak-border-soft);
    }

    .ak-menu a {
        display: block;
        padding: 16px;
        text-align: center;
        border-bottom: 1px solid var(--ak-border-soft);
    }

    .ak-social {
        display: none;
    }

    .ak-hero {
        min-height: auto;
    }

    .ak-hero-inner {
        width: min(100% - 46px, 900px);
        min-height: auto;
        padding: 64px 0 50px;
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }

    .ak-hero-copy {
        margin: 0 auto;
    }

    .ak-ornament {
        justify-content: center;
    }

    .ak-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .ak-hero-buttons {
        justify-content: center;
    }

    .ak-book-wrap {
        padding-top: 0;
    }

    .ak-book {
        width: 270px;
    }

    .ak-author-wrap {
        height: auto;
    }

    .ak-author {
        width: 380px;
        max-width: 100%;
    }


    .ak-quote {
        padding-top: 0;
    }

    .ak-feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .ak-feature:nth-child(2) {
        border-right: none;
    }

    .ak-lower-inner {
        width: min(100% - 46px, 900px);
        grid-template-columns: 1fr;
    }

    .ak-about-card {
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .ak-newsletter {
        border-left: none;
        border-top: 1px solid var(--ak-border);
        padding: 34px 0 0;
        max-width: 380px;
        margin: 0 auto;
    }

    .ak-footer-tagline {
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .ak-footer-tagline strong {
        font-size: 25px;
        letter-spacing: 0.12em;
    }

    .ak-footer p {
        position: static;
        margin-top: 8px;
    }
}

@media (max-width: 720px) {
    .ak-brand img {
        width: 235px;
    }

    .ak-hero-inner {
        width: min(100% - 30px, 560px);
        padding-top: 52px;
    }

    .ak-hero-copy h1 {
        font-size: 72px;
    }

    .ak-ornament span {
        width: 90px;
    }

    .ak-hero-copy p {
        font-size: 21px;
    }

    .ak-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .ak-btn {
        width: 100%;
        max-width: 320px;
    }

    .ak-book {
        width: 230px;
    }

    .ak-author {
        width: 310px;
    }

    .ak-feature-strip {
        grid-template-columns: 1fr;
    }

    .ak-feature {
        border-right: none;
        border-bottom: 1px solid rgba(192,111,34,0.35);
    }

    .ak-story-grid {
        grid-template-columns: 1fr;
    }

    .ak-section-title {
        grid-template-columns: 1fr;
    }

    .ak-section-title span {
        display: none;
    }

    .ak-footer-inner {
        width: min(100% - 30px, 560px);
    }

    .ak-footer-tagline span {
        display: none;
    }
}

@media (max-width: 480px) {
    .ak-header-inner {
        width: min(100% - 24px, 440px);
    }

    .ak-brand img {
        width: 210px;
    }

    .ak-menu {
        grid-template-columns: 1fr;
    }

    .ak-hero-copy h1 {
        font-size: 60px;
    }


    .ak-page-card,
    .ak-post-card {
        padding: 24px;
    }
}


@media (max-width: 1180px) {
    .ak-book-wrap, .ak-book { display: none !important; }
}


/* ==========================================================
   FINAL HERO IMAGE VERSION
   The full hero is now one finished banner image, so there are
   no duplicate text layers, no separate tablet, and no cutout haze.
========================================================== */

.ak-hero-final {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-bottom: 1px solid var(--ak-border) !important;
    background: #050403 !important;
}

.ak-hero-final::before,
.ak-hero-final::after {
    display: none !important;
    content: none !important;
}

.ak-hero-final-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Invisible clickable areas over the buttons already built into the hero image */
.ak-hero-hotspot {
    position: absolute;
    z-index: 5;
    display: block;
    text-indent: -9999px;
    overflow: hidden;
}

/* Button positions are percentages so they scale with the banner */
.ak-hero-hotspot-coming {
    left: 8.6%;
    top: 78.8%;
    width: 10.3%;
    height: 8.7%;
}

.ak-hero-hotspot-learn {
    left: 20.0%;
    top: 78.8%;
    width: 10.2%;
    height: 8.7%;
}

/* Make the feature strip sit tight under the hero */
.ak-feature-strip {
    margin-top: 0 !important;
}

/* Remove old hero layout pieces if cached markup remains */
.ak-hero-final .ak-hero-inner,
.ak-hero-final .ak-hero-copy,
.ak-hero-final .ak-book-wrap,
.ak-hero-final .ak-author-wrap,
.ak-hero-final .ak-quote {
    display: none !important;
}

@media (max-width: 720px) {
    .ak-hero-final-image {
        width: 170% !important;
        max-width: none !important;
        margin-left: -34% !important;
    }

    .ak-hero-hotspot-coming,
    .ak-hero-hotspot-learn {
        display: none;
    }
}


/* ==========================================================
   EXACT APPROVED HERO + FEATURE STRIP IMAGE
   Uses the user's approved design exactly as one image block.
========================================================== */
.ak-top-showcase {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #050403;
    border-bottom: 1px solid rgba(192, 111, 34, 0.30);
}

.ak-top-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

/* old hero/feature blocks no longer used on front page */
.ak-hero-final,
.ak-feature-strip {
    margin: 0;
}


/* ==========================================================
   CLICKABLE HOTSPOTS FOR APPROVED HERO IMAGE
   These invisible links sit directly over the baked-in buttons.
========================================================== */

.ak-top-showcase {
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #050403 !important;
    border-bottom: 1px solid rgba(192, 111, 34, 0.30) !important;
    line-height: 0 !important;
}

.ak-top-showcase-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ak-showcase-hotspot {
    position: absolute !important;
    z-index: 50 !important;
    display: block !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0) !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

/* Button coordinates for the approved hero image */
.ak-showcase-coming {
    left: 8.6% !important;
    top: 63.6% !important;
    width: 10.3% !important;
    height: 7.4% !important;
}

.ak-showcase-learn {
    left: 20.0% !important;
    top: 63.6% !important;
    width: 10.2% !important;
    height: 7.4% !important;
}

.ak-showcase-hotspot:focus-visible {
    outline: 2px solid #efb86a !important;
    outline-offset: 3px !important;
    border-radius: 4px !important;
}

/* Slightly larger invisible tap zones on small screens */
@media (max-width: 720px) {
    .ak-showcase-coming {
        left: 8.1% !important;
        top: 63.0% !important;
        width: 11.8% !important;
        height: 8.6% !important;
    }

    .ak-showcase-learn {
        left: 19.6% !important;
        top: 63.0% !important;
        width: 11.8% !important;
        height: 8.6% !important;
    }
}


/* ==========================================================
   ALECIA BLOG PAGE
   Makes /blog/ display real WordPress posts with the same
   cinematic gold/black look as the theme.
========================================================== */

.ak-blog-page {
    background:
        radial-gradient(circle at 50% 0%, rgba(192,111,34,0.16), transparent 34%),
        url("../images/dark-texture.jpg") center top / cover fixed,
        #050403;
    min-height: 70vh;
}

.ak-blog-hero {
    padding: clamp(58px, 7vw, 98px) 24px clamp(30px, 4vw, 44px);
    text-align: center;
    border-bottom: 1px solid rgba(192, 111, 34, 0.35);
    background:
        linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0.80)),
        url("../images/hero-diner-only.jpg") center center / cover no-repeat;
}

.ak-blog-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.ak-blog-hero h1 {
    margin: 0;
    color: var(--ak-gold-soft);
    font-family: "Great Vibes", cursive;
    font-size: clamp(72px, 9vw, 128px);
    font-weight: 400;
    line-height: 0.88;
    text-shadow:
        0 0 18px rgba(192, 111, 34, 0.32),
        0 7px 20px rgba(0,0,0,0.78);
}

.ak-blog-ornament {
    justify-content: center;
    margin: 22px auto 16px;
}

.ak-blog-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--ak-gold-soft);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(21px, 2.2vw, 29px);
    font-weight: 700;
    line-height: 1.16;
}

.ak-blog-list-wrap {
    width: min(1500px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(34px, 5vw, 70px) 0;
}

.ak-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.ak-blog-card {
    border: 1px solid rgba(192,111,34,0.50);
    background: rgba(7, 5, 3, 0.82);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.45);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ak-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217,154,69,0.78);
    box-shadow: 0 26px 70px rgba(0,0,0,0.58);
}

.ak-blog-card-image {
    display: block;
    aspect-ratio: 286 / 186;
    overflow: hidden;
    border-bottom: 1px solid rgba(192,111,34,0.45);
    background: #090604;
}

.ak-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease, filter 300ms ease;
}

.ak-blog-card:hover .ak-blog-card-image img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.ak-blog-card-content {
    padding: 22px 24px 26px;
    text-align: center;
}

.ak-blog-meta {
    color: var(--ak-muted);
    font-family: "Cinzel", Georgia, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ak-blog-card h2 {
    margin: 0 0 10px;
    color: var(--ak-gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(27px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 0.98;
}

.ak-blog-card h2 a {
    color: var(--ak-gold);
    text-decoration: none;
}

.ak-blog-card h2 a:hover {
    color: var(--ak-gold-soft);
}

.ak-blog-card p {
    margin: 0 0 16px;
    color: var(--ak-gold-soft);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.12;
}

.ak-read-link {
    color: var(--ak-gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
}

.ak-read-link span {
    font-size: 20px;
    vertical-align: -2px;
    margin-left: 4px;
}

.ak-blog-pagination {
    margin-top: 42px;
    text-align: center;
    font-family: "Cinzel", Georgia, serif;
}

.ak-blog-pagination .page-numbers {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin: 4px;
    padding: 0 14px;
    border: 1px solid rgba(192,111,34,0.55);
    border-radius: 4px;
    color: var(--ak-gold-soft);
    background: rgba(5,4,3,0.60);
    text-decoration: none;
}

.ak-blog-pagination .page-numbers.current,
.ak-blog-pagination .page-numbers:hover {
    background: linear-gradient(180deg, #c9782a 0%, #a65317 100%);
    color: #fff4df;
}

.ak-blog-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid rgba(192,111,34,0.50);
    background: rgba(7, 5, 3, 0.82);
    text-align: center;
}

.ak-blog-empty h2 {
    margin: 0 0 12px;
    color: var(--ak-gold);
    font-family: "Cinzel", Georgia, serif;
    text-transform: uppercase;
}

.ak-blog-empty p {
    margin: 0;
    color: var(--ak-gold-soft);
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .ak-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ak-blog-list-wrap {
        width: min(100% - 28px, 520px);
    }

    .ak-blog-grid {
        grid-template-columns: 1fr;
    }

    .ak-blog-card-content {
        padding: 20px;
    }
}


/* ==========================================================
   FINAL SMARTPHONE + TABLET RESPONSIVE FIX
   Keeps desktop hero exact, then swaps to readable live layout
   on smaller screens so text/buttons/features are not tiny.
========================================================== */

/* Default: mobile/tablet live version hidden on desktop */
.ak-mobile-showcase {
    display: none;
}

/* Clean up old desktop image hero sizing */
.ak-top-showcase {
    position: relative !important;
    overflow: hidden !important;
}

.ak-top-showcase-image {
    display: block !important;
}

/* Header/tablet nav */
@media (max-width: 1180px) {
    body.admin-bar .ak-header {
        top: 46px !important;
    }

    .ak-header {
        min-height: 74px !important;
    }

    .ak-header-inner {
        width: min(100% - 28px, 980px) !important;
        min-height: 74px !important;
        padding-left: 0 !important;
        grid-template-columns: 1fr auto !important;
        gap: 14px !important;
    }

    .ak-brand img {
        width: clamp(225px, 50vw, 320px) !important;
        max-height: 68px !important;
    }

    .ak-menu-toggle {
        display: inline-flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 52px !important;
        height: 46px !important;
        background: rgba(192,111,34,0.12) !important;
        border: 1px solid rgba(192,111,34,0.55) !important;
        border-radius: 4px !important;
        cursor: pointer !important;
    }

    .ak-menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        background: #d99a45 !important;
    }

    .ak-menu-toggle em {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
    }

    .ak-nav {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        display: none !important;
        padding: 0 0 16px !important;
    }

    .ak-nav.is-open {
        display: block !important;
    }

    .ak-menu {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
        border: 1px solid rgba(192,111,34,0.30) !important;
        background: rgba(5,4,3,0.96) !important;
    }

    .ak-menu li {
        margin: 0 !important;
    }

    .ak-menu a {
        display: block !important;
        padding: 15px 10px !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(192,111,34,0.22) !important;
        font-size: 12px !important;
    }

    .ak-menu a::after {
        display: none !important;
    }

    .ak-social {
        display: none !important;
    }
}

/* Tablet portrait + phones: use readable responsive hero instead of tiny baked hero */
@media (max-width: 900px) {
    .ak-top-showcase {
        display: none !important;
    }

    .ak-mobile-showcase {
        display: block !important;
        background: #050403 !important;
        border-bottom: 1px solid rgba(192,111,34,0.35) !important;
    }

    .ak-mobile-hero {
        position: relative !important;
        overflow: hidden !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.98fr) !important;
        gap: 18px !important;
        align-items: end !important;
        min-height: 650px !important;
        padding: 52px 28px 0 !important;
        background:
            linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35) 58%, rgba(0,0,0,0.72)),
            url("../images/hero-diner-only.jpg") center center / cover no-repeat !important;
    }

    .ak-mobile-hero::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background:
            radial-gradient(circle at 75% 22%, rgba(192,111,34,0.16), transparent 30%),
            linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.68)) !important;
        pointer-events: none !important;
    }

    .ak-mobile-hero-copy,
    .ak-mobile-author-wrap,
    .ak-mobile-quote {
        position: relative !important;
        z-index: 2 !important;
    }

    .ak-mobile-hero-copy {
        align-self: center !important;
        padding-bottom: 46px !important;
    }

    .ak-mobile-hero-copy h1 {
        margin: 0 !important;
        color: var(--ak-gold-soft) !important;
        font-family: "Great Vibes", cursive !important;
        font-size: clamp(70px, 12vw, 118px) !important;
        font-weight: 400 !important;
        line-height: 0.78 !important;
        text-shadow: 0 4px 20px rgba(0,0,0,0.85), 0 0 18px rgba(192,111,34,0.25) !important;
    }

    .ak-mobile-hero-copy h1 span {
        font-size: 0.65em !important;
    }

    .ak-mobile-ornament {
        justify-content: flex-start !important;
        margin: 20px 0 18px !important;
    }

    .ak-mobile-ornament span {
        width: 112px !important;
    }

    .ak-mobile-hero-copy p {
        max-width: 420px !important;
        margin: 0 0 24px !important;
        color: var(--ak-gold-soft) !important;
        font-family: "Cormorant Garamond", Georgia, serif !important;
        font-size: clamp(21px, 3.2vw, 27px) !important;
        font-weight: 700 !important;
        line-height: 1.13 !important;
        text-shadow: 0 3px 14px rgba(0,0,0,0.85) !important;
    }

    .ak-mobile-buttons {
        display: flex !important;
        gap: 14px !important;
        flex-wrap: wrap !important;
    }

    .ak-mobile-buttons .ak-btn {
        min-width: 170px !important;
    }

    .ak-mobile-author-wrap {
        align-self: end !important;
        text-align: center !important;
    }

    .ak-mobile-author-wrap img {
        width: min(100%, 440px) !important;
        max-height: 610px !important;
        object-fit: contain !important;
        object-position: bottom center !important;
        display: block !important;
        margin: 0 auto !important;
        filter: drop-shadow(0 18px 28px rgba(0,0,0,0.60)) !important;
    }

    .ak-mobile-quote {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        max-width: 680px !important;
        margin: -8px auto 28px !important;
        padding: 18px 22px !important;
        text-align: center !important;
        border-top: 1px solid rgba(192,111,34,0.28) !important;
        border-bottom: 1px solid rgba(192,111,34,0.28) !important;
        background: rgba(5,4,3,0.45) !important;
    }

    .ak-mobile-quote span {
        display: block !important;
        color: var(--ak-copper) !important;
        font-size: 46px !important;
        line-height: 0.7 !important;
    }

    .ak-mobile-quote p {
        margin: 0 auto 8px !important;
        color: var(--ak-gold-soft) !important;
        font-size: clamp(21px, 3.1vw, 27px) !important;
        font-weight: 700 !important;
        line-height: 1.08 !important;
    }

    .ak-mobile-quote strong {
        color: var(--ak-gold) !important;
        font-family: "Great Vibes", cursive !important;
        font-size: 34px !important;
        font-weight: 400 !important;
    }

    .ak-mobile-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        background: rgba(8,6,4,0.94) !important;
        border-top: 1px solid rgba(192,111,34,0.42) !important;
        border-bottom: 1px solid rgba(192,111,34,0.42) !important;
    }

    .ak-mobile-feature {
        min-height: 150px !important;
        padding: 22px 16px !important;
        text-align: center !important;
        border-right: 1px solid rgba(192,111,34,0.35) !important;
        border-bottom: 1px solid rgba(192,111,34,0.28) !important;
    }

    .ak-mobile-feature:nth-child(2n) {
        border-right: 0 !important;
    }

    .ak-mobile-feature img {
        width: 56px !important;
        height: 56px !important;
        margin: 0 auto 8px !important;
        display: block !important;
    }

    .ak-mobile-feature h2 {
        margin: 0 0 6px !important;
        color: var(--ak-copper) !important;
        font-family: "Cinzel", Georgia, serif !important;
        font-size: 21px !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
    }

    .ak-mobile-feature p {
        margin: 0 !important;
        color: var(--ak-gold-soft) !important;
        font-family: "Cormorant Garamond", Georgia, serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.05 !important;
    }

    .ak-mobile-feature-script h2 {
        font-family: "Great Vibes", cursive !important;
        font-size: 42px !important;
        text-transform: none !important;
        font-weight: 400 !important;
    }
}

/* Phones: tighter stacked layout */
@media (max-width: 640px) {
    .ak-header-inner {
        width: min(100% - 22px, 520px) !important;
    }

    .ak-brand img {
        width: clamp(205px, 68vw, 275px) !important;
    }

    .ak-menu {
        grid-template-columns: 1fr !important;
    }

    .ak-mobile-hero {
        display: block !important;
        min-height: auto !important;
        padding: 38px 18px 0 !important;
        text-align: center !important;
        background-position: center top !important;
    }

    .ak-mobile-hero-copy {
        padding-bottom: 24px !important;
    }

    .ak-mobile-hero-copy h1 {
        font-size: clamp(60px, 17vw, 92px) !important;
    }

    .ak-mobile-ornament {
        justify-content: center !important;
    }

    .ak-mobile-ornament span {
        width: 84px !important;
    }

    .ak-mobile-hero-copy p {
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 21px !important;
    }

    .ak-mobile-buttons {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .ak-mobile-buttons .ak-btn {
        width: min(100%, 320px) !important;
        max-width: 320px !important;
    }

    .ak-mobile-author-wrap img {
        width: min(92%, 330px) !important;
        max-height: 420px !important;
    }

    .ak-mobile-quote {
        margin: 0 18px 22px !important;
        padding: 16px 12px !important;
    }

    .ak-mobile-features {
        grid-template-columns: 1fr !important;
    }

    .ak-mobile-feature {
        min-height: 128px !important;
        border-right: 0 !important;
    }
}

/* Main homepage lower content cleanup on tablets/phones */
@media (max-width: 1050px) {
    .ak-lower-inner {
        width: min(100% - 42px, 900px) !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .ak-about-card {
        max-width: 420px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .ak-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ak-newsletter {
        border-left: 0 !important;
        border-top: 1px solid rgba(192,111,34,0.45) !important;
        padding: 32px 0 0 !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 680px) {
    .ak-lower-inner {
        width: min(100% - 28px, 520px) !important;
        padding-top: 26px !important;
    }

    .ak-story-grid {
        grid-template-columns: 1fr !important;
    }

    .ak-section-title {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .ak-section-title span {
        display: none !important;
    }

    .ak-footer-tagline {
        display: block !important;
    }

    .ak-footer-tagline strong {
        display: block !important;
        font-size: 20px !important;
        letter-spacing: 0.09em !important;
        line-height: 1.25 !important;
    }

    .ak-footer-tagline em {
        display: block !important;
        margin-left: 0 !important;
        font-size: 38px !important;
    }

    .ak-footer-domain {
        font-size: 15px !important;
    }
}

/* Content pages and blog cleanup */
@media (max-width: 720px) {
    .ak-content-wrap,
    .ak-blog-list-wrap {
        width: min(100% - 28px, 560px) !important;
        padding-top: 34px !important;
        padding-bottom: 42px !important;
    }

    .ak-page-card,
    .ak-post-card,
    .ak-blog-empty {
        padding: 22px !important;
    }

    .ak-entry-content {
        font-size: 19px !important;
    }

    .ak-blog-hero {
        padding: 52px 18px 34px !important;
    }

    .ak-blog-hero h1 {
        font-size: clamp(66px, 18vw, 100px) !important;
    }

    .ak-blog-hero p {
        font-size: 21px !important;
    }
}
