/*
Theme Name:  Thalassa
Description: Seaside seafood restaurant — coastal Aegean design
Version:     2.6.0
Author:      Fixit E.E.
Author URI:  https://www.fixit.gr
Text Domain: thalassa
*/

:root {
    --sea-deep:      #0B3D52;
    --sea:           #0E5C7A;
    --sea-soft:      #2E7C97;
    --sand:          #E8DFC8;
    --sand-light:    #F4EEDF;
    --terracotta:    #D9886B;
    --terracotta-dk: #C4694A;
    --cream:         #FBF7EE;
    --ink:           #1B2A33;
    --muted:         #5C7580;

    --color-content-bg:        #FDFBF5;
    --color-content-bg-alt:     var(--sand-light);
    --color-content-primary:    var(--sea);
    --color-content-heading:    var(--sea-deep);
    --color-content-accent:     var(--terracotta);
    --color-content-text:       var(--ink);
    --color-content-faded:      var(--muted);

    --color-primary:  var(--sea);
    --color-accent:   var(--terracotta);
    --color-bg:       #FDFBF5;
    --color-bg-soft:  rgba(14, 92, 122, .05);
    --color-soft:     var(--sand-light);
    --color-text:     var(--ink);

    --t-navy:   var(--sea-deep);
    --t-primary: var(--ink);
    --t-accent: var(--terracotta);
    --t-gray:   var(--muted);
    --t-font:         "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --t-font-heading: "Fraunces", Georgia, "Times New Roman", serif;
    --t-gutter: clamp(18px, 5vw, 72px);

    --font-heading: "Fraunces", Georgia, serif;
    --fx-font-heading-override: "Fraunces", Georgia, serif;
    --fx-font-body-override: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --fx-font-logo-override: "Fraunces", Georgia, serif;

    --fx-fs-h1: clamp(2.6rem, 5.5vw, 4.4rem);
    --fx-fs-h2: clamp(2rem, 3.6vw, 3rem);
    --fx-fs-h3: 1.5rem;
    --fx-fs-h4: 1.2rem;
    --fx-fs-body: 17px;
    --fx-fs-logo: 30px;
    --fx-fs-nav: 15px;
    --fx-fs-nav-btn: 14px;

    --fx-header-bg: rgba(253, 251, 245, .92);
    --fx-header-height: 76px;
    --fx-nav-color: var(--sea-deep);
    --fx-nav-hover: var(--terracotta);

    --fx-radius:    12px;
    --fx-radius-sm: 6px;
    --fx-radius-lg: 22px;
    --fx-gap-sm: 14px;
    --fx-gap-md: 26px;
    --fx-gap-lg: 44px;
    --fx-section-px: clamp(20px, 5vw, 72px);
    --fx-section-py: clamp(64px, 8vw, 118px);
    --fx-shadow: 0 18px 44px -22px rgba(11, 61, 82, .38);
    --fx-transition: .32s cubic-bezier(.2, .7, .3, 1);

    --fx-hero-gradient: linear-gradient(180deg, rgba(11, 61, 82, .18) 0%, rgba(11, 61, 82, .62) 62%, rgba(11, 61, 82, .82) 100%);

    --fx-footer-bg: var(--sea-deep);
    --fx-footer-text: rgba(240, 246, 248, .72);
    --fx-footer-link: rgba(240, 246, 248, .68);
    --fx-footer-cols: 4;
    --fx-footer-top-border: 1px solid rgba(232, 223, 200, .16);

    --fx-input-bg: #fff;
    --fx-input-border: #d9d2c0;
    --fx-input-focus: var(--sea);
}

html body {
    background: var(--color-content-bg);
    color: var(--color-content-text);
    font-family: var(--t-font);
}

body h1, body h2, body h3, body h4, body h5, body h6,
body .t-section-title, body .t-hero-full h1, body .t-testimonial-text {
    font-family: var(--t-font-heading);
}

body h1, body h2, body h3, body h4, body .t-section-title {
    color: var(--color-content-heading);
    letter-spacing: .002em;
}

body .t-section-title {
    font-weight: 600;
}

body .tha-wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding-left: var(--t-gutter);
    padding-right: var(--t-gutter);
}

body .tha-header {
    position: relative;
    z-index: 30;
}

body .tha-strip {
    background: var(--terracotta);
    color: #fff;
    font-family: var(--t-font);
    font-size: 12.5px;
    letter-spacing: .04em;
}

body .tha-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    gap: 20px;
}

body .tha-strip-meta {
    display: flex;
    gap: 22px;
    align-items: center;
}

body .tha-strip-meta em { font-style: normal; opacity: .88; }
body .tha-strip-meta a { color: #fff; font-weight: 600; }

body .tha-bar {
    background: rgba(253, 251, 245, .97);
    border-bottom: 1px solid rgba(11, 61, 82, .1);
    backdrop-filter: blur(6px);
}

body .tha-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "toggle logo reserve" "nav nav nav";
    align-items: center;
    row-gap: 8px;
    padding-top: 15px;
    padding-bottom: 11px;
}

body .tha-logo {
    grid-area: logo;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

body .tha-logo-mark {
    font-family: var(--t-font-heading);
    font-size: clamp(27px, 3vw, 37px);
    font-weight: 600;
    color: var(--sea-deep);
    letter-spacing: .015em;
}

body .tha-logo-sub {
    font-family: var(--t-font);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

body .tha-reserve {
    grid-area: reserve;
    justify-self: end;
    background: var(--sea);
    color: #fff;
    font-family: var(--t-font);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color var(--fx-transition), border-color var(--fx-transition), transform var(--fx-transition);
}

body .tha-reserve:hover {
    background: var(--terracotta);
    color: #fff;
    transform: translateY(-1px);
}

body .tha-nav { grid-area: nav; }

body .tha-menu {
    list-style: none;
    margin: 0;
    padding: 6px 0 0;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 44px);
}

body .tha-menu li { margin: 0; }

body .tha-menu a {
    font-family: var(--t-font);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--sea-deep);
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color var(--fx-transition);
}

body .tha-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--fx-transition);
}

body .tha-menu a:hover { color: var(--terracotta); }
body .tha-menu a:hover::after { transform: scaleX(1); }

body .t-nav-toggle {
    grid-area: toggle;
    justify-self: start;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

body .t-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sea-deep);
    transition: transform var(--fx-transition), opacity var(--fx-transition);
}

body .t-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body .t-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
body .t-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body .tha-hero {
    background:
        radial-gradient(120% 80% at 85% 0%, rgba(46, 124, 151, .1) 0%, rgba(46, 124, 151, 0) 55%),
        var(--cream);
    overflow: hidden;
}

body .tha-hero-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(44px, 6vw, 92px) var(--t-gutter);
}

body .tha-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--t-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}

body .tha-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--terracotta);
}

body .tha-hero-text h1 {
    font-family: var(--t-font-heading);
    font-size: clamp(2.9rem, 5.2vw, 4.7rem);
    font-weight: 600;
    line-height: 1.02;
    color: var(--sea-deep);
    margin: 0 0 18px;
    letter-spacing: -.01em;
}

body .tha-hero-text p {
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--ink);
    max-width: 46ch;
    margin: 0 0 32px;
}

body .tha-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

body .tha-btn {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    font-family: var(--t-font);
    font-weight: 600;
    letter-spacing: .03em;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--terracotta);
    transition: background-color var(--fx-transition), transform var(--fx-transition), color var(--fx-transition);
}

body .tha-btn:hover {
    background: var(--terracotta-dk);
    border-color: var(--terracotta-dk);
    color: #fff;
    transform: translateY(-2px);
}

body .tha-btn--line {
    background: transparent;
    color: var(--sea-deep);
    border-color: rgba(11, 61, 82, .28);
}

body .tha-btn--line:hover {
    background: var(--sea-deep);
    border-color: var(--sea-deep);
    color: #fff;
}

body .tha-hero-media {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 460px;
}

body .tha-hero-arch {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 230px 230px 20px 20px;
    overflow: hidden;
    box-shadow: 0 40px 70px -32px rgba(11, 61, 82, .55);
}

body .tha-hero-arch::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
    pointer-events: none;
}

body .tha-hero-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .tha-hero-seal {
    position: absolute;
    left: -26px;
    bottom: 40px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--sea-deep);
    color: var(--sand);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--t-font-heading);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 16px 30px -12px rgba(11, 61, 82, .6);
}

body .tha-hero-seal em {
    font-family: var(--t-font);
    font-style: normal;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 4px;
}

@media (max-width: 860px) {
    body .tha-strip-inner { justify-content: center; }
    body .tha-strip-tag { display: none; }
    body .tha-strip-meta { gap: 16px; font-size: 11.5px; }

    body .tha-bar-inner {
        grid-template-columns: 44px 1fr 44px;
        grid-template-areas: "toggle logo spacer";
        row-gap: 0;
    }
    body .t-nav-toggle { display: flex; }
    body .tha-reserve { display: none; }
    body .tha-logo-mark { font-size: 25px; }
    body .tha-logo-sub { display: none; }

    body .tha-nav {
        position: fixed;
        inset: 0 0 0 auto;
        height: 100vh;
        width: min(320px, 82vw);
        background: var(--sea-deep);
        transform: translateX(100%);
        transition: transform .32s cubic-bezier(.2, .7, .3, 1);
        padding: 104px 34px 40px;
        z-index: 80;
        overflow-y: auto;
        box-shadow: -20px 0 50px -20px rgba(0, 0, 0, .5);
    }
    body .tha-nav.is-open { transform: translateX(0); }
    body .tha-menu { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0; }
    body .tha-menu li { width: 100%; }
    body .tha-menu a {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 17px;
        letter-spacing: .08em;
        padding: 14px 0;
        border-bottom: 1px solid rgba(232, 223, 200, .14);
    }
    body .tha-menu a::after { display: none; }
    body .tha-menu a:hover { color: var(--sand); }

    body.t-nav-lock { overflow: hidden; }
    body.t-nav-lock .t-nav-toggle {
        position: fixed;
        top: 20px;
        right: 22px;
        left: auto;
        z-index: 95;
    }
    body.t-nav-lock .t-nav-toggle span { background: #fff; }

    body .tha-hero-grid { grid-template-columns: 1fr; gap: 8px; }
    body .tha-hero-media { order: -1; max-width: 300px; }
    body .tha-hero-seal { left: -14px; width: 82px; height: 82px; font-size: 22px; }
}

body .t-btn-primary {
    background: var(--terracotta);
    border: 1px solid var(--terracotta);
    color: #fff;
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background-color var(--fx-transition), transform var(--fx-transition);
}

body .t-btn-primary:hover {
    background: var(--terracotta-dk);
    border-color: var(--terracotta-dk);
    transform: translateY(-2px);
}

body .t-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .7);
    color: #fff;
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 600;
    transition: background-color var(--fx-transition), border-color var(--fx-transition);
}

body .t-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
}

body .t-section-soft,
body .t-section--soft {
    background: var(--color-content-bg-alt);
}

body .t-testimonials-grid .t-testimonial {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius);
    padding: 30px 28px;
    box-shadow: var(--fx-shadow);
}

body .t-testimonial-text {
    font-family: var(--t-font-heading);
    font-size: 1.32rem;
    line-height: 1.5;
    color: var(--sea-deep);
    font-style: italic;
}

body .t-testimonial-text::before {
    content: "\201C";
    color: var(--terracotta);
    font-family: var(--t-font-heading);
    font-size: 2.4rem;
    line-height: 0;
    vertical-align: -.35em;
    margin-right: .12em;
}

body .t-testimonial-author strong {
    color: var(--sea-deep);
}

body .t-testimonial-author span {
    color: var(--muted);
    font-size: .88rem;
}

body .t-gallery-grid a {
    box-shadow: var(--fx-shadow);
}

body .t-gallery-grid a:hover img {
    transform: scale(1.06);
}

body .t-menu-section .t-menu-col,
body .t-menu-list {
    border-top-color: var(--terracotta);
}

body a {
    color: var(--sea);
}

body a:hover {
    color: var(--terracotta);
}

body .t-rich-footer h3,
body .t-rich-footer h4 {
    color: #fff;
}

body .t-rich-footer-social a {
    color: var(--sand);
    transition: color var(--fx-transition), transform var(--fx-transition);
}

body .t-rich-footer-social a:hover {
    color: var(--terracotta);
    transform: translateY(-2px);
}

body .t-section-title {
    text-align: center;
    position: relative;
}

body .t-section-title::before {
    content: "\2248";
    display: block;
    font-family: var(--t-font-heading);
    color: var(--terracotta);
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 600;
}

body .t-section:has(.t-menu-grid),
body .t-section:has(.t-testimonials-grid) {
    background: var(--sand-light);
}

body .t-section:has(.t-menu-grid) > .t-container,
body .t-section:has(.t-gallery-grid) > .t-container {
    text-align: center;
}

body .t-section:has(.t-menu-grid) .t-menu-grid,
body .t-section:has(.t-gallery-grid) .t-gallery-grid {
    text-align: left;
}

body .t-section:has(.t-menu-grid) > .t-container > p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

body .t-menu-group h3 {
    font-family: var(--t-font-heading);
    font-weight: 600;
    color: var(--sea-deep);
    letter-spacing: .01em;
}

body .t-gallery-grid a {
    border-radius: var(--fx-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

body .t-gallery-grid {
    gap: 14px !important;
}

body .t-section-navy,
body .t-section:has(.t-cta-inner),
body .t-cta {
    background: var(--sea-deep);
}

body .t-testimonial {
    border-radius: var(--fx-radius) !important;
}

body .t-label {
    display: inline-block;
    font-family: var(--t-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 6px;
}

body .t-value-card {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
    transition: transform var(--fx-transition);
}

body .t-value-card:hover { transform: translateY(-4px); }

body .tha-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(14, 92, 122, .09);
    color: var(--sea);
}

body .tha-value-icon svg { width: 30px; height: 30px; }

body .t-value-card h3 {
    font-family: var(--t-font-heading);
    color: var(--sea-deep);
    font-weight: 600;
}

body .wpcf7-form,
body .t-section form {
    display: grid;
    gap: 18px;
    text-align: left;
}

body .wpcf7-form label {
    display: block;
    font-family: var(--t-font);
    font-weight: 500;
    font-size: 14px;
    color: var(--sea-deep);
}

body .wpcf7-form input:not([type="submit"]),
body .wpcf7-form textarea,
body .t-section form input[type="text"],
body .t-section form input[type="email"],
body .t-section form input[type="tel"],
body .t-section form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 13px 16px;
    border: 1px solid var(--fx-input-border);
    border-radius: 10px;
    background: #fff;
    font-family: var(--t-font);
    font-size: 15px;
    color: var(--ink);
    transition: border-color var(--fx-transition), box-shadow var(--fx-transition);
}

body .wpcf7-form input:not([type="submit"]):focus,
body .wpcf7-form textarea:focus,
body .t-section form input:focus,
body .t-section form textarea:focus {
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(14, 92, 122, .13);
    outline: none;
}

body .wpcf7-form input[type="submit"],
body .t-section form button[type="submit"] {
    justify-self: start;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 34px;
    font-family: var(--t-font);
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background-color var(--fx-transition), transform var(--fx-transition);
}

body .wpcf7-form input[type="submit"]:hover,
body .t-section form button[type="submit"]:hover {
    background: var(--terracotta-dk);
    transform: translateY(-2px);
}

body .t-section .fx-hours {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    max-width: 360px;
}

body .t-section .fx-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(11, 61, 82, .16);
}

body .t-section .fx-hours-day {
    color: var(--sea-deep);
    font-weight: 500;
}

body .t-section .fx-hours-time { color: var(--muted); }

body .t-footer,
body .t-rich-footer {
    margin-top: 0;
}

body .tha-reserve-widget {
    padding: clamp(48px, 6vw, 88px) 0 clamp(24px, 3vw, 40px);
    background: var(--cream);
    text-align: center;
}

body .tha-reserve-widget .t-section-title { margin-top: 4px; }

body .tha-reserve-lead {
    max-width: 54ch;
    margin: 14px auto 40px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

body .bookme-booking-form {
    text-align: left;
    max-width: 1120px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .1);
    border-radius: var(--fx-radius-lg);
    box-shadow: var(--fx-shadow);
    padding: clamp(20px, 3vw, 40px);
}

body .bookme-booking-form .bookme-button,
body .bookme-booking-form .bookme-next,
body .bookme-booking-form button[class*="bookme"] {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #fff;
    border-radius: 999px;
    font-family: var(--t-font);
    font-weight: 600;
    letter-spacing: .03em;
    transition: background-color var(--fx-transition), transform var(--fx-transition);
}

body .bookme-booking-form .bookme-button:hover,
body .bookme-booking-form .bookme-next:hover {
    background: var(--terracotta-dk);
    border-color: var(--terracotta-dk);
    transform: translateY(-2px);
}

body .bookme-booking-form .clndr-controls {
    background: var(--sea);
    color: #fff;
    border-radius: var(--fx-radius) var(--fx-radius) 0 0;
}

body .bookme-booking-form .day.selected,
body .bookme-booking-form .day.today.selected {
    background: var(--sea);
    color: #fff;
}

body .bookme-booking-form .day:not(.empty):not(.disabled):hover {
    background: rgba(14, 92, 122, .12);
    color: var(--sea-deep);
    cursor: pointer;
}

body .bookme-booking-form .bookme-progress-step.active .bookme-progress-circle,
body .bookme-booking-form [class*="step"].active,
body .bookme-booking-form .active > .bookme-progress-circle {
    background: var(--sea);
    border-color: var(--sea);
    color: #fff;
}

body .bookme-booking-form [class*="active"] {
    color: var(--sea);
}

body .bookme-booking-form select,
body .bookme-booking-form input:not([type="submit"]):not([type="button"]) {
    border: 1px solid var(--fx-input-border);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--t-font);
}

body .tha-footer { margin-top: 0; color: var(--sand); }

body .tha-footer-wave { line-height: 0; }
body .tha-footer-wave svg { display: block; width: 100%; height: clamp(32px, 4vw, 52px); fill: var(--sea-deep); }

body .tha-footer-main { background: var(--sea-deep); }

body .tha-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.15fr 0.95fr;
    column-gap: clamp(28px, 3.5vw, 60px);
    row-gap: 40px;
    padding-top: clamp(28px, 3vw, 44px);
    padding-bottom: clamp(40px, 5vw, 64px);
    align-items: start;
}

body .tha-footer-grid { display: contents; }

body .tha-footer-eyebrow {
    display: inline-block;
    font-family: var(--t-font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 14px;
}

body .tha-footer-mark {
    font-family: var(--t-font-heading);
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: .95;
    color: #fff;
    margin: 0;
}

body .tha-footer-slogan {
    font-family: var(--t-font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--sand);
    margin: 10px 0 26px;
}

body .tha-footer-reserve {
    display: inline-block;
    background: var(--terracotta);
    color: #fff;
    font-family: var(--t-font);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13px;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color var(--fx-transition), transform var(--fx-transition);
}

body .tha-footer-reserve:hover { background: var(--terracotta-dk); color: #fff; transform: translateY(-2px); }

body .tha-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

body .tha-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(232, 223, 200, .28);
    color: var(--sand);
    transition: background-color var(--fx-transition), color var(--fx-transition), border-color var(--fx-transition), transform var(--fx-transition);
}

body .tha-footer-social a svg { width: 18px; height: 18px; }
body .tha-footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; transform: translateY(-2px); }

body .tha-footer-grid { display: contents; }

body .tha-footer-col h4 {
    font-family: var(--t-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 16px;
}

body .tha-footer-col p,
body .tha-footer-col li,
body .tha-footer-col a {
    color: rgba(240, 246, 248, .74);
    font-size: 14px;
    line-height: 1.7;
}

body .tha-footer-col a { text-decoration: none; transition: color var(--fx-transition); }
body .tha-footer-col a:hover { color: var(--terracotta); }

body .tha-footer-contact,
body .tha-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

body .tha-footer-menu { margin-top: 16px; }
body .tha-footer-menu li { padding: 4px 0; }

body .tha-footer-link-arrow {
    display: inline-block;
    margin-top: 10px;
    color: var(--sand) !important;
    font-weight: 600;
}

body .tha-footer-link-arrow::after { content: " \2192"; color: var(--terracotta); }

body .tha-footer .fx-hours { list-style: none; margin: 0; padding: 0; }
body .tha-footer .fx-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 5px 0;
    font-size: 13.5px;
}
body .tha-footer .fx-hours-day { color: rgba(240, 246, 248, .9); }
body .tha-footer .fx-hours-time { color: rgba(240, 246, 248, .58); }

body .tha-footer-bottom {
    background: #072B3B;
    border-top: 1px solid rgba(232, 223, 200, .12);
}

body .tha-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 13px;
    color: rgba(240, 246, 248, .55);
    flex-wrap: wrap;
}

body .tha-footer-craft a { color: var(--sand); text-decoration: none; }
body .tha-footer-craft a:hover { color: var(--terracotta); }

@media (max-width: 860px) {
    body .tha-footer-inner { grid-template-columns: 1fr; gap: 40px; }
    body .tha-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    body .tha-footer-col { padding-bottom: 4px; border-bottom: 1px solid rgba(232, 223, 200, .1); }
    body .tha-footer-col:last-child { border-bottom: none; }
    body .tha-footer-bottom-inner { justify-content: center; text-align: center; }
}

body .tha-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 14px;
    margin-top: 44px;
}

body .tha-gal-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
    background: var(--sand);
}

body .tha-gal-item--feature { grid-column: span 2; grid-row: span 2; }
body .tha-gal-item--tall    { grid-row: span 2; }
body .tha-gal-item--wide    { grid-column: span 2; }

body .tha-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}

body .tha-gal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 82, .72) 0%, rgba(11, 61, 82, .1) 45%, transparent 70%);
    opacity: 0;
    transition: opacity var(--fx-transition);
}

body .tha-gal-item:hover img { transform: scale(1.07); }
body .tha-gal-item:hover::after { opacity: 1; }

body .tha-gal-cap {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    z-index: 2;
    color: #fff;
    font-family: var(--t-font-heading);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.2;
    transform: translateY(10px);
    opacity: 0;
    transition: transform var(--fx-transition), opacity var(--fx-transition);
    text-shadow: 0 2px 12px rgba(11, 61, 82, .5);
}

body .tha-gal-cap::before {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: var(--terracotta);
    margin-bottom: 9px;
}

body .tha-gal-item:hover .tha-gal-cap { transform: translateY(0); opacity: 1; }

@media (max-width: 860px) {
    body .tha-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
    body .tha-gal-item--feature { grid-column: span 2; grid-row: span 2; }
    body .tha-gal-item--wide { grid-column: span 2; }
    body .tha-gal-item--tall { grid-row: span 1; }
    body .tha-gal-cap { opacity: 1; transform: none; font-size: .98rem; }
    body .tha-gal-item::after { opacity: 1; }
}

.tha-menu > li {
    position: relative;
}
.tha-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #FDFBF5;
    border: 1px solid rgba(14, 92, 122, 0.12);
    box-shadow: 0 16px 34px rgba(11, 61, 82, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 200;
}
.tha-menu > li:hover > .sub-menu,
.tha-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.tha-menu .sub-menu li {
    display: block;
    margin: 0;
}
.tha-menu .sub-menu a {
    display: block;
    padding: 9px 22px;
    white-space: nowrap;
    font-family: "Work Sans", -apple-system, sans-serif;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #0B3D52;
}
.tha-menu .sub-menu a:hover {
    color: #C4694A;
}

/* The chevron only exists on mobile; on desktop the sub-menus open on hover. */
.tha-sub-toggle {
    display: none;
}

@media (max-width: 860px) {
    .tha-menu > li {
        position: static;
    }
    .tha-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease, padding 0.28s ease;
    }
    .tha-menu > li.is-open > .sub-menu {
        padding: 4px 0 10px 16px;
    }
    .tha-menu .sub-menu a {
        white-space: normal;
        padding: 7px 0;
        font-size: 15px;
        color: rgba(253, 251, 245, 0.78);
        border-bottom: 1px solid rgba(232, 223, 200, 0.08);
    }
    .tha-menu .sub-menu li:last-child a {
        border-bottom: none;
    }
    .tha-menu .sub-menu a:hover {
        color: #E8DFC8;
    }

    /* The parent row becomes link + chevron; the link keeps its own tap target
       so the hub pages stay reachable. */
    .tha-menu > li.menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .tha-menu > li.menu-item-has-children > a {
        flex: 1 1 auto;
        width: auto;
        border-bottom: none;
    }
    .tha-menu > li.menu-item-has-children > .sub-menu {
        flex: 1 0 100%;
    }
    .tha-menu > li.menu-item-has-children::after {
        content: "";
        order: 3;
        flex: 1 0 100%;
        height: 1px;
        background: rgba(232, 223, 200, 0.14);
    }

    .tha-sub-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }
    .tha-sub-chevron {
        display: block;
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(253, 251, 245, 0.72);
        border-bottom: 2px solid rgba(253, 251, 245, 0.72);
        transform: translateY(-2px) rotate(45deg);
        transition: transform 0.28s ease, border-color 0.2s ease;
    }
    .tha-menu > li.is-open > .tha-sub-toggle .tha-sub-chevron {
        transform: translateY(2px) rotate(-135deg);
        border-color: #E8DFC8;
    }
    .tha-sub-toggle:focus-visible {
        outline: 2px solid #E8DFC8;
        outline-offset: -4px;
    }
}

body .t-hero-btns .t-btn-primary {
    background: #C4694A;
    background-image: none;
    border: 1px solid #C4694A;
    color: #fff;
}
body .t-hero-btns .t-btn-primary:hover {
    background: #B3573A;
    border-color: #B3573A;
}
body .t-hero-btns .t-btn-ghost {
    background: rgba(11, 61, 82, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    backdrop-filter: blur(6px);
}
body .t-hero-btns .t-btn-ghost:hover {
    background: rgba(11, 61, 82, 0.72);
}

@media (max-width: 860px) {
    body .tha-bar {
        backdrop-filter: none;
    }
}

body .t-section .t-grid {
    gap: 30px;
}

body .t-section .t-card {
    background: var(--cream);
    border: 1px solid rgba(14, 92, 122, .14);
    border-radius: 4px;
    box-shadow: 0 12px 30px -22px rgba(11, 61, 82, .55);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body .t-section .t-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 136, 107, .5);
    box-shadow: 0 20px 40px -22px rgba(11, 61, 82, .5);
}

body .t-section .t-card .t-card-img {
    margin: 0;
    overflow: hidden;
    background: var(--sand);
}

body .t-section .t-card .t-card-img img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    transition: transform 1.1s cubic-bezier(.2, .7, .3, 1);
}

body .t-section .t-card:hover .t-card-img img {
    transform: scale(1.05);
}

body .t-section .t-card .t-card-title {
    font-family: var(--t-font-heading);
    font-weight: 500;
    font-size: 1.32rem;
    line-height: 1.24;
    color: var(--sea-deep);
    margin: 0;
    padding: 26px 28px 0;
    transition: color .22s ease;
}

body .t-section .t-card:hover .t-card-title {
    color: #C4694A;
}

body .t-section .t-card .t-card-body {
    font-family: var(--t-font);
    font-size: .96rem;
    line-height: 1.62;
    color: rgba(27, 42, 51, .78);
    padding: 12px 28px 28px;
}

body .t-section--navy .t-card {
    background: rgba(253, 251, 245, .07);
    border-color: rgba(232, 223, 200, .22);
    box-shadow: none;
    padding: 4px 0;
}

body .t-section--navy .t-card .t-card-title {
    color: var(--cream);
}

body .t-section--navy .t-card:hover .t-card-title {
    color: var(--sand);
}

body .t-section--navy .t-card .t-card-body {
    color: rgba(232, 223, 200, .8);
}

body .t-section--navy .t-grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(234px, 1fr));
}

body .t-section .t-grid--3:has(> .t-card:only-child) {
    grid-template-columns: 1fr;
}

body .t-section .t-grid > .t-card:only-child {
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-items: stretch;
}

body .t-section .t-grid > .t-card:only-child .t-card-img {
    grid-column: 1;
    grid-row: 1 / -1;
}

body .t-section .t-grid > .t-card:only-child .t-card-img img {
    height: 100%;
    min-height: 330px;
    aspect-ratio: auto;
}

body .t-section .t-grid > .t-card:only-child .t-card-title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 1.72rem;
    padding: 44px 48px 0;
}

body .t-section .t-grid > .t-card:only-child .t-card-body {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.02rem;
    padding: 14px 48px 44px;
}

@media (max-width: 780px) {
    body .t-section .t-grid > .t-card:only-child {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    body .t-section .t-grid > .t-card:only-child .t-card-img,
    body .t-section .t-grid > .t-card:only-child .t-card-title,
    body .t-section .t-grid > .t-card:only-child .t-card-body {
        grid-column: 1;
        grid-row: auto;
    }

    body .t-section .t-grid > .t-card:only-child .t-card-img img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    body .t-section .t-grid > .t-card:only-child .t-card-title {
        font-size: 1.4rem;
        padding: 26px 28px 0;
    }

    body .t-section .t-grid > .t-card:only-child .t-card-body {
        padding: 12px 28px 28px;
    }
}

body .fx-newsletter > div {
    flex-wrap: wrap;
}

body .fx-newsletter input[type="email"] {
    min-width: 220px;
}

body .t-section .t-card > .t-card-title:only-child {
    padding: 26px 28px;
}

body .t-section .t-card--link {
    text-decoration: none;
}

body .t-section--navy .t-card .t-card-body {
    flex: 1 1 auto;
    padding: 28px 28px 0;
}

body .t-section--navy .t-card > div:last-child:not(.t-card-body) {
    padding: 0 28px 28px;
}

body .t-section--navy .t-card > div > .t-card-title {
    padding: 0;
    font-size: 1.06rem;
    line-height: 1.3;
}

body .t-section--navy .t-card > div > .t-card-title + div {
    font-family: var(--t-font);
    font-size: .74rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(232, 223, 200, .58);
    margin-top: 4px;
}

body .t-section:has(> .t-container[style*="padding:72px 24px"]) {
    padding-top: 0;
    padding-bottom: 0;
}

body .t-section .t-card--link {
    position: relative;
}

body .t-section .t-card--link > .t-card-title:only-child {
    padding-right: 56px;
}

body .t-section .t-card--link > .t-card-title:only-child::after {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terracotta);
    font-family: var(--t-font);
    font-size: 1.1rem;
    transition: transform .24s ease;
}

body .t-section .t-card--link:hover > .t-card-title::after {
    transform: translateY(-50%) translateX(5px);
}

body .t-section:has(> .t-container[style*="padding:72px 24px"]) + .t-section {
    padding-top: 16px;
}

body .t-section[style*="text-align:center"] .fx-newsletter {
    margin-left: auto;
    margin-right: auto;
}

body .fx-newsletter > div {
    align-items: center;
}
body .t-hero-full {
    position: relative;
    min-height: 86vh;
}

body .t-hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(102deg, rgba(11, 61, 82, .78) 0%, rgba(11, 61, 82, .52) 34%, rgba(11, 61, 82, .06) 66%, rgba(11, 61, 82, 0) 100%),
        linear-gradient(to top, rgba(11, 61, 82, .42) 0%, rgba(11, 61, 82, 0) 34%);
    pointer-events: none;
    z-index: 1;
}

body .t-hero-full > .t-container {
    position: relative;
    z-index: 2;
}

body .t-hero-full h1 {
    font-size: clamp(2.9rem, 5.6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.018em;
    max-width: 14ch;
    margin-bottom: 22px;
}

body .t-hero-full h1::before {
    content: "Houlakia Bay · Mykonos · Since 2009";
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--t-font);
    font-size: .715rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--terracotta);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    margin-bottom: 26px;
}

body .t-hero-full h1::after {
    content: "";
    display: block;
    width: 68px;
    height: 2px;
    background: var(--terracotta);
    margin-top: 26px;
}

body .t-hero-full p {
    color: rgba(253, 251, 245, .95);
    font-size: 1.1rem;
    line-height: 1.62;
    max-width: 46ch;
    margin-bottom: 34px;
}

body .t-hero-full .t-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

body .t-section .t-container[style*="flex-direction:row"] > div:has(> img) {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: 260px 260px 14px 14px;
    overflow: hidden;
    box-shadow: 0 30px 70px -34px rgba(11, 61, 82, .62);
}

body .t-section .t-container[style*="flex-direction:row"] > div:has(> img) > img {
    position: absolute;
    inset: 0;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

body .t-section .t-container[style*="flex-direction:row"] .t-section-title {
    font-size: clamp(1.9rem, 3.3vw, 2.75rem);
    line-height: 1.12;
    text-align: left;
    max-width: 18ch;
}

body .t-section .t-container[style*="flex-direction:row"] .t-section-title::before {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 860px) {
    body .t-hero-full {
        min-height: 78vh;
    }

    body .t-hero-full h1 {
        max-width: none;
    }

    body .t-hero-full::after {
        background: linear-gradient(to top, rgba(11, 61, 82, .82) 0%, rgba(11, 61, 82, .5) 46%, rgba(11, 61, 82, .28) 100%);
    }
}
/* thalassa-r6-hero-arch */
body.fx-skin-glass {
    background-color: var(--color-content-bg);
    background-image: none;
}

body.fx-skin-glass .t-section--white {
    background: #FFFFFF;
}

body.fx-skin-glass .t-section-soft,
body.fx-skin-glass .t-section--soft {
    background: var(--sand-light);
}

body.fx-skin-glass .t-section--soft + .t-section--soft {
    background: #FFFFFF;
}

body.fx-skin-glass .t-section--soft + .t-section--soft + .t-section--soft {
    background: var(--sand-light);
}

body.fx-skin-glass .t-section--navy {
    background: var(--sea-deep);
}

body.fx-skin-glass .t-section--cream {
    background: var(--cream);
}

body.fx-skin-glass .t-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .7);
}

body.fx-skin-glass .t-btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
}
/* thalassa-r7-glass-sections */
body.fx-skin-glass .t-section--navy {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}
/* thalassa-r7b-navy-fullbleed */
body.fx-skin-glass .t-btn-primary,
body.fx-skin-glass .t-btn-primary:link,
body.fx-skin-glass .t-btn-primary:visited {
    background-image: none;
    background-color: var(--terracotta);
}

body.fx-skin-glass .t-btn-primary:hover {
    background-image: none;
    background-color: var(--terracotta-dk);
    border-color: var(--terracotta-dk);
}

body.fx-skin-glass .t-hero-btns .t-btn-primary,
body.fx-skin-glass .t-hero-btns .t-btn-primary:link,
body.fx-skin-glass .t-hero-btns .t-btn-primary:visited {
    background-color: var(--terracotta-dk);
}

body.fx-skin-glass .t-hero-btns .t-btn-primary:hover {
    background-color: #B3573A;
    border-color: #B3573A;
}

body.fx-skin-glass .t-btn-ghost {
    background-image: none;
    background-color: transparent;
}

body.fx-skin-glass .t-btn-ghost:hover {
    background-image: none;
    background-color: rgba(255, 255, 255, .14);
}

body.fx-skin-glass .t-hero-btns .t-btn-ghost {
    background-color: rgba(11, 61, 82, .5);
}

body.fx-skin-glass .t-hero-btns .t-btn-ghost:hover {
    background-color: rgba(11, 61, 82, .72);
}
/* thalassa-r8-button-hover */
body .t-section .t-card:not(:has(> .t-card-title)):not(:has(> .t-card-body)) {
    padding: 34px 36px;
}

body .t-section .t-grid--2:has(.wpcf7) {
    align-items: start;
}

body .t-section .t-card > p:first-of-type {
    margin-top: 0;
}

body .t-section .t-card > p:last-of-type {
    margin-bottom: 0;
}

body .t-section .wpcf7-form > p {
    margin: 0;
}

body .t-section[style*="padding-bottom:0"] {
    padding-top: 76px;
}

body .t-section[style*="padding-bottom:0"] > .t-container {
    padding-bottom: 40px;
}
/* thalassa-r9-contact-spacing */
@media (max-width: 600px) {
    body .t-section .t-card:not(:has(> .t-card-title)):not(:has(> .t-card-body)) {
        padding: 26px 22px;
    }
}
/* thalassa-r9b-contact-mobile */

@media (max-width: 600px) {
    body .tha-strip-meta em {
        display: none;
    }

    body .tha-strip-meta {
        gap: 0;
        font-size: 12px;
        letter-spacing: .06em;
    }

    body .tha-strip-inner {
        min-height: 34px;
    }
}
/* thalassa-r10-mobile-topbar */
body .t-btn-primary:hover,
body .t-btn-ghost:hover,
body .tha-reserve:hover,
body .tha-footer-reserve:hover,
body .tha-strip-meta a:hover,
body .tha-strip-meta a:focus-visible {
    color: #fff;
}

body .tha-strip-meta a:hover,
body .tha-strip-meta a:focus-visible {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
/* thalassa-r11-link-hover-contrast */

/* ── r12: section shapes used by the inner pages ─────────────────────────────
   The inner pages no longer all use one card grid. These are the other shapes:
   a dish list, a numbers band, a Q/A list, a label/value list, prose columns
   and compact tiles. nimbus-base gives them generic Nimbus styling; this puts
   them back in the Thalassa language (Fraunces headings, cream, terracotta). */

/* dish list ─ .t-menu-grid groups, one row per dish */
body .tha-dish {
    padding: 13px 0;
    border-bottom: 1px solid rgba(11, 61, 82, .09);
}

body .tha-dish:last-child {
    border-bottom: none;
}

body .tha-dish-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

body .tha-dish-name {
    font-family: var(--t-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--sea-deep);
    line-height: 1.35;
}

body .tha-dish-row::before {
    content: "";
    order: 2;
    flex: 1 1 auto;
    height: 1px;
    align-self: center;
    background-image: radial-gradient(circle, rgba(11, 61, 82, .3) 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    min-width: 18px;
}

body .tha-dish-price {
    order: 3;
    flex: 0 0 auto;
    font-family: var(--t-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--terracotta-dk);
    white-space: nowrap;
}

body .tha-dish-note {
    margin: 5px 0 0;
    font-size: 14.5px;
    line-height: 1.62;
    color: var(--muted);
    max-width: 46ch;
}

body .t-menu-group {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
    padding: 26px 28px 20px;
}

body .t-menu-group h3 {
    border-bottom: 2px solid var(--terracotta);
    font-size: 15px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* numbers band ─ .t-stats-row */
body .t-stats-row {
    border-top: 1px solid rgba(11, 61, 82, .1);
    border-bottom: 1px solid rgba(11, 61, 82, .1);
    padding: 34px 0;
}

body .t-stat-num {
    font-family: var(--t-font-heading);
    font-weight: 600;
    color: var(--terracotta-dk);
    font-size: clamp(30px, 3.6vw, 46px);
}

body .t-stat-label {
    font-family: var(--t-font);
    font-size: 11.5px;
    letter-spacing: .16em;
    color: var(--muted);
}

/* Q/A list ─ .t-faq-list */
body .t-faq-list > div {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
    padding: 22px 26px;
}

body .t-faq-list > div:hover {
    box-shadow: 0 22px 50px -24px rgba(11, 61, 82, .42);
}

body .t-faq-list h3 {
    font-family: var(--t-font-heading);
    font-weight: 600;
    color: var(--sea-deep);
    font-size: 18px;
}

body .t-faq-list p {
    color: var(--muted);
    font-size: 15.5px;
}

/* label/value list ─ .t-schedule-list */
body .t-schedule-list > div {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius-sm);
    padding: 13px 20px;
    gap: 16px;
}

body .tha-sched-label {
    font-family: var(--t-font);
    font-size: 14.5px;
    color: var(--ink);
}

body .tha-sched-value {
    font-family: var(--t-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--terracotta-dk);
    text-align: right;
    white-space: nowrap;
}

/* prose columns ─ .tha-prose inside a t-grid--2 */
body .tha-prose {
    text-align: left;
}

body .tha-prose h3 {
    font-family: var(--t-font-heading);
    font-weight: 600;
    font-size: 21px;
    color: var(--sea-deep);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(217, 136, 107, .45);
}

body .tha-prose p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.72;
    color: var(--ink);
}

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

/* compact tiles ─ .t-amenities-grid */
body .t-amenity {
    background: #fff;
    border: 1px solid rgba(11, 61, 82, .08);
    border-radius: var(--fx-radius);
    box-shadow: var(--fx-shadow);
    padding: 20px 14px;
    gap: 5px;
}

body .t-amenity strong {
    font-family: var(--t-font-heading);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--sea-deep);
}

body .t-amenity span {
    font-family: var(--t-font);
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

/* The base rule centres any section that contains a menu grid; these pages put
   real prose above one, so keep the dish rows themselves left-aligned. */
body .t-section:has(.t-menu-grid) .t-menu-group,
body .t-section:has(.t-menu-grid) .tha-dish {
    text-align: left;
}

@media (max-width: 700px) {
    body .t-menu-group {
        padding: 22px 20px 16px;
    }
    body .tha-dish-note {
        max-width: none;
    }
    body .t-schedule-list > div {
        align-items: flex-start;
        gap: 10px;
    }
}
/* thalassa-r12-inner-page-shapes */
