@font-face {
  font-family: "Myanmar Khyay";
  src: url("assets/MyanmarKhyay.ttf") format("truetype");
  font-display: swap;
}

:root {
  --primary-color: #e32811;
  --primary-deep: #9d1609;
  --secondary-color: #f9ddcb;
  --secondary-strong: #f3c3a1;
  --surface-color: #fff5ee;
  --surface-muted: #ffece0;
  --text-color: #24120d;
  --text-soft: #6b4a3e;
  --line-color: rgba(36, 18, 13, 0.1);
  --star-color: #ffa600;
  --shadow-soft: 0 28px 60px rgba(157, 22, 9, 0.1);
  --shadow-card: 0 14px 36px rgba(83, 37, 23, 0.08);
  --radius-lg: 2rem;
  --radius-md: 1.4rem;
  --radius-sm: 1rem;
  --content-width: 1180px;
  --header-offset: 8.5rem;
  --accent-font: "Myanmar Khyay", "Trebuchet MS", sans-serif;
  --heading-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text-color);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(180deg, #ffefe2 0%, #fff5ee 52%, #fffaf7 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

main#home,
main section[id] {
  scroll-margin-top: var(--header-offset);
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1rem;
  background: rgba(255, 245, 238, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(36, 18, 13, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), #ff7a3c);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.brand-mark img {
  width: 1.35rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--accent-font);
  letter-spacing: 0.01em;
}

.brand-copy strong {
  font-size: 1.15rem;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-soft);
}

.topnav a {
  position: relative;
  transition: color var(--transition);
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text-color);
}

.topnav a:hover::after,
.topnav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #ff6a37);
  box-shadow: 0 14px 30px rgba(227, 40, 17, 0.22);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.button img {
  width: 1.05rem;
  transition: transform var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(227, 40, 17, 0.28);
}

.button:hover img,
.button:focus-visible img {
  transform: translate(0.15rem, -0.15rem);
}

.button-small {
  padding: 0.8rem 1.15rem;
  font-size: 0.92rem;
}

.button-ghost {
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(36, 18, 13, 0.08);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: auto;
  padding: 2rem 0 3rem;
}

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: inherit;
  padding: 2rem 2rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(180deg, #fee9dd 0%, #feefe5 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.94;
}

.hero-title-burmese {
  font-family: var(--accent-font);
  font-size: clamp(4.8rem, 11vw, 8.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--primary-color);
  margin-bottom: 1.35rem;
  text-shadow:
    0 0 0 rgba(227, 40, 17, 0),
    0 0 18px rgba(255, 122, 60, 0.22),
    0 0 34px rgba(255, 166, 0, 0.12);
  animation: titleGlow 3.2s ease-in-out infinite;
}

.hero-text,
.story-card p,
.special-card p,
.visit-copy p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 1rem auto 0;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 1.6rem;
}

.hero-tagline {
  max-width: 40rem;
  margin: 0 auto;
  color: rgba(227, 40, 17, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button-text {
  color: var(--primary-color);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button-text:hover,
.button-text:focus-visible {
  box-shadow: none;
  color: var(--primary-deep);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.hero-stats div {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(36, 18, 13, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.hero-stats dt {
  margin-bottom: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-stats dd {
  margin: 0;
  font-family: var(--accent-font);
  font-size: 1.7rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(46rem, 92%);
  margin: 1.5rem auto 0;
}

.hero-image-wrap {
  position: relative;
  isolation: isolate;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 52% 15% -10% 15%;
  z-index: -1;
  background: radial-gradient(circle, rgba(227, 40, 17, 0.18), transparent 70%);
  filter: blur(20px);
}

.hero-image-wrap #mask {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-image {
  width: 100%;
  aspect-ratio: 962 / 510;
  object-fit: cover;
  border-radius: 0;
  animation: bob 5.5s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  top: 14%;
  left: 75%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 6.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 18px 36px rgba(227, 40, 17, 0.22);
  text-align: center;
  transform: translate(-50%, -50%);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.hero-orb span,
.hero-orb strong {
  display: block;
  line-height: 1;
}

.hero-orb span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-orb strong {
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.hero-orb:hover,
.hero-orb:focus-visible,
.hero-orb.hovering {
  box-shadow: 0 22px 42px rgba(227, 40, 17, 0.28);
}

.hero-side {
  position: static;
  z-index: 3;
  width: min(48rem, 100%);
  margin-top: 0.5rem;
}

.hero-contact {
  margin-top: 1rem;
  text-align: center;
}

.hero-contact p {
  margin: 0.3rem 0 0;
  color: var(--primary-color);
  font-size: 1.02rem;
}

.hero-socials {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.hero-socials a {
  width: 2.5rem;
  height: 2.5rem;
  border-color: rgba(227, 40, 17, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.hero-socials img {
  filter: invert(26%) sepia(95%) saturate(2718%) hue-rotate(355deg) brightness(92%) contrast(95%);
}

.story-grid,
.visit {
  display: grid;
  gap: 1.25rem;
}

.history {
  margin-bottom: 6rem;
}

.history-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.25rem;
}

.history-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.history-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -60% auto;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.15), transparent 65%);
  pointer-events: none;
}

.history-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  line-height: 1;
}

.history-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.history-card p + p {
  margin-top: 1rem;
}

.history-card-wide {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 236, 0.72)),
    rgba(255, 255, 255, 0.4);
}

.story-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
  margin-bottom: 6rem;
}

.story-card,
.special-card,
.visit-panel,
.review,
.review-stage {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.story-card::before,
.special-card::before,
.review::before,
.review-stage::before,
.visit-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -60% auto;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.15), transparent 65%);
  pointer-events: none;
}

.story-card-accent {
  background:
    linear-gradient(145deg, rgba(227, 40, 17, 0.88), rgba(255, 122, 60, 0.84)),
    rgba(255, 255, 255, 0.2);
  color: #fff;
}

.story-card-accent .eyebrow,
.story-card-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.story-card h2,
.section-heading h2,
.visit-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.story-card h3,
.special-card h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  line-height: 1;
}

.story-card p {
  margin: 0;
}

.story-kicker {
  margin-bottom: 0.7rem;
  font-family: var(--accent-font);
  font-size: 1rem;
  color: var(--primary-color);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.specials,
.reviews,
.visit {
  margin-bottom: 6rem;
}

.specials-grid,
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.specials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-card {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.special-card:hover,
.special-card:focus-within {
  transform: translateY(-0.35rem);
  box-shadow: 0 24px 48px rgba(46, 14, 10, 0.14);
}

.special-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--secondary-color);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.special-card strong {
  font-size: 1.1rem;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.review-stage {
  min-height: 15rem;
  padding: 0;
}

#review-container {
  position: relative;
  min-height: 15rem;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 15rem;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.review.exit {
  opacity: 0;
  transform: translateY(20px);
}

.review-stars {
  display: inline-flex;
  gap: 0.25rem;
}

.review-star {
  width: 1.1rem;
}

.review-star.faded {
  opacity: 0.22;
}

.review-content {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.05rem;
}

.reviewer {
  margin-top: auto;
  font-weight: 800;
}

.review-nav {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 50%;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.review-nav span {
  font-size: 1.25rem;
  font-weight: 800;
}

.review-nav:hover,
.review-nav:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(83, 37, 23, 0.14);
}

.visit {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.78fr);
  align-items: center;
}

.visit-panel {
  padding: 1.85rem;
  background:
    linear-gradient(135deg, rgba(36, 18, 13, 0.96), rgba(76, 33, 23, 0.92)),
    rgba(255, 255, 255, 0.12);
  color: #fff7f2;
}

.visit-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visit-row span {
  color: rgba(255, 247, 242, 0.72);
}

.visit-row strong {
  text-align: right;
}

.socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform var(--transition),
    background var(--transition);
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.socials img {
  width: 1.2rem;
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.96;
  --reveal-transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  --reveal-rotate: 0deg;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(14px);
  transform: var(--reveal-transform) rotate(var(--reveal-rotate));
  transform-origin: 50% 50%;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: transform, opacity, filter;
}

[data-reveal="fade-left"] {
  --reveal-x: 44px;
  --reveal-y: 0px;
}

[data-reveal="fade-down"] {
  --reveal-y: -24px;
  --reveal-scale: 0.98;
}

[data-reveal].reveal-from-up:not([data-reveal="fade-left"]):not([data-reveal="fade-down"]) {
  --reveal-y: -34px;
}

[data-reveal].reveal-from-down:not([data-reveal="fade-left"]):not([data-reveal="fade-down"]) {
  --reveal-y: 34px;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) rotate(0deg) scale(1);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow:
      0 0 0 rgba(227, 40, 17, 0),
      0 0 18px rgba(255, 122, 60, 0.22),
      0 0 34px rgba(255, 166, 0, 0.12);
  }
  50% {
    text-shadow:
      0 0 10px rgba(227, 40, 17, 0.18),
      0 0 28px rgba(255, 122, 60, 0.42),
      0 0 52px rgba(255, 166, 0, 0.24);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-offset: 10rem;
  }

  .topbar {
    border-radius: 2rem;
    flex-wrap: wrap;
  }

  .topnav {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .visit,
  .history-grid,
  .story-grid,
  .specials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-stage {
    min-height: auto;
    padding: 2rem 1.4rem 2rem;
  }

  .hero-visual {
    width: min(42rem, 94%);
    margin: 2rem auto 0;
  }

  .hero-orb {
    top: 18%;
    left: 74%;
  }

  .hero-side {
    width: 100%;
    max-width: 42rem;
    margin: 1rem auto 2rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 12rem;
  }

  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
    padding-bottom: 3rem;
  }

  .topbar {
    top: 0.5rem;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0.9rem;
  }

  .brand {
    width: 100%;
  }

  .button-small {
    width: 100%;
  }

  .topnav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero-title-burmese {
    font-size: clamp(2.8rem, 15vw, 4.9rem);
  }

  .hero-stage {
    padding: 1.4rem 1rem 1.5rem;
    border-radius: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-orb {
    width: 5.5rem;
    top: 17%;
    left: 72%;
  }

  .hero-visual {
    width: min(100%, 24rem);
    margin: 1.25rem auto 0;
  }

  .hero-side {
    margin: 0.5rem auto 1.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .story-card,
  .special-card,
  .review-card,
  .visit-panel {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .visit-row {
    flex-direction: column;
  }

  .visit-row strong {
    text-align: left;
  }

  .reviews-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .review-stage {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
