/* ============================================================
   BASE.CSS -- Shared styles for all restaurant templates
   All colors via CSS custom properties (set by color preset)
   Mobile-first, breakpoints at 768px
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Offset scroll targets so they don't hide behind sticky nav */
[id] {
  scroll-margin-top: 4rem;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
body {
  font-family: var(--font-body, system-ui, sans-serif);
  color: var(--text);
  background-color: var(--surface);
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, var(--font-body, system-ui));
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

p {
  max-width: 65ch;
  line-height: 1.75;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: var(--section-padding, 4rem) 0;
}

.section--alt {
  background-color: var(--surface-alt);
  color: var(--text-light);
}

.section--alt h2,
.section--alt h3,
.section--alt p {
  color: var(--text-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.875rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav .container {
  position: relative;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__name {
  font-family: var(--font-display, var(--font-body, system-ui));
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-light);
  white-space: nowrap;
}

/* Nav Links (tab bar) */
.nav__links {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
    gap: 0.5rem;
  }
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.7;
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile menu (open state) */
.nav__links--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary);
  padding: 0.75rem 1.25rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.nav__links--open .nav__link {
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

/* Hamburger button (mobile only) */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__hamburger--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

.nav__phone {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.85;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .nav__phone { display: none; }
}

.nav__phone:hover {
  opacity: 1;
  color: var(--accent);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 1.25rem;
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.92;
  margin-bottom: 2rem;
  font-family: var(--font-body, system-ui, sans-serif);
  font-weight: 400;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 0.75rem 2rem;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 2rem;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ---- Menu ---- */
.menu-section {
  padding: var(--section-padding, 4rem) 0;
}

.menu-section__title {
  margin-bottom: 0.5rem;
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-category__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.menu-item__desc {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.5;
  max-width: none;
}

.menu-item__price {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
}

/* ---- Gallery ---- */
.gallery-section {
  padding: var(--section-padding, 4rem) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .gallery-grid__item:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.gallery-grid__item {
  overflow: hidden;
  background-color: var(--surface-alt);
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.04);
}

/* ---- Hours Table ---- */
.hours-section {
  padding: var(--section-padding, 4rem) 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.6rem 0;
  line-height: 1.5;
}

.hours-table td:first-child {
  font-weight: 600;
  padding-right: 1.5rem;
  min-width: 5rem;
}

.hours-table td:last-child {
  opacity: 0.8;
}

/* ---- Reviews ---- */
.reviews-section {
  padding: var(--section-padding, 4rem) 0;
}

.review-card {
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background-color: var(--surface-alt);
  margin-bottom: 1.5rem;
}

.review-card__text {
  font-style: italic;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* ---- Google Maps Container ---- */
.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: var(--surface-alt);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Footer ---- */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 3rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer__text {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
  max-width: none;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.4rem;
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 1;
  color: var(--accent);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.5;
  text-align: center;
}

/* ---- Ordering / CTA section ---- */
.order-section {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--accent);
  color: #fff;
}

.order-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.order-section p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 1.5rem;
}

.order-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.order-links a {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease;
}

.order-links a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ---- About Section ---- */
.about-section {
  padding: var(--section-padding, 4rem) 0;
}

.about-section__subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-section__text {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.about-section__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---- Location Section ---- */
.location-section {
  padding: var(--section-padding, 4rem) 0;
}

.location-section__info p {
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ---- Empty-menu placeholder ----------------------------------
   Renders when Places data contains no menu items so the preview
   doesn't look broken. Theme-agnostic, styled with neutral tokens. */
.menu-placeholder {
  padding: 3rem 1.5rem;
  margin: 2rem auto;
  max-width: 32rem;
  text-align: center;
  font-family: var(--font-display, var(--font-body, system-ui));
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-primary, currentColor);
  opacity: 0.55;
  border: 1px dashed currentColor;
  border-radius: 0.5rem;
}

/* ---- Claim banner (preview sites only) -----------------------
   Sticky bottom bar on preview sites — the only outbound CTA from
   the site to the Page for Plate team. Dismissible per session.
   Sized/padded to leave the normal footer accessible above it. */
.claim-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: #2F4A3A;
  color: #F7F2EA;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
  padding: 0.75rem 1rem;
  font-family: var(--font-body, system-ui, sans-serif);
  animation: claim-banner-in 0.35s ease-out both;
}
@keyframes claim-banner-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.claim-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.claim-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.claim-banner__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C2613A;
  font-weight: 700;
  margin-bottom: 2px;
}
.claim-banner__headline {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 500;
}
.claim-banner__headline em {
  font-style: normal;
  font-weight: 700;
}
.claim-banner__cta {
  display: inline-block;
  background: #C2613A;
  color: #FFFDF8 !important;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.72rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.claim-banner__cta:hover {
  background: #a94f2d;
  transform: translateY(-1px);
}
.claim-banner__dismiss {
  background: transparent;
  border: 0;
  color: #F7F2EA;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.3rem;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.claim-banner__dismiss:hover { opacity: 1; }

/* Leave room above the banner so the footer isn't hidden on mobile */
body:has(.claim-banner) { padding-bottom: 6rem; }
@media (max-width: 640px) {
  .claim-banner__inner {
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }
  .claim-banner__copy {
    flex: 1 1 100%;
    order: 1;
  }
  .claim-banner__cta {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .claim-banner__dismiss {
    position: absolute;
    top: 0.2rem;
    right: 0.4rem;
  }
  .claim-banner { padding-top: 1.5rem; }
  body:has(.claim-banner) { padding-bottom: 9rem; }
}

/* ============================================================
   ASIAN-ELEGANT.CSS -- Minimal, spacious, "ma" (negative space)
   Extends base.css -- overrides and template-specific rules only
   ============================================================ */

/* ---- Hero: full-bleed, no clutter ---- */
.ae-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary);
}

.ae-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ae-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.ae-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 1.5rem;
  max-width: 680px;
}

.ae-hero__name {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.ae-hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-family: var(--font-body, system-ui, sans-serif);
  font-weight: 400;
}

/* ---- About: asymmetric grid 1.3fr / 0.7fr ---- */
.ae-about {
  padding: var(--section-padding, 5rem) 0;
  background-color: var(--surface);
}

.ae-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ae-about__grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
  }
}

.ae-about__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ae-about__heading {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ae-about__text {
  font-size: 1.05rem;
  line-height: 1.85;
  opacity: 0.85;
  max-width: 55ch;
}

.ae-about__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .ae-about__image {
    height: 500px;
  }
}

/* ---- Menu: dark surface-alt, clean vertical list ---- */
.ae-menu {
  padding: var(--section-padding, 5rem) 0;
  background-color: var(--surface-alt);
  color: var(--text-light);
}

.ae-menu__heading {
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.ae-menu__subhead {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3.5rem;
}

.ae-menu__categories {
  max-width: 720px;
  margin: 0 auto;
}

.ae-menu__category-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.ae-menu__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ae-menu__item:last-child {
  border-bottom: none;
}

.ae-menu__item--has-photo {
  align-items: center;
  gap: 1.25rem;
}

.ae-menu__item-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

@media (max-width: 520px) {
  .ae-menu__item-photo {
    width: 72px;
    height: 72px;
  }
}

.ae-menu__item-info {
  flex: 1;
  min-width: 0;
}

.ae-menu__item-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.ae-menu__item-desc {
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.5;
  max-width: none;
  font-family: var(--font-body, system-ui, sans-serif);
}

.ae-menu__item-price {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.ae-menu__category + .ae-menu__category {
  margin-top: 2.5rem;
}

/* ---- Gallery: masonry with first-child 2x2 ---- */
.ae-gallery {
  padding: var(--section-padding, 5rem) 0;
  background-color: var(--surface);
}

.ae-gallery__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ae-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

@media (min-width: 768px) {
  .ae-gallery__grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
  }

  .ae-gallery__grid-item:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.ae-gallery__grid-item {
  overflow: hidden;
  background-color: var(--surface-alt);
}

.ae-gallery__grid-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .ae-gallery__grid-item:first-child img {
    height: 530px;
  }

  .ae-gallery__grid-item:not(:first-child) img {
    height: 263px;
  }
}

.ae-gallery__grid-item:hover img {
  transform: scale(1.03);
}

/* ---- Hours & Location: side-by-side 0.4fr / 0.6fr ---- */
.ae-location {
  padding: var(--section-padding, 5rem) 0;
  background-color: var(--surface);
}

.ae-location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ae-location__grid {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
    align-items: start;
  }
}

.ae-location__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ae-location__heading {
  margin-bottom: 1.5rem;
}

.ae-location__address {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.ae-location__hours-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.ae-location__map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-color: var(--surface-alt);
}

.ae-location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Order Online section ---- */
.ae-order {
  padding: 4rem 0;
  background-color: var(--accent);
  text-align: center;
}

.ae-order__heading {
  color: #fff;
  margin-bottom: 0.75rem;
}

.ae-order__text {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.ae-order__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ae-order__link {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ae-order__link:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}

/* ---- Review ---- */
/* Sits on --surface (the page's body surface), so use --text not
   --text-light. japanese-casual has --surface=cream + --text-light=cream
   so the wrong choice = invisible quote. */
.ae-review {
  padding: calc(var(--section-padding, 5rem) * 0.7) 0;
  background-color: var(--surface);
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}
.ae-review__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.ae-review__stars {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.ae-review__quote {
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
}
.ae-review__cite {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  margin: 0;
}
@media (max-width: 640px) {
  .ae-review__quote { font-size: 1.2rem; }
}

.theme-japanese-casual {
  --primary: #1a1a1a;
  --accent: #c8102e;
  --surface: #f5f0e8;
  --surface-alt: #2d2d2d;
  --text: #2d2d2d;
  --text-light: #f5f0e8;
  --font-display: "Hina Mincho", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --section-padding: 5rem;
}
