:root {
  --green-950: #071d12;
  --green-900: #0c301e;
  --green-800: #103f28;
  --green-700: #165a36;
  --green-100: #d8ead2;
  --cream: #fff7e6;
  --rice: #f4dfb9;
  --amber: #c87822;
  --gold: #e9bd57;
  --red: #b13a32;
  --ink: #172016;
  --muted: #5e6b59;
  --line: rgba(23, 32, 22, 0.14);
  --shadow: 0 18px 60px rgba(7, 29, 18, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans Myanmar", "Padauk", "Myanmar Sangam MN", "Myanmar MN", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: #fff;
  background: rgba(7, 29, 18, 0.76);
  border-bottom: 1px solid rgba(255, 247, 230, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 29, 18, 0.94);
  box-shadow: 0 10px 30px rgba(7, 29, 18, 0.22);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-950);
  background: linear-gradient(145deg, var(--gold), var(--rice));
  border: 2px solid rgba(255, 247, 230, 0.78);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.25;
}

.brand small {
  color: rgba(255, 247, 230, 0.74);
  font-size: 12px;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  color: rgba(255, 247, 230, 0.86);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a,
.header-call {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-call {
  padding: 9px 15px;
  color: var(--green-950);
  background: var(--gold);
  border: 1px solid rgba(255, 247, 230, 0.4);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.header-call:hover {
  background: var(--rice);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, 78svh);
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 29, 18, 0.88), rgba(7, 29, 18, 0.54) 42%, rgba(7, 29, 18, 0.1)),
    linear-gradient(180deg, rgba(7, 29, 18, 0.22), rgba(7, 29, 18, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: clamp(58px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 620px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-copy {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 247, 230, 0.92);
  font-size: clamp(16px, 2vw, 21px);
}

.en-copy {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

.hero .en-copy {
  color: rgba(255, 247, 230, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--green-950);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(233, 189, 87, 0.24);
}

.button-primary:hover {
  background: var(--rice);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 247, 230, 0.12);
  border-color: rgba(255, 247, 230, 0.36);
}

.button-secondary:hover {
  background: rgba(255, 247, 230, 0.2);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16, 63, 40, 0.18);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  background: #fffaf0;
}

.fact span {
  display: block;
  color: var(--green-800);
  font-family: Arial, sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.fact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(28px, 4vw, 48px);
}

.section-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.intro-section {
  background: linear-gradient(180deg, #fff7e6, #f4ead4);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 4vw, 54px);
  width: min(980px, 100%);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.intro-grid p {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
}

.products-section {
  background: #fffaf0;
}

#products,
#factory,
#contact {
  scroll-margin-top: 96px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card-classic {
  border-top: 5px solid var(--green-700);
}

.product-card-lychee {
  border-top: 5px solid var(--red);
}

.product-image {
  display: grid;
  align-items: end;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(16, 63, 40, 0.05), rgba(200, 120, 34, 0.18)),
    var(--rice);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3.2vw, 36px);
}

.product-kicker {
  margin: 0 0 6px;
  color: var(--amber);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.2;
}

.product-body p {
  margin: 12px 0 0;
}

.product-flavor {
  color: var(--red);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.product-flavor span {
  display: block;
  margin-top: 4px;
  color: var(--amber);
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.spec-list div {
  min-width: 0;
  padding: 12px;
  background: #fff7e6;
  border: 1px solid rgba(200, 120, 34, 0.2);
  border-radius: var(--radius);
}

.spec-list dt {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 3px 0 0;
  color: var(--green-900);
  font-weight: 900;
}

.taste-note {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ingredients {
  padding: 16px 0 0;
}

.taste-note span,
.ingredients span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.button-product {
  align-self: flex-start;
  margin-top: auto;
  color: #fff;
  background: var(--green-800);
}

.button-product:hover {
  background: var(--green-700);
}

.factory-section {
  color: #fff;
  background: var(--green-950);
}

.factory-section .section-heading h2,
.factory-section .section-heading p {
  color: #fff7e6;
}

.factory-section .section-heading p {
  color: rgba(255, 247, 230, 0.76);
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 56px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.factory-copy {
  position: sticky;
  top: 100px;
  padding-top: 10px;
}

.factory-copy h3 {
  margin: 0;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.factory-copy p {
  margin: 14px 0 0;
  color: rgba(255, 247, 230, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 247, 230, 0.9);
}

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #102015;
  border: 1px solid rgba(255, 247, 230, 0.16);
  border-radius: var(--radius);
}

.gallery-item-large {
  grid-column: 1 / -1;
  min-height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(7, 29, 18, 0.76);
  border: 1px solid rgba(255, 247, 230, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.gallery-item strong,
.gallery-item span {
  display: block;
}

.gallery-item span {
  color: rgba(255, 247, 230, 0.74);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.contact-section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(16, 90, 54, 0.96), rgba(200, 120, 34, 0.84)),
    var(--green-700);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.contact-section .eyebrow {
  color: #fff7e6;
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: 0;
}

.contact-section p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 247, 230, 0.88);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: var(--green-950);
  background: rgba(255, 247, 230, 0.92);
  border: 1px solid rgba(255, 247, 230, 0.62);
  border-radius: var(--radius);
  transition: transform 160ms ease, background 160ms ease;
}

.contact-line:hover {
  transform: translateY(-1px);
  background: #fff;
}

.contact-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-line strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: rgba(255, 247, 230, 0.76);
  background: var(--green-950);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  #products,
  #factory,
  #contact {
    scroll-margin-top: 128px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 76svh;
  }

  .quick-facts,
  .product-grid,
  .intro-grid,
  .factory-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .header-call {
    padding: 8px 12px;
  }

  .hero {
    min-height: 74svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 29, 18, 0.9), rgba(7, 29, 18, 0.64)),
      linear-gradient(180deg, rgba(7, 29, 18, 0.1), rgba(7, 29, 18, 0.34));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 42px 0 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-tagline {
    font-size: clamp(23px, 7vw, 31px);
  }

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

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 390px;
  }

  .spec-list,
  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 460px) {
  .main-nav {
    font-size: 12px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 16px;
  }

  .section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }
}
