:root {
  --mint: #dffcf4;
  --mint-soft: #f3fffb;
  --tosca: #21d6c3;
  --tosca-dark: #079f91;
  --leaf: #0f766e;
  --mango: #ffbf47;
  --mango-soft: #fff0bf;
  --ink: #173b38;
  --muted: #5d7773;
  --white: #ffffff;
  --line: rgba(15, 118, 110, 0.14);
  --shadow: 0 22px 60px rgba(7, 159, 145, 0.16);
  --shadow-soft: 0 14px 34px rgba(7, 159, 145, 0.1);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(33, 214, 195, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(255, 191, 71, 0.2), transparent 24rem),
    linear-gradient(180deg, var(--mint-soft), #eafff8);
  color: var(--ink);
  font-family: "Noto Sans Thai", Arial, sans-serif;
  line-height: 1.75;
}

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

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

.product-img {
  background: linear-gradient(160deg, var(--mint), var(--white));
  border-radius: 24px;
  height: 260px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.container {
  margin: 0 auto;
  width: min(100% - 40px, var(--container));
}

.eyebrow {
  color: var(--tosca-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.section-title,
.hero h1,
.page-hero h1 {
  color: var(--ink);
  font-family: "Noto Serif Thai", Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin: 12px 0 16px;
}

.section-copy {
  color: var(--muted);
  max-width: 720px;
}

.nav {
  background: rgba(243, 255, 251, 0.9);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.nav-inner {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--tosca), var(--leaf));
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: white;
  display: inline-flex;
  font-family: "Noto Serif Thai", Georgia, serif;
  font-size: 1.25rem;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--tosca-dark);
}

.nav-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 0 12px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 22px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--tosca), var(--leaf));
  box-shadow: 0 14px 28px rgba(7, 159, 145, 0.24);
  color: white;
}

.button-primary:hover,
.button-light:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--leaf);
}

.hero {
  padding: 82px 0 92px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1.1fr;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.5vw, 6rem);
  margin: 12px 0 22px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(223, 252, 244, 0.84)),
    radial-gradient(circle at 20% 20%, rgba(255, 191, 71, 0.34), transparent 12rem);
  border: 1px solid var(--line);
  border-radius: 40px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.hero-visual::before {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  content: "";
  height: 230px;
  position: absolute;
  right: -60px;
  top: -80px;
  width: 230px;
}

.look-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 36px;
  padding: 18px;
  position: relative;
}

.look-card + .look-card {
  margin-left: 54px;
  margin-top: 22px;
}

.garment {
  align-items: center;
  background: linear-gradient(160deg, var(--mint), var(--white));
  border-radius: 24px;
  display: flex;
  height: 220px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.look-card .product-img {
  height: 220px;
  margin-bottom: 0;
}

.garment::before,
.garment::after {
  content: "";
  position: absolute;
}

.garment::before {
  background: linear-gradient(180deg, var(--tosca), var(--tosca-dark));
  border-radius: 42px 42px 20px 20px;
  height: 130px;
  width: 96px;
}

.garment::after {
  background: var(--mango);
  border-radius: 999px;
  height: 26px;
  top: 42px;
  width: 58px;
}

.garment.dress::before {
  clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%);
  height: 150px;
  width: 130px;
}

.garment.kurta::before {
  background: linear-gradient(180deg, var(--mango), #ff9d2f);
}

.look-card h3,
.product-card h3,
.article-card h3 {
  color: var(--ink);
  font-family: "Noto Serif Thai", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.3;
}

.look-card p,
.product-card p,
.article-card p {
  color: var(--muted);
}

.price {
  color: var(--leaf);
  display: block;
  font-weight: 900;
  margin-top: 12px;
}

.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  padding: 20px;
}

.feature strong {
  color: var(--leaf);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

.head-row {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.category-grid,
.product-grid,
.article-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.category-card,
.product-card,
.article-card,
.panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.category-card {
  padding: 26px;
}

.category-card span {
  color: var(--mango);
  display: block;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-card {
  padding: 16px;
}

.product-card .garment {
  height: 260px;
  margin-bottom: 22px;
}

.product-body {
  padding: 0 10px 12px;
}

.swatches {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.swatch {
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  height: 22px;
  width: 22px;
}

.swatch.tosca { background: var(--tosca); }
.swatch.mango { background: var(--mango); }
.swatch.cream { background: #f6ead8; }
.swatch.leaf { background: var(--leaf); }
.swatch.rose { background: #f6a5b8; }

.story {
  background:
    linear-gradient(135deg, rgba(7, 159, 145, 0.92), rgba(33, 214, 195, 0.72)),
    linear-gradient(180deg, var(--mint), var(--mint-soft));
  border-radius: 38px;
  color: white;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(34px, 6vw, 72px);
}

.story .eyebrow,
.story p {
  color: rgba(255, 255, 255, 0.82);
}

.story .section-title {
  color: white;
}

.story-list {
  display: grid;
  gap: 16px;
}

.story-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 22px;
}

.article-card {
  padding: 28px;
}

.article-card small {
  color: var(--tosca-dark);
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero {
  padding: 80px 0 54px;
}

.page-hero-grid {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 0.8fr;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin: 12px 0 18px;
}

.page-visual {
  background: linear-gradient(135deg, var(--mint), var(--white));
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.split {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.85fr 1.15fr;
}

.panel {
  padding: 34px;
}

.panel h2,
.panel h3 {
  color: var(--ink);
  font-family: "Noto Serif Thai", Georgia, serif;
  line-height: 1.3;
  margin-bottom: 12px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  margin-left: 22px;
}

.info-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.info-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.info-item span {
  color: var(--tosca-dark);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-grid label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.form-grid input,
.form-grid textarea {
  background: var(--mint-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.form-grid textarea {
  min-height: 150px;
}

.cta {
  background: linear-gradient(135deg, var(--leaf), var(--tosca));
  border-radius: 36px;
  color: white;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
}

.cta h2 {
  color: white;
  font-family: "Noto Serif Thai", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.25;
  margin-bottom: 18px;
}

.cta p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 28px;
  max-width: 700px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  padding: 42px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer strong {
  color: white;
  display: block;
  font-family: "Noto Serif Thai", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 980px) {
  .hero-grid,
  .story,
  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .category-grid,
  .product-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    background: var(--mint-soft);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    position: absolute;
    right: 20px;
    top: 70px;
    width: min(310px, calc(100vw - 40px));
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .look-card + .look-card {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .section-title,
  .cta h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-visual {
    min-height: 0;
    padding: 18px;
  }

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

  .garment,
  .product-card .garment,
  .product-img,
  .look-card .product-img {
    height: 210px;
  }

  .feature-grid,
  .category-grid,
  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .head-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
