:root {
  --ink: #1a1512;
  --ink-soft: #4a4038;
  --cream: #f7f1ea;
  --blush: #e8d5c8;
  --gold: #b8956c;
  --gold-deep: #8c6b45;
  --paper: #fffaf6;
  --line: rgba(26, 21, 18, 0.12);
  --shadow: 0 24px 60px rgba(26, 21, 18, 0.18);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "PingFang HK", "Noto Sans TC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(184, 149, 108, 0.22), transparent 55%),
    linear-gradient(180deg, #efe6dc 0%, var(--cream) 38%, #f4ebe3 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: #fff;
}

.brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}

.brand span {
  opacity: 0.72;
  letter-spacing: 0.28em;
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.header-wa {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero- ken 12s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.28) 0%, rgba(20, 14, 10, 0.18) 35%, rgba(20, 14, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(20, 14, 10, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 0 22px 42px;
  animation: rise 0.9s ease both;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 11vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-primary,
.btn-ghost {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #c4a57a, #9a7548);
  color: #fff;
  box-shadow: 0 12px 30px rgba(154, 117, 72, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 24px;
}

.section-head {
  max-width: 34ch;
  margin-bottom: 28px;
  animation: rise 0.8s ease both;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 46px);
  font-weight: 500;
  line-height: 1.05;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}

.looks {
  display: grid;
  gap: 18px;
}

@media (min-width: 760px) {
  .looks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.look {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: rise 0.9s ease both;
}

.look:nth-child(2) { animation-delay: 0.08s; }
.look:nth-child(3) { animation-delay: 0.16s; }

.perk {
  box-shadow: none;
  background: rgba(255, 250, 246, 0.72);
  border: 1px solid var(--line);
}

.perk .look-meta {
  padding: 20px 18px 22px;
}

.perk h3 {
  color: var(--gold-deep);
}

.look img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.look:hover img {
  transform: scale(1.04);
}

.look-meta {
  padding: 16px 16px 18px;
}

.look-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.look-meta p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.price {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}

.band {
  margin: 48px 16px 0;
  padding: 36px 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(26, 21, 18, 0.92), rgba(74, 52, 36, 0.88)),
    var(--ink);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 500;
}

.band p {
  margin: 12px auto 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-size: 14px;
}

.band .cta-row {
  justify-content: center;
}

.site-footer {
  padding: 36px 20px 48px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 12px;
}

.float-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.float-cta button {
  pointer-events: auto;
  width: min(420px, 100%);
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.35);
  cursor: pointer;
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (min-width: 900px) {
  .hero-content {
    padding: 0 56px 64px;
  }

  .float-cta {
    left: auto;
    right: 28px;
    bottom: 28px;
    width: auto;
  }

  .float-cta button {
    width: auto;
    padding: 0 28px;
  }
}
