:root {
  --leaf: #5f9f7b;
  --leaf-deep: #2f6f5a;
  --mint: #e9f6ee;
  --cream: #fffdf7;
  --linen: #f7f0e4;
  --ink: #21342d;
  --muted: #69766f;
  --peach: #f4b99d;
  --sky: #d7edf3;
  --line: rgba(33, 52, 45, 0.12);
  --shadow: 0 22px 60px rgba(58, 92, 76, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

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

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta {
  color: var(--leaf-deep);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: calc(100vh - 79px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(36px, 7vw, 88px) clamp(20px, 5vw, 72px) 36px;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.split-section > div > p,
.brand-story p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero-media {
  position: relative;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.trust-strip div {
  padding: 24px;
  background: #ffffff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.product-grid article {
  min-width: 0;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(33, 52, 45, 0.07);
}

.service-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--leaf-deep);
  background: var(--mint);
  border-radius: 50%;
  font-weight: 900;
}

.service-card p,
.product-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-section {
  background: #f7fbf8;
}

.product-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-grid a {
  margin-top: auto;
  color: var(--leaf-deep);
  font-weight: 900;
}

.gecko-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gecko-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(33, 52, 45, 0.08);
}

.card-image {
  min-height: 230px;
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 54%, rgba(47, 111, 90, 0.72) 0 14%, transparent 15%),
    linear-gradient(135deg, var(--mint), #ffffff);
}

.card-image.peach {
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 54%, rgba(198, 117, 84, 0.62) 0 14%, transparent 15%),
    linear-gradient(135deg, #fff5ee, var(--peach));
}

.card-image.sky {
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.95) 0 8%, transparent 9%),
    radial-gradient(circle at 50% 54%, rgba(84, 144, 157, 0.56) 0 14%, transparent 15%),
    linear-gradient(135deg, #ffffff, var(--sky));
}

.card-body {
  padding: 22px;
}

.status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--leaf-deep);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--mint);
}

.care-list {
  display: grid;
  gap: 14px;
}

.care-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 111, 90, 0.14);
  border-radius: 8px;
}

.care-list span {
  color: var(--peach);
  font-weight: 900;
  font-size: 1.25rem;
}

.care-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-story {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background: linear-gradient(120deg, #fffdf7 0%, #eef7f7 52%, #fff3ea 100%);
}

.story-inner {
  max-width: 860px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.contact-panel {
  width: min(100%, 420px);
  justify-content: flex-end;
  margin-top: 0;
}

.contact-panel p {
  width: 100%;
  margin: 4px 0 0;
  text-align: right;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    order: -1;
    border-radius: 20px;
  }

  .trust-strip,
  .service-grid,
  .product-grid,
  .gecko-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    justify-content: flex-start;
  }

  .contact-panel p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .site-nav {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.25rem;
  }

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

  .care-list article {
    grid-template-columns: 1fr;
  }
}
