:root {
  --bg: #fff4e8;
  --bg-soft: #ffe7d0;
  --surface: #fffaf4;
  --surface-strong: #ffd8b8;
  --text: #2f2a26;
  --muted: #695f57;
  --line: rgba(89, 66, 43, 0.14);
  --accent: #e07a4f;
  --accent-soft: #ffd56a;
  --accent-cool: #7fb8ad;
  --accent-pink: #f28c8c;
  --accent-blue: #5db7d8;
  --dark: #201c19;
  --max-width: 1120px;
  --shadow: 0 24px 60px rgba(133, 88, 39, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 160, 0.7), transparent 24%),
    radial-gradient(circle at top right, rgba(127, 184, 173, 0.2), transparent 26%),
    linear-gradient(180deg, #fff7ef 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 244, 232, 0.86);
  border-bottom: 1px solid rgba(89, 66, 43, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  font-family: "DM Serif Text", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu-cta {
  color: #b6532a;
  font-weight: 700;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.section-splash {
  position: relative;
}

.section-splash::before,
.section-splash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.section-splash::before {
  width: 220px;
  height: 220px;
  top: 3rem;
  right: 8%;
  background: rgba(242, 140, 140, 0.18);
}

.section-splash::after {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: 2rem;
  background: rgba(93, 183, 216, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label.light {
  color: rgba(243, 239, 232, 0.74);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

h3 {
  font-size: 1.1rem;
}

.hero-text,
.hero-meta,
.section-note,
.prose,
.booking-copy,
.price-note {
  color: var(--muted);
}

.hero-text {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-meta {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero-tags span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #4f4338;
  background: linear-gradient(135deg, rgba(255, 213, 106, 0.75), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(224, 122, 79, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-dark {
  background: linear-gradient(135deg, #e07a4f, #bf5a32);
  color: #fff6ef;
}

.button-light {
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.92), rgba(255, 214, 160, 0.55));
  border-color: rgba(224, 122, 79, 0.2);
}

.button-outline {
  border-color: rgba(255, 242, 230, 0.45);
  color: #fff8f1;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.photo-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d7c1a8;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(32, 28, 25, 0.42) 100%),
    linear-gradient(135deg, rgba(255, 213, 106, 0.12), transparent 50%);
}

.photo-card span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.04em;
}

.photo-main {
  inset: 0 4rem 2.5rem 0;
  transform: rotate(-2deg);
}

.photo-detail {
  width: 54%;
  height: 38%;
  right: 0;
  bottom: 0;
  border: 6px solid rgba(255, 250, 244, 0.8);
}

.crop-main {
  object-position: center center;
}

.crop-detail {
  object-position: center center;
}

.section {
  padding: 5rem 0;
}

.section-coral {
  background:
    linear-gradient(180deg, rgba(255, 214, 194, 0.95), rgba(255, 246, 240, 0.58));
}

.section-mint {
  background:
    linear-gradient(180deg, rgba(207, 244, 237, 0.86), rgba(255, 255, 255, 0.24));
}

.section-yellow {
  background:
    linear-gradient(180deg, rgba(255, 227, 114, 0.38), rgba(255, 250, 236, 0.34));
}

.section-ink {
  background:
    linear-gradient(180deg, rgba(46, 40, 37, 0.12), rgba(46, 40, 37, 0.05));
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(255, 229, 186, 0.46), rgba(255, 248, 241, 0.36));
}

.section-grid,
.pricing-grid,
.booking-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.philosophy {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(93, 183, 216, 0.1)),
    linear-gradient(180deg, rgba(255, 247, 239, 0.82), rgba(255, 233, 214, 0.48));
}

.prose p,
.booking-copy p {
  margin: 0 0 1rem;
}

.about-layout,
.booking-layout {
  display: grid;
  gap: 1.25rem;
}

.section-photo-card,
.booking-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(89, 66, 43, 0.12);
  box-shadow: var(--shadow);
}

.section-photo-card img,
.booking-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.section-photo-card::after,
.booking-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(32, 28, 25, 0.42) 100%);
}

.section-photo-card span,
.booking-photo-card span {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff7ef;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.section-heading,
.works-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-note {
  max-width: 28rem;
}

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

.feature-card,
.work-card,
.price-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.6rem;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.feature-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.accent-peach {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 238, 0.88)),
    #fff;
}

.accent-yellow {
  background:
    linear-gradient(180deg, rgba(255, 252, 235, 0.92), rgba(255, 246, 218, 0.9)),
    #fff;
}

.accent-teal {
  background:
    linear-gradient(180deg, rgba(240, 251, 248, 0.94), rgba(228, 246, 240, 0.9)),
    #fff;
}

.feature-card::after,
.review-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -24px;
  top: -24px;
  border-radius: 50%;
  background: rgba(224, 122, 79, 0.08);
}

.accent-yellow::after {
  background: rgba(255, 213, 106, 0.18);
}

.accent-teal::after {
  background: rgba(127, 184, 173, 0.2);
}

.accent-peach::after {
  background: rgba(242, 140, 140, 0.14);
}

.works-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
}

.work-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(112, 74, 34, 0.16);
}

.work-card.tall {
  grid-row: span 2;
}

.work-card.wide {
  grid-column: span 2;
}

.work-image {
  position: relative;
  min-height: 240px;
}

.image-placeholder {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.work-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.crop-work-1 {
  object-position: center center;
}

.crop-work-2 {
  object-position: center center;
}

.crop-work-3 {
  object-position: center center;
}

.crop-work-4 {
  object-position: center center;
}

.work-copy {
  padding: 1.25rem;
}

.work-copy p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.clientele {
  padding-top: 1rem;
}

.reviews {
  padding-top: 2rem;
}

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

.review-card {
  padding: 1.6rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.review-card p {
  margin: 0;
  color: var(--text);
}

.review-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.clientele-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 214, 160, 0.5), rgba(127, 184, 173, 0.18)),
    rgba(255, 255, 255, 0.7);
}

.section-ink .section-label,
.section-ink h2,
.section-ink .clientele-list p {
  color: #2b2623;
}

.clientele-list {
  display: grid;
  gap: 1rem;
}

.clientele-list p {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(47, 42, 38, 0.1);
}

.price-card {
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 106, 0.35), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.price-line {
  margin: 0.6rem 0 0;
  font-family: "DM Serif Text", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.price-note {
  margin: 0.9rem 0 0;
}

.pricing-copy {
  padding-top: 1.2rem;
}

.info-list {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.info-list p {
  margin: 0 0 0.75rem;
}

.booking {
  padding-bottom: 6rem;
}

.booking-panel {
  padding: 2.4rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 106, 0.24), transparent 24%),
    radial-gradient(circle at center right, rgba(93, 183, 216, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(242, 140, 140, 0.18), transparent 32%),
    linear-gradient(135deg, #2d2523, #171616);
  color: #fff7ef;
}

.booking-copy {
  color: rgba(243, 239, 232, 0.82);
}

.booking-photo-card {
  border-color: rgba(255, 255, 255, 0.14);
}

.booking-photo-card img {
  min-height: 320px;
}

.booking-note {
  margin: 1rem 0 0;
  color: rgba(243, 239, 232, 0.6);
  font-size: 0.92rem;
}

.site-footer {
  padding: 0 0 3rem;
  background:
    linear-gradient(180deg, rgba(255, 240, 220, 0.36), rgba(255, 255, 255, 0));
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-copy {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .section-grid,
  .pricing-grid,
  .booking-panel,
  .clientele-panel,
  .feature-grid,
  .works-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .photo-main {
    inset: 0 3rem 2rem 0;
    transform: rotate(-1deg);
  }

  .works-heading,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .work-card.tall,
  .work-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .work-image img {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav,
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    padding: 1rem 0;
  }

  .menu {
    gap: 0.7rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 320px;
  }

  .photo-main {
    inset: 0 2rem 1.6rem 0;
  }

  .photo-detail {
    width: 58%;
    height: 42%;
  }

  .section,
  .booking {
    padding: 4rem 0;
  }

  .clientele-panel,
  .booking-panel,
  .price-card {
    padding: 1.5rem;
  }

  .footer-grid {
    flex-direction: column;
  }
}
