/*
 Theme Name:   Thai Tae Fusion
 Theme URI:    https://example.com/thai-tae-fusion
 Description:  Thai restaurant WordPress theme with optional Minett'zza pizza toggle. Layout and structure; menu content is plugin-driven.
 Author:       Thai Tae
 Author URI:   https://example.com
 Version:      1.3.9
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  thai-tae
*/

/* ==========================================================================
   Design tokens (plugins can override via :root or body)
   ========================================================================== */

:root {
	--thai-tae-bg:          #0a0a0a;
	--thai-tae-surface:     #111111;
	--thai-tae-elevated:    #191919;
	--thai-tae-body-bg:     var(--thai-tae-bg);
	--thai-tae-hero-bg:     #121212;
	--thai-tae-body-text:   #f2f0ec;
	--thai-tae-muted:       #9c9a96;
	--thai-tae-footer-bg:   #050505;
	--thai-tae-footer-text: #d6d4d0;
	--thai-tae-accent:      #f26522;
	--thai-tae-accent-2:    #34d399;
	--thai-tae-border:      #2a2a2a;

	--thai-tae-font-sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--thai-tae-font-serif: var(--thai-tae-font-sans);

	--thai-tae-text-base:   1rem;
	--thai-tae-line-tight:  1.2;
	--thai-tae-line-normal: 1.6;
	--thai-tae-scale:       1.2;

	--thai-tae-radius-sm: 0.375rem;
	--thai-tae-radius-md: 0.5rem;
	--thai-tae-radius-lg: 0.75rem;

	--thai-tae-space-xs:    0.25rem;
	--thai-tae-space-sm:    0.5rem;
	--thai-tae-space-md:    1rem;
	--thai-tae-space-lg:    1.5rem;
	--thai-tae-space-xl:    2rem;
	--thai-tae-space-2xl:   3rem;
	--thai-tae-space-3xl:   4rem;
	--thai-tae-space-4xl:   6rem;

	--thai-tae-container: 72rem;
	--thai-tae-section:  var(--thai-tae-space-4xl);
	--thai-tae-shadow:   0 12px 40px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   Base & typography
   ========================================================================== */

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

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: var(--thai-tae-font-sans);
	font-size: var(--thai-tae-text-base);
	line-height: var(--thai-tae-line-normal);
	color: var(--thai-tae-body-text);
	background-color: var(--thai-tae-body-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--thai-tae-font-sans);
	font-weight: 800;
	line-height: var(--thai-tae-line-tight);
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: var(--thai-tae-space-md);
}

h1 { font-size: clamp(2.25rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.35rem); }

p {
	margin-top: 0;
	margin-bottom: var(--thai-tae-space-md);
}

a {
	color: var(--thai-tae-accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #ff8a4a;
}

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

/* ==========================================================================
   Layout
   ========================================================================== */

.thai-tae-container,
.container,
.thai-tae-header__inner,
.thai-tae-container-inner,
.thai-tae-hero--fusion .thai-tae-hero__inner,
.thai-tae-concept__inner,
.thai-tae-signature__inner,
.thai-tae-about-preview__inner,
.thai-tae-reviews__inner,
.thai-tae-contact__inner,
.thai-tae-page__inner,
.thai-tae-dish__inner,
.thai-tae-footer__inner {
	max-width: var(--thai-tae-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--thai-tae-space-lg);
	padding-right: var(--thai-tae-space-lg);
}

.thai-tae-main {
	padding-bottom: var(--thai-tae-section);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.thai-tae-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--thai-tae-space-sm);
	padding: 0.75rem 1.5rem;
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.25;
 border-radius: var(--thai-tae-radius-sm);
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.thai-tae-btn--primary {
	background: var(--thai-tae-accent);
	color: #0a0a0a;
	border-color: var(--thai-tae-accent);
	box-shadow: 0 4px 0 rgba(242, 101, 34, 0.2);
}

.thai-tae-btn--primary:hover {
	color: #0a0a0a;
	background: #ff7a3c;
	text-decoration: none;
	transform: translateY(-1px);
}

.thai-tae-btn--primary:focus-visible {
	outline: 2px solid var(--thai-tae-accent-2);
	outline-offset: 2px;
}

.thai-tae-btn--ghost {
	color: var(--thai-tae-body-text);
	border-color: var(--thai-tae-border);
	background: transparent;
}

.thai-tae-btn--ghost:hover {
	border-color: var(--thai-tae-accent);
	color: var(--thai-tae-accent-2);
	text-decoration: none;
}

.btn-primary,
.thai-tae-btn-legacy {
	display: inline-block;
	padding: 0.65rem 1.35rem;
	font-weight: 700;
	font-size: 0.9375rem;
	color: #0a0a0a;
	background: var(--thai-tae-accent);
	border: 0;
	border-radius: var(--thai-tae-radius-sm);
	text-decoration: none;
}

.btn-primary:hover {
	background: #ff7a3a;
	color: #0a0a0a;
	text-decoration: none;
}

/* ==========================================================================
   Site header
   ========================================================================== */

.thai-tae-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: var(--thai-tae-space-sm) 0;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--thai-tae-border);
}

.thai-tae-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--thai-tae-space-md);
}

.thai-tae-header__brand {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.thai-tae-header__brand a,
.thai-tae-header__logo-link {
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--thai-tae-body-text);
	text-decoration: none;
}

.thai-tae-header__brand a:hover,
.thai-tae-header__logo-link:hover {
	color: var(--thai-tae-accent-2);
	text-decoration: none;
}

/* Customizer logo: constrain size in header */
.thai-tae-header__brand .custom-logo {
	max-height: 2.75rem;
	width: auto;
}

.thai-tae-header__tagline {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	max-width: 20rem;
	line-height: 1.35;
	color: var(--thai-tae-muted);
	text-transform: none;
	letter-spacing: 0.01em;
}

.thai-tae-header__nav {
	display: flex;
	align-items: center;
}

.thai-tae-header__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--thai-tae-space-sm) var(--thai-tae-space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.thai-tae-header__menu a {
	color: var(--thai-tae-body-text);
	font-weight: 600;
	font-size: 0.9rem;
}

.thai-tae-header__menu a:hover {
	color: var(--thai-tae-accent);
}

.thai-tae-header__toggle {
	display: none;
	background: none;
	border: none;
	padding: var(--thai-tae-space-sm);
	cursor: pointer;
}

.thai-tae-header__toggle-icon {
	display: block;
	width: 1.5rem;
	height: 2px;
	background: var(--thai-tae-body-text);
	box-shadow: 0 6px 0 var(--thai-tae-body-text), 0 12px 0 var(--thai-tae-body-text);
}

.thai-tae-header__actions {
	min-width: 0.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.thai-tae-footer {
	background-color: var(--thai-tae-footer-bg);
	color: var(--thai-tae-footer-text);
	padding: var(--thai-tae-section) 0 var(--thai-tae-space-xl);
	margin-top: auto;
}

.thai-tae-footer a {
	color: var(--thai-tae-footer-text);
}

.thai-tae-footer a:hover {
	color: var(--thai-tae-accent-2);
	text-decoration: none;
}

.thai-tae-footer__grid {
	display: grid;
	gap: var(--thai-tae-space-2xl);
	margin-bottom: var(--thai-tae-space-2xl);
}

.thai-tae-footer__logo {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--thai-tae-footer-text);
	letter-spacing: -0.02em;
}

.thai-tae-footer__tagline {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #a0a0a0;
}

.thai-tae-footer__heading {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #c8c6c1;
}

.thai-tae-footer__address,
.thai-tae-footer__phone,
.thai-tae-footer__email,
.thai-tae-footer__hours-content {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: #a8a6a1;
	font-style: normal;
}

.thai-tae-footer__phone + .thai-tae-footer__email,
.thai-tae-footer__address + .thai-tae-footer__phone,
.thai-tae-footer__address + .thai-tae-footer__email {
	margin-top: var(--thai-tae-space-sm);
}

.thai-tae-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.thai-tae-footer__menu li {
	margin-bottom: var(--thai-tae-space-xs);
}

.thai-tae-footer__bottom {
	padding-top: var(--thai-tae-space-lg);
	border-top: 1px solid #222;
	text-align: center;
}

.thai-tae-footer__copyright {
	margin: 0;
	font-size: 0.8125rem;
	color: #888;
}

/* ==========================================================================
   Hero — full bleed, overlay
   ========================================================================== */

.thai-tae-hero--fusion {
	position: relative;
	min-height: min(80vh, 40rem);
	display: block;
	width: 100%;
	padding: 0;
}

.thai-tae-hero--fusion .thai-tae-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.thai-tae-hero--fusion .thai-tae-hero__image,
.thai-tae-hero--fusion .thai-tae-hero__image--placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thai-tae-hero--fusion .thai-tae-hero__image--placeholder {
	background: linear-gradient(140deg, #1a1a1a, #0d0d0d 40%, #1f3d2a);
	min-height: 20rem;
}

.thai-tae-hero--fusion .thai-tae-hero__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.35) 45%,
		rgba(0, 0, 0, 0.85) 100%
	);
}

.thai-tae-hero--fusion .thai-tae-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: var(--thai-tae-space-3xl);
	padding-bottom: var(--thai-tae-space-3xl);
	display: flex;
	align-items: center;
}

.thai-tae-hero--fusion .thai-tae-hero__content {
	max-width: 36rem;
}

.thai-tae-hero--fusion .thai-tae-hero__kicker {
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--thai-tae-accent-2);
	margin-bottom: var(--thai-tae-space-sm);
}

.thai-tae-hero--fusion .thai-tae-hero__headline {
	color: #fff;
	margin-bottom: var(--thai-tae-space-md);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.thai-tae-hero--fusion .thai-tae-hero__tagline {
	color: #e8e6e1;
	margin-bottom: var(--thai-tae-space-xl);
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	font-weight: 600;
	line-height: 1.45;
}

.thai-tae-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--thai-tae-space-md);
}

/* ==========================================================================
   Concept — pillars (icon images from Customizer → Thai Tae Icons)
   ========================================================================== */

.thai-tae-concept {
	padding: var(--thai-tae-section) 0;
	background: var(--thai-tae-bg);
}

.thai-tae-concept__header {
	text-align: center;
	margin-bottom: var(--thai-tae-space-2xl);
}

.thai-tae-concept__title {
	color: #fff;
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

.thai-tae-concept__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--thai-tae-space-lg);
}

.thai-tae-concept__item {
	background: var(--thai-tae-surface);
	border: 1px solid var(--thai-tae-border);
	border-radius: var(--thai-tae-radius-lg);
	padding: var(--thai-tae-space-xl) var(--thai-tae-space-lg);
	text-align: center;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.thai-tae-concept__item.thai-tae-concept__card {
	position: relative;
	overflow: visible;
}

.thai-tae-concept__item.thai-tae-concept__card:has(.thai-tae-concept__icon) {
	padding-top: calc(var(--thai-tae-space-xl) + var(--thai-tae-space-md));
}

.thai-tae-concept__item:hover {
	border-color: #3a3a3a;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.thai-tae-concept__icon {
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0;
	padding: 0.35rem;
	box-sizing: border-box;
	object-fit: contain;
	background: var(--thai-tae-elevated);
	border-radius: 50%;
	border: 1px solid var(--thai-tae-border);
	transform: translate(-50%, -42%);
	pointer-events: none;
}



.thai-tae-concept__item-title {
	color: #fff;
	margin-bottom: var(--thai-tae-space-sm);
}

.thai-tae-concept__item-text {
	margin: 0;
	color: var(--thai-tae-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Minett'zza homepage teaser (toggle on) */
.thai-tae-minettzza-intro {
	padding: var(--thai-tae-section) 0;
	background: var(--thai-tae-hero-bg);
	border-top: 1px solid var(--thai-tae-border);
	border-bottom: 1px solid var(--thai-tae-border);
}

.thai-tae-minettzza-intro__inner {
	max-width: var(--thai-tae-container);
	margin: 0 auto;
	padding: 0 var(--thai-tae-space-lg);
}

.thai-tae-minettzza-intro__eyebrow {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--thai-tae-accent);
	margin-bottom: var(--thai-tae-space-sm);
}

.thai-tae-minettzza-intro__title {
	color: #fff;
	max-width: 28rem;
}

.thai-tae-minettzza-intro__text {
	color: var(--thai-tae-muted);
	font-size: 1.05rem;
	max-width: 36rem;
	margin-bottom: var(--thai-tae-space-xl);
}

/* Minett'zza standalone page */
.thai-tae-minettzza-page {
	background: var(--thai-tae-bg);
}

.thai-tae-minettzza-hero {
	padding: var(--thai-tae-space-4xl) var(--thai-tae-space-lg) var(--thai-tae-space-3xl);
	text-align: center;
	background: linear-gradient(160deg, #1a1410 0%, var(--thai-tae-bg) 55%);
	border-bottom: 1px solid var(--thai-tae-border);
}

.thai-tae-minettzza-hero__eyebrow {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--thai-tae-accent);
}

.thai-tae-minettzza-hero__title {
	font-size: clamp(2.5rem, 8vw, 4rem);
	color: #fff;
	margin-bottom: var(--thai-tae-space-md);
}

.thai-tae-minettzza-hero__lead {
	max-width: 40rem;
	margin: 0 auto;
	color: var(--thai-tae-muted);
	font-size: 1.1rem;
	line-height: 1.55;
}

.thai-tae-minettzza-concept,
.thai-tae-minettzza-positioning,
.thai-tae-minettzza-cta {
	padding: var(--thai-tae-section) var(--thai-tae-space-lg);
}

.thai-tae-minettzza-concept__inner,
.thai-tae-minettzza-positioning__inner,
.thai-tae-minettzza-cta__inner {
	max-width: var(--thai-tae-container);
	margin: 0 auto;
}

.thai-tae-minettzza-concept__title,
.thai-tae-minettzza-positioning h2,
.thai-tae-minettzza-cta h2 {
	color: #fff;
	text-align: center;
}

.thai-tae-minettzza-concept__grid {
	display: grid;
	gap: var(--thai-tae-space-lg);
	margin-top: var(--thai-tae-space-2xl);
}

.thai-tae-minettzza-concept__card {
	background: var(--thai-tae-surface);
	border: 1px solid var(--thai-tae-border);
	border-radius: var(--thai-tae-radius-lg);
	padding: var(--thai-tae-space-xl);
}

.thai-tae-minettzza-concept__card h3 {
	color: #fff;
	margin-bottom: var(--thai-tae-space-sm);
}

.thai-tae-minettzza-concept__card p {
	margin: 0;
	color: var(--thai-tae-muted);
	line-height: 1.55;
}

.thai-tae-minettzza-positioning p {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	color: var(--thai-tae-body-text);
	text-align: center;
}

.thai-tae-minettzza-cta {
	text-align: center;
	background: var(--thai-tae-surface);
	border-top: 1px solid var(--thai-tae-border);
}

.thai-tae-minettzza-cta p {
	color: var(--thai-tae-muted);
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

.thai-tae-minettzza-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--thai-tae-space-md);
	justify-content: center;
	margin-top: var(--thai-tae-space-xl);
}

.thai-tae-btn--disabled {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

.thai-tae-footer__teaser {
	margin: 0 0 var(--thai-tae-space-sm);
	font-size: 0.875rem;
	color: var(--thai-tae-muted);
	font-style: italic;
	text-align: center;
}

.about-page .about-lead {
	font-size: 1.15rem;
	color: #fff;
	line-height: 1.55;
}

.thai-tae-menu__categories {
	list-style: none;
	margin: 0 0 var(--thai-tae-space-2xl);
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--thai-tae-space-sm);
}

.thai-tae-menu__category a {
	display: inline-block;
	padding: var(--thai-tae-space-sm) var(--thai-tae-space-md);
	border: 1px solid var(--thai-tae-border);
	border-radius: var(--thai-tae-radius-md);
	color: var(--thai-tae-body-text);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.875rem;
}

.thai-tae-menu__category a:hover {
	border-color: var(--thai-tae-accent);
	color: var(--thai-tae-accent);
}

.thai-tae-menu__section + .thai-tae-menu__section {
	margin-top: var(--thai-tae-space-3xl);
	padding-top: var(--thai-tae-space-2xl);
	border-top: 1px solid var(--thai-tae-border);
}

/* ==========================================================================
   Signature / featured — grid, cards, chef badge
   ========================================================================== */

.thai-tae-signature {
	padding: var(--thai-tae-section) 0;
	background: var(--thai-tae-hero-bg);
}

.thai-tae-signature__header {
	display: flex;
	flex-direction: column;
	gap: var(--thai-tae-space-md);
	margin-bottom: var(--thai-tae-space-2xl);
}

@media (min-width: 640px) {
	.thai-tae-signature__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.thai-tae-signature__eyebrow {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--thai-tae-accent-2);
	margin: 0 0 var(--thai-tae-space-xs);
}

.thai-tae-signature__title {
	color: #fff;
	margin: 0 0 var(--thai-tae-space-sm);
}

.thai-tae-signature__lead {
	margin: 0;
	color: var(--thai-tae-muted);
	font-size: 0.95rem;
	max-width: 28rem;
}

/* Suggestion du Chef badge (rendered by restaurant menu plugin) */
.rmp-dish-card {
	position: relative;
}

.rmp-chef-suggestion-badge {
	position: absolute;
	top: var(--thai-tae-space-sm);
	left: var(--thai-tae-space-sm);
	z-index: 2;
	padding: 0.25rem 0.6rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: #0a0a0a;
	background: var(--thai-tae-accent);
	border-radius: var(--thai-tae-radius-sm);
	pointer-events: none;
}

.thai-tae-card {
	background: var(--thai-tae-surface);
	border: 1px solid var(--thai-tae-border);
	border-radius: var(--thai-tae-radius-md);
	overflow: hidden;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.thai-tae-card:hover {
	border-color: #3d3d3d;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.thai-tae-card__media {
	aspect-ratio: 4 / 3;
	background: var(--thai-tae-elevated);
}

.thai-tae-card__body {
	padding: var(--thai-tae-space-lg);
}

.thai-tae-card__title {
	color: #fff;
	font-size: 1.0625rem;
	margin-bottom: var(--thai-tae-space-sm);
}

.thai-tae-card__text {
	color: var(--thai-tae-muted);
	margin-bottom: var(--thai-tae-space-sm);
}

/* Legacy featured section class (shortcode may wrap) */
.thai-tae-featured-dishes {
	padding: 0;
}

/* ==========================================================================
   About preview
   ========================================================================== */

.thai-tae-about-preview {
	padding: var(--thai-tae-section) 0;
	background: var(--thai-tae-bg);
}

.thai-tae-about-preview__grid {
	display: grid;
	gap: var(--thai-tae-space-2xl);
	align-items: center;
}

.thai-tae-about-preview__media {
	border-radius: var(--thai-tae-radius-lg);
	overflow: hidden;
	background: var(--thai-tae-elevated);
	border: 1px solid var(--thai-tae-border);
}

.thai-tae-about-preview__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thai-tae-about-preview__placeholder {
	min-height: 16rem;
	aspect-ratio: 4/3;
	background: linear-gradient(120deg, #1a1a1a, #0f0f0f, #1a2f22);
}

.thai-tae-about-preview__content {
	margin: 0;
}

.thai-tae-about-preview__title {
	color: #fff;
}

.thai-tae-about-preview__excerpt {
	color: var(--thai-tae-muted);
	font-size: 1.05rem;
	margin-bottom: var(--thai-tae-space-lg);
}

/* Old about section (if referenced elsewhere) */
.about {
	padding: var(--thai-tae-section) 0;
}

/* ==========================================================================
   Reviews & contact
   ========================================================================== */

.thai-tae-reviews {
	padding: var(--thai-tae-section) 0;
	background: var(--thai-tae-hero-bg);
}

.thai-tae-reviews__header {
	margin-bottom: var(--thai-tae-space-2xl);
}

.thai-tae-reviews__title {
	color: #fff;
	text-align: left;
}

.thai-tae-reviews__inner,
.thai-tae-contact__inner {
	text-align: left;
}

.thai-tae-contact {
	padding: var(--thai-tae-section) 0;
	background: #0e0e0e;
}

.thai-tae-contact__title {
	color: #fff;
}

.thai-tae-contact__intro {
	color: var(--thai-tae-muted);
	margin: 0 0 var(--thai-tae-space-xl);
}

.thai-tae-contact__body {
	display: flex;
	flex-direction: column;
	gap: var(--thai-tae-space-xl);
}

.thai-tae-contact__map {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--thai-tae-radius-lg);
	overflow: hidden;
	border: 1px solid var(--thai-tae-border);
	background: var(--thai-tae-elevated);
}

.thai-tae-contact__map--placeholder {
	min-height: 16rem;
}

.thai-tae-contact__map-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.thai-tae-contact__cta {
	display: flex;
	justify-content: flex-start;
}

.thai-tae-contact__placeholder {
	min-height: 4rem;
	margin-top: var(--thai-tae-space-md);
	background: var(--thai-tae-elevated);
	border: 1px dashed var(--thai-tae-border);
	border-radius: var(--thai-tae-radius-md);
}

/* Contact page */
.thai-tae-page-contact {
	padding: var(--thai-tae-space-3xl) 0 var(--thai-tae-section);
}

.thai-tae-contact-page__intro {
	color: var(--thai-tae-muted);
	font-size: 1.05rem;
	max-width: 36rem;
}

.thai-tae-contact-page__grid {
	display: grid;
	gap: var(--thai-tae-space-2xl);
	margin-top: var(--thai-tae-space-2xl);
}

.thai-tae-contact-page__heading {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #c8c6c1;
	margin-top: var(--thai-tae-space-xl);
	margin-bottom: var(--thai-tae-space-md);
}

.thai-tae-contact-page__details .thai-tae-contact-page__heading:first-child {
	margin-top: 0;
}

.thai-tae-contact-page__address,
.thai-tae-contact-page__phone,
.thai-tae-contact-page__email,
.thai-tae-contact-page__hours {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--thai-tae-body-text);
	font-style: normal;
}

.thai-tae-contact-page__phone + .thai-tae-contact-page__email,
.thai-tae-contact-page__address + .thai-tae-contact-page__phone,
.thai-tae-contact-page__address + .thai-tae-contact-page__email {
	margin-top: var(--thai-tae-space-sm);
}

@media (min-width: 768px) {
	.thai-tae-contact-page__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

/* ==========================================================================
   Page: generic, menu, about, single dish
   ========================================================================== */

.thai-tae-page {
	padding: var(--thai-tae-space-3xl) 0 var(--thai-tae-section);
}

.thai-tae-page__header {
	margin-bottom: var(--thai-tae-space-2xl);
}

.thai-tae-page__title,
.thai-tae-page__content,
.thai-tae-menu__shortcode {
	color: var(--thai-tae-body-text);
	overflow-x: hidden;
	max-width: 100%;
}

/* Restaurant menu plugin — mobile stack */
.rmp-menu-container {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.rmp-dish-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--thai-tae-space-lg);
	width: 100%;
}

.rmp-dish-card {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 620px) {
	.rmp-dish-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.rmp-dish-card {
		max-width: 360px;
		justify-self: center;
	}
}

/* Menu page */
.thai-tae-menu__header {
	margin-bottom: var(--thai-tae-space-2xl);
}

.thai-tae-menu__title {
	color: #fff;
}

.thai-tae-menu__subtitle {
	color: var(--thai-tae-muted);
	font-size: 1.05rem;
}

.thai-tae-menu__categories:empty {
	display: none;
}

/* About full page */
.about-page {
	padding: var(--thai-tae-space-3xl) 0 var(--thai-tae-section);
}

.about-page h1 {
	color: #fff;
}

.about-content--full {
	color: var(--thai-tae-body-text);
}

/* Single dish */
.thai-tae-dish-single {
	padding: var(--thai-tae-space-3xl) 0;
}

.thai-tae-dish__header {
	margin-bottom: var(--thai-tae-space-xl);
}

.thai-tae-dish__title {
	color: #fff;
}

.thai-tae-dish__media,
.thai-tae-dish__image-placeholder,
.about-featured-image__img,
.about-featured-image-placeholder,
.about-content--full {
	color: var(--thai-tae-body-text);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 640px) {
	.thai-tae-concept--dual .thai-tae-concept__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.thai-tae-concept--thai .thai-tae-concept__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.thai-tae-minettzza-concept__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.thai-tae-about-preview__grid {
		grid-template-columns: 1fr 1fr;
	}
	.thai-tae-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.thai-tae-dish__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.thai-tae-menu__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.thai-tae-concept--thai .thai-tae-concept__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.thai-tae-minettzza-concept__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.thai-tae-hero--fusion {
		min-height: min(88vh, 44rem);
	}
}

@media (min-width: 1024px) {
	.thai-tae-header__toggle {
		display: none;
	}
	.thai-tae-footer__grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.thai-tae-dish__related-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.thai-tae-menu__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1280px) {
	.thai-tae-footer__grid {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

@media (max-width: 1023px) {
	.thai-tae-header__toggle {
		display: block;
	}
	.thai-tae-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--thai-tae-surface);
		border-bottom: 1px solid var(--thai-tae-border);
		padding: var(--thai-tae-space-md);
		display: none;
	}
	.thai-tae-header.thai-tae-header--nav-open .thai-tae-header__nav {
		display: block;
	}
	.thai-tae-header__menu {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}
