:root {
  --ink: #000;
  --ink-soft: #2f2f2f;
  --cream: #ffe45c;
  --paper: #fff;
  --gold: #d4af37;
  --gold-bright: #ffd400;
  --gold-dark: #7a5200;
  --silver: #d8d8d8;
  --silver-light: #f3f3f3;
  --line: rgba(0, 0, 0, 0.18);
  --serif: "Noto Serif Myanmar", serif;
  --sans: "Noto Sans Myanmar", sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --content: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 32rem),
    linear-gradient(135deg, #fff06a 0%, #ffd400 40%, #ffdf46 68%, #d4af37 100%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.35rem, 4.8vw, 4.35rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 244, 86, 0.98), rgba(255, 212, 0, 0.98), rgba(212, 175, 55, 0.96));
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(100%, 1440px);
  min-height: 152px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
  text-decoration: none;
}

.site-logo img {
  width: 132px;
  height: 132px;
  padding: 0.25rem;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  filter: contrast(1.2) saturate(1.15) drop-shadow(0 7px 0 rgba(0, 0, 0, 0.22));
  object-fit: contain;
}

.site-logo span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.05;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5), 0 0 14px rgba(255, 255, 255, 0.34);
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.55vw, 1.55rem);
}

.primary-nav a {
  padding: 0.65rem 0;
  border-bottom: 2px solid transparent;
  font-size: clamp(0.98rem, 1.05vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.primary-nav .admin-link {
  padding: 0.78rem 1.1rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.22);
}

.primary-nav .admin-link:hover,
.primary-nav .admin-link:focus-visible {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-left: 1rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-slider {
  position: relative;
  min-height: min(74vh, 760px);
  overflow: hidden;
  background: var(--gold-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 750ms ease;
  pointer-events: none;
}

.hero-slide.is-active { opacity: 1; pointer-events: auto; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  image-rendering: auto;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.06) 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--content));
  min-height: min(74vh, 760px);
  align-items: center;
  margin: 0 auto;
  padding: 4rem var(--pad) 6rem;
}

.hero-copy {
  max-width: 620px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-outline { background: transparent; color: var(--ink); }

.hero-controls {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  place-items: center;
}

.hero-dots { display: flex; gap: 0.4rem; margin-right: 0.6rem; }
.hero-dot { width: 28px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.is-active { background: #fff; }

.section {
  padding: clamp(5rem, 8.5vw, 8.25rem) var(--pad);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 440px; margin-bottom: 0.25rem; color: var(--ink-soft); }

.intro-grid,
.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.intro-image,
.story-image {
  min-height: 480px;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--gold), 22px 22px 0 var(--silver);
}
.intro-image img,
.story-image img { width: 100%; height: 100%; object-fit: cover; }

.intro-copy p,
.story-copy p { color: var(--ink-soft); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.category-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--silver-light) 100%);
  text-decoration: none;
}

.category-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 450ms ease; }
.category-card:hover img { transform: scale(1.025); }
.category-card div { padding: 1.35rem; }
.category-card h3 { margin-bottom: 0.45rem; }
.category-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.9rem; }

.cream-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-bright) 60%, var(--silver) 100%);
}
.dark-section { background: var(--ink); color: #fff; }
.dark-section p { color: rgba(255,255,255,.72); }

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--gold-bright), var(--cream) 52%, var(--silver-light));
}

.page-hero-inner {
  display: grid;
  width: min(100%, var(--content));
  align-items: end;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 3rem;
  margin: 0 auto;
}

.page-hero h1 { margin-bottom: 0; text-shadow: 2px 2px 0 rgba(255,255,255,.55); }
.page-hero p { margin-bottom: 0.25rem; color: var(--ink-soft); }

.product-feature {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1.05fr 0.95fr;
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, #fff 0%, var(--silver-light) 100%);
  box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.72);
}

.product-feature + .product-feature { margin-top: 2rem; }
.product-feature:nth-child(even) .product-feature-image { order: 2; }
.product-feature-image { min-height: 420px; }
.product-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.product-feature-copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(2rem, 5vw, 5rem); }
.product-feature-copy p { color: var(--ink-soft); }

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.signature-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--silver-light) 100%);
  box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.65);
}

.signature-card-image {
  display: grid;
  min-height: 480px;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--gold-bright), #fff06a 54%, var(--silver));
  place-items: center;
}

.signature-card img { width: min(100%, 390px); height: auto; max-height: 540px; object-fit: contain; box-shadow: 0 18px 40px rgba(0,0,0,.15); }
.signature-card-copy { padding: 1.25rem 1.4rem 1.5rem; }
.signature-card h2 { margin-bottom: 0.35rem; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.signature-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 1rem; }

.pic-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pic-tile {
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 rgba(216, 216, 216, 0.92);
}

.pic-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.pic-tile:hover img { transform: scale(1.035); }

.history-grid,
.activity-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.history-card {
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, #fff 0%, var(--silver-light) 100%);
  box-shadow: 12px 12px 0 var(--gold);
}

.history-card p,
.activity-card p { color: var(--ink-soft); }

.activity-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.activity-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.activity-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: #fff;
}

.catalog-toolbar p { margin: 0; color: var(--ink-soft); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.catalog-page {
  margin: 0;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.catalog-page img { width: 100%; height: auto; }
.catalog-page figcaption { padding: 0.65rem 0.35rem 0; color: var(--ink-soft); font-size: 0.75rem; }

.contact-mega {
  padding: clamp(4.5rem, 8vw, 7rem) var(--pad);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-bright) 24%, var(--gold) 50%, var(--gold-bright) 72%, var(--gold-dark) 100%);
}

.contact-mega-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.contact-mega-head {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.28);
}

.contact-mega h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3rem); }
.contact-mega-head p { margin-bottom: 0; font-size: 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.22);
  background: rgba(0,0,0,.22);
}

.contact-item {
  min-height: 170px;
  padding: 1.6rem;
  background: #fff;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-item p,
.contact-item a {
  margin-bottom: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.contact-item a { text-underline-offset: 4px; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.facebook-icon-link {
  display: inline-grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--gold-bright);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  place-items: center;
}

.facebook-icon-link:hover,
.facebook-icon-link:focus-visible {
  background: var(--gold-bright);
  color: var(--ink);
  transform: translateY(-2px);
}

.facebook-icon-link svg { width: 38px; height: 38px; fill: currentColor; }
.contact-panel .facebook-icon-link { margin-top: 0.8rem; color: var(--gold-bright); }
.contact-panel .facebook-icon-link:hover,
.contact-panel .facebook-icon-link:focus-visible { color: var(--ink); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-panel {
  min-height: 320px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: #fff;
}

.contact-panel h2 { font-size: 1.5rem; }
.contact-panel p, .contact-panel a { color: var(--ink-soft); font-size: 1rem; }

.site-footer {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem var(--pad);
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: 0.78rem;
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--gold-bright); text-underline-offset: 4px; }

@media (max-width: 1280px) {
  .header-inner { padding-right: calc(var(--pad) + 60px); }
  .nav-toggle {
    position: fixed;
    z-index: 50;
    top: 76px;
    right: var(--pad);
    display: block !important;
    margin-left: 0;
    border: 2px solid var(--ink);
    background: var(--ink);
    transform: translateY(-50%);
  }

  .nav-toggle span:not(.sr-only) { background: var(--gold-bright); }

  .primary-nav {
    position: fixed;
    z-index: 39;
    inset: 152px 0 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 2rem var(--pad);
    background: linear-gradient(180deg, var(--gold-bright), var(--cream));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 1.15rem 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; white-space: normal; }
  .primary-nav .admin-link { margin-top: 1rem; text-align: center; }

  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-inner,
  .contact-mega-head,
  .history-grid,
  .activity-grid,
  .admin-intro { grid-template-columns: 1fr; }
  .pic-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .header-inner { min-height: 125px; }
  .nav-toggle { top: 62.5px; }
  .site-logo { gap: 0.65rem; }
  .site-logo img { width: 98px; height: 98px; }
  .site-logo span { max-width: 210px; font-size: 1.18rem; letter-spacing: 0.06em; white-space: normal; }
  .primary-nav { inset: 125px 0 0; }
  .hero-slider, .hero-content { min-height: 68vh; }
  .hero-slide img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36)); }
  .hero-content { align-items: flex-end; padding-bottom: 7rem; }
  .hero-controls { right: 1.25rem; bottom: 1rem; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .intro-grid,
  .story-grid,
  .product-feature,
  .contact-page-grid { grid-template-columns: 1fr; }
  .product-feature:nth-child(even) .product-feature-image { order: 0; }
  .intro-image, .story-image, .product-feature-image { min-height: 340px; }
  .category-grid,
  .signature-grid,
  .catalog-grid,
  .contact-grid,
  .pic-showcase,
  .activity-photo-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 0; }
  .signature-card-image { min-height: 360px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .site-footer p:last-child { align-self: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
