/* 皇朝娛樂 — 與本站 Next.js 版一致的樣式（無刪減） */
:root {
  --gow-header-gradient: linear-gradient(180deg, rgb(232, 232, 234) 0%, rgb(200, 200, 204) 100%);
  --gow-nav-active-gradient: linear-gradient(135deg, rgb(74, 144, 226) 0%, rgb(30, 90, 168) 100%);
  --gow-features-gradient: linear-gradient(340deg, rgb(255, 185, 229) 22.345%, rgb(236, 248, 114) 51.004%, rgb(190, 224, 230) 76.8677%);
  --gow-text-muted: rgb(96, 96, 96);
  --gow-cta-bg: rgb(40, 38, 38);
  --gow-page-max: 1425px;
  --gow-content: 980px;
  --gow-blog-inner: 940px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.gow-shell { display: flex; min-height: 100dvh; flex-direction: column; background: #fff; }
.gow-main { flex: 1; }
.gow-page { width: 100%; max-width: var(--gow-page-max); margin-left: auto; margin-right: auto; }

/* Header */
.gow-header { position: sticky; top: 0; z-index: 50; width: 100%; background: var(--gow-header-gradient); }
.gow-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 202px; padding: 1rem;
}
@media (min-width: 1024px) {
  .gow-header__inner { gap: 1.5rem; padding: 0 1.5rem; }
}
.gow-logo { display: flex; flex-shrink: 0; align-items: center; gap: 0.75rem; text-decoration: none; }
@media (min-width: 1024px) { .gow-logo { gap: 1rem; } }
.gow-logo img { height: 70px; width: auto; }
@media (min-width: 640px) { .gow-logo img { height: 90px; } }
@media (min-width: 1024px) { .gow-logo img { height: 126px; width: 347px; } }
.gow-logo__text { display: none; font-size: 32px; font-weight: 700; line-height: 1; color: #000; }
@media (min-width: 1024px) { .gow-logo__text { display: inline; font-size: 42px; } }

.gow-nav-toggle {
  display: flex; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 0; border-radius: 8px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
@media (min-width: 1024px) { .gow-nav-toggle { display: none; } }
.gow-nav-toggle svg { width: 24px; height: 24px; }

.gow-nav-desktop { display: none; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 0.5rem; }
@media (min-width: 1024px) { .gow-nav-desktop { display: flex; } }

.gow-nav-link {
  display: inline-block; border-radius: 10px; padding: 10px 16px;
  font-size: 15px; font-weight: 700; line-height: 1.2;
  background: #fff; color: #000; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none; transition: box-shadow .2s;
}
.gow-nav-link:hover { box-shadow: 0 4px 12px rgba(0,0,0,.2); text-decoration: none; }
.gow-nav-link.is-active { background: var(--gow-nav-active-gradient); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
@media (min-width: 640px) { .gow-nav-link { font-size: 16px; } }
@media (min-width: 1024px) { .gow-nav-link { padding: 12px 20px; font-size: 20px; } }

.gow-nav-mobile { display: none; border-top: 1px solid rgba(0,0,0,.1); background: rgb(232,232,234); padding: 1rem; }
.gow-nav-mobile.is-open { display: block; }
@media (min-width: 1024px) { .gow-nav-mobile { display: none !important; } }
.gow-nav-mobile ul { display: flex; flex-direction: column; gap: 0.5rem; }
.gow-nav-mobile .gow-nav-link { display: block; width: 100%; text-align: center; }

/* Hero */
.gow-hero { background: #fff; }
.gow-hero__inner { padding: 1.5rem 1rem 1rem; }
@media (min-width: 640px) { .gow-hero__inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gow-hero__inner { padding: 2rem 0 1rem; } }
.gow-hero__content { max-width: var(--gow-content); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.gow-btn-start {
  display: inline-flex; height: 50px; min-width: 175px; align-items: center; justify-content: center;
  margin-bottom: 1rem; padding: 0 2rem; background: var(--gow-cta-bg); color: #fff;
  font-size: 18px; font-weight: 500; text-decoration: none;
}
.gow-btn-start:hover { text-decoration: none; opacity: .95; }
.gow-hero h1 { margin: 0 0 1rem; width: 100%; font-size: 40px; font-weight: 700; line-height: 1; color: #000; }
@media (min-width: 640px) { .gow-hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .gow-hero h1 { font-size: 56px; } }
.gow-hero__tagline { margin: 0 0 1rem; font-size: 24px; font-weight: 500; color: var(--gow-text-muted); }
@media (min-width: 640px) { .gow-hero__tagline { font-size: 28px; } }
@media (min-width: 1024px) { .gow-hero__tagline { font-size: 32px; } }
.gow-hero__bullets { margin: 0 0 2rem; width: 100%; }
.gow-hero__bullets li { margin-bottom: 0.5rem; color: var(--gow-text-muted); white-space: pre-line; }
.gow-hero__bullets li:first-child { font-size: 20px; }
.gow-hero__bullets li:not(:first-child) { font-size: 23px; }
.gow-hero__person { display: block; width: 100%; max-width: 798px; height: auto; aspect-ratio: 798 / 372; object-fit: cover; }

/* Slideshow */
.gow-slideshow-wrap { max-width: var(--gow-content); margin: 0 auto; padding: 0.5rem 1rem 1.5rem; }
@media (min-width: 640px) { .gow-slideshow-wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gow-slideshow-wrap { padding-left: 0; padding-right: 0; } }
.gow-slideshow { position: relative; width: 100%; max-width: 980px; margin: 0 auto; aspect-ratio: 980 / 442; }
.gow-slideshow__stage { position: relative; width: 100%; height: 100%; overflow: hidden; }
.gow-slideshow__stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.gow-slideshow__stage img.is-active { opacity: 1; pointer-events: auto; }
.gow-slideshow__cta {
  position: absolute; bottom: 1.25rem; left: 60px; z-index: 2;
  display: inline-flex; height: 40px; min-width: 141px; align-items: center; justify-content: center;
  padding: 0 1rem; background: #fff; color: #000; font-size: 16px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); text-decoration: none;
}
.gow-slideshow__arrow {
  position: absolute; top: 50%; z-index: 2; transform: translateY(-50%);
  display: flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; background: rgba(255,255,255,.9); color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.gow-slideshow__arrow:hover { background: #fff; }
.gow-slideshow__arrow--prev { left: 0.5rem; }
.gow-slideshow__arrow--next { right: 0.5rem; }
.gow-slideshow__arrow svg { width: 24px; height: 24px; }

/* Philosophy */
.gow-philosophy { background: #fff; padding: 2.5rem 1rem; }
@media (min-width: 640px) { .gow-philosophy { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gow-philosophy { padding: 3rem 0; } }
.gow-philosophy__inner { max-width: var(--gow-content); margin: 0 auto; text-align: center; }
.gow-philosophy h2 { margin: 0 0 0.5rem; font-size: 32px; font-weight: 700; line-height: 1.25; color: var(--gow-text-muted); }
@media (min-width: 1024px) { .gow-philosophy h2 { font-size: 40px; } }
.gow-rule { width: 48px; height: 3px; margin: 0 auto 2rem; background: #000; }
.gow-philosophy__text { max-width: 635px; margin: 0 auto; text-align: left; font-size: 16px; line-height: 1.6; color: var(--gow-text-muted); }
@media (min-width: 1024px) { .gow-philosophy__text { font-size: 18px; } }
.gow-philosophy__text p { margin: 0 0 1rem; white-space: pre-line; }
.gow-btn-more {
  margin-top: 2rem; border: 1px solid #000; background: transparent; padding: 0.5rem 2rem;
  font-size: 16px; font-weight: 500; color: #000; transition: .2s;
}
.gow-btn-more:hover { background: #000; color: #fff; }

/* Features */
.gow-features { background: var(--gow-features-gradient); padding: 3rem 1rem; }
@media (min-width: 640px) { .gow-features { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gow-features { padding: 4rem 0; } }
.gow-features__inner { max-width: var(--gow-content); margin: 0 auto; text-align: center; }
.gow-features h2 { margin: 0; font-size: 28px; font-weight: 700; color: #000; }
@media (min-width: 1024px) { .gow-features h2 { font-size: 40px; } }
.gow-features__sub { margin: 0 0 2rem; font-size: 20px; color: var(--gow-text-muted); }
@media (min-width: 1024px) { .gow-features__sub { font-size: 26px; font-weight: 700; color: #000; } }
.gow-features__panel { position: relative; max-width: 980px; margin: 0 auto; }
.gow-features__icon {
  display: flex; width: 120px; height: 120px; margin: 0 auto 2rem; align-items: center; justify-content: center;
  border: 2px solid rgba(0,0,0,.1); border-radius: 999px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
@media (min-width: 1024px) { .gow-features__icon { width: 140px; height: 140px; } }
.gow-features__icon svg { width: 56px; height: 56px; }
@media (min-width: 1024px) { .gow-features__icon svg { width: 64px; height: 64px; } }
.gow-features__title { margin: 0 0 0.75rem; font-size: 18px; font-weight: 700; color: #000; }
@media (min-width: 1024px) { .gow-features__title { font-size: 24px; } }
.gow-features__desc { margin: 0 0 1.5rem; padding: 0 0.5rem; font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--gow-text-muted); }
@media (min-width: 1024px) { .gow-features__desc { padding: 0 2rem; font-size: 20px; } }
.gow-features__cta {
  display: inline-flex; height: 40px; min-width: 141px; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; padding: 0 1.5rem; background: #fff; color: #000;
  font-size: 16px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,.15); text-decoration: none;
}
.gow-features__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.gow-features__tab {
  border: 0; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,.7); color: #000;
}
.gow-features__tab.is-active { background: #000; color: #fff; }
@media (min-width: 640px) { .gow-features__tab { font-size: 13px; } }
@media (min-width: 1024px) { .gow-features__tab { padding: 8px 16px; font-size: 14px; } }
.gow-features__arrow {
  display: none; position: absolute; top: 50%; z-index: 2; transform: translateY(-50%);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; background: #fff; color: #000; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
@media (min-width: 640px) { .gow-features__arrow { display: flex; } }
.gow-features__arrow--prev { left: -0.5rem; }
.gow-features__arrow--next { right: -0.5rem; }
@media (min-width: 1024px) {
  .gow-features__arrow--prev { left: -1.5rem; }
  .gow-features__arrow--next { right: -1.5rem; }
}
.gow-features__slide { display: none; }
.gow-features__slide.is-active { display: block; }

/* Home blog list */
.gow-home-blog { background: #fff; padding: 3rem 1rem; }
@media (min-width: 640px) { .gow-home-blog { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .gow-home-blog { padding: 4rem 0; } }
.gow-home-blog__list { max-width: var(--gow-content); margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.gow-home-blog__item {
  display: flex; flex-direction: column; gap: 1.5rem; max-width: var(--gow-blog-inner); margin: 0 auto; text-decoration: none; color: inherit;
}
@media (min-width: 640px) { .gow-home-blog__item { flex-direction: row; align-items: flex-start; } }
.gow-home-blog__thumb { flex-shrink: 0; width: 100%; max-width: 454px; height: auto; aspect-ratio: 454 / 341; overflow: hidden; }
.gow-home-blog__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gow-home-blog__item:hover .gow-home-blog__thumb img { transform: scale(1.02); }
.gow-home-blog__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.gow-home-blog__meta img { width: 47px; height: 47px; border-radius: 999px; object-fit: cover; }
.gow-home-blog__meta span { font-size: 14px; color: var(--gow-text-muted); }
.gow-home-blog__item h2 { margin: 0 0 0.75rem; font-size: 22px; font-weight: 700; line-height: 1.35; color: #000; }
@media (min-width: 1024px) { .gow-home-blog__item h2 { font-size: 26px; } }
.gow-home-blog__item:hover h2 { text-decoration: underline; }
.gow-home-blog__item p {
  margin: 0; font-size: 16px; line-height: 1.6; color: var(--gow-text-muted);
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* Contact footer (home) */
.gow-footer-contact { background: #1a1a1a; color: #fff; }
.gow-footer-contact__inner { max-width: var(--gow-page-max); margin: 0 auto; padding: 3.5rem 1.5rem; }
@media (min-width: 1024px) { .gow-footer-contact__inner { padding-left: 2.5rem; padding-right: 2.5rem; } }
.gow-footer-contact__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .gow-footer-contact__grid { grid-template-columns: repeat(3, 1fr); } }
.gow-footer-contact h2 { margin: 0 0 0.75rem; font-size: 24px; font-weight: 700; }
.gow-footer-contact p, .gow-footer-contact a { font-size: 18px; color: #d1d5db; }
.gow-footer-contact a:hover { color: #fff; }
.gow-footer-contact__social { display: flex; gap: 0.75rem; }
.gow-footer-contact__social img { width: 25px; height: 25px; }
.gow-footer-contact__nav { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.2); padding-top: 2rem; }
.gow-footer-contact__nav ul { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.gow-footer-contact__nav a { font-size: 16px; color: #d1d5db; }
.gow-footer-contact__nav a:hover { color: #fff; }
.gow-footer-contact__partners { margin-top: 2.5rem; width: 100%; overflow: hidden; }
.gow-footer-contact__partners img {
  width: 100%; min-width: 1200px; max-width: none; height: auto;
  transform: translateX(-8%); opacity: .9;
}
@media (min-width: 1024px) { .gow-footer-contact__partners img { min-width: 1840px; } }

/* Simple footer */
.gow-footer-simple { border-top: 1px solid #e5e7eb; background: #fff; padding: 2.5rem 0; }
.gow-footer-simple nav { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .gow-footer-simple nav { padding: 0 2.5rem; } }
.gow-footer-simple ul { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.gow-footer-simple a { font-size: 16px; color: var(--gow-text-muted); }
.gow-footer-simple a:hover { color: #000; }

/* Blog layout */
.gow-blog-layout {
  display: grid; gap: 2.5rem; max-width: 1200px; margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .gow-blog-layout { grid-template-columns: 220px 1fr; padding: 3.5rem 2.5rem; }
}
.gow-blog-sidebar nav ul { border-bottom: 1px solid #e5e7eb; padding-bottom: 1.5rem; }
.gow-blog-sidebar li { margin-bottom: 0.5rem; }
.gow-blog-sidebar a { display: block; font-size: 16px; font-weight: 700; color: var(--gow-text-muted); }
.gow-blog-sidebar a:hover, .gow-blog-sidebar a.is-active { color: #000; }
.gow-blog-sidebar a.is-active { text-decoration: underline; text-underline-offset: 4px; }

.gow-feed article { border-bottom: 1px solid #e5e7eb; padding-bottom: 2.5rem; margin-bottom: 2.5rem; }
.gow-feed article:last-child { border-bottom: 0; margin-bottom: 0; }
.gow-feed h2 { margin: 0 0 0.75rem; font-size: 24px; font-weight: 700; line-height: 1.35; }
@media (min-width: 1024px) { .gow-feed h2 { font-size: 28px; } }
.gow-feed a:hover h2 { text-decoration: underline; }
.gow-feed p { margin: 0 0 0.75rem; font-size: 16px; line-height: 1.6; color: var(--gow-text-muted);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gow-feed__meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 14px; color: var(--gow-text-muted); }

/* Article */
.gow-breadcrumbs { margin-bottom: 1rem; font-size: 14px; color: var(--gow-text-muted); }
.gow-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.gow-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; color: #aaa; }
.gow-article h1 { margin: 0 0 1rem; font-size: 32px; font-weight: 700; line-height: 1.25; }
@media (min-width: 1024px) { .gow-article h1 { font-size: 40px; } }
.gow-article__meta { display: flex; flex-wrap: wrap; gap: 1rem; margin: 0 0 1rem; font-size: 14px; color: var(--gow-text-muted); }
.gow-article__thumb { margin-bottom: 2.5rem; aspect-ratio: 454 / 341; overflow: hidden; border-radius: 2px; }
.gow-article__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gow-article__body { font-size: 16px; line-height: 1.7; color: #111; }
.gow-article__body h2 { margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.gow-article__body h3 { margin: 1.4rem 0 0.5rem; font-size: 1.15rem; }
.gow-article__body p { margin: 0 0 1rem; }
.gow-article__body ul { margin: 0 0 1rem; padding-left: 1.2rem; list-style: disc; }
.gow-article__body li { margin-bottom: 0.35rem; }
.gow-article__body a { font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.gow-article__body a:hover { opacity: .7; }

.gow-keywords { margin: 0 0 2rem; border: 1px solid #e5e7eb; border-radius: 2px; background: #f9fafb; padding: 1rem 1.5rem; }
.gow-keywords--bottom { margin: 2.5rem 0 0; }
.gow-keywords__intro { margin: 0 0 0.75rem; font-size: 14px; line-height: 1.7; color: var(--gow-text-muted); }
.gow-keywords__intro a { font-weight: 700; color: #000; text-decoration: underline; text-underline-offset: 2px; }
.gow-keywords__label { margin: 0 0 0.75rem; font-size: 14px; font-weight: 700; color: #000; }
.gow-keywords__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gow-pill {
  display: inline-flex; border-radius: 999px; border: 1px solid #d1d5db; background: #fff;
  padding: 6px 12px; font-size: 13px; color: var(--gow-text-muted); text-decoration: none;
}
.gow-pill:hover { border-color: #000; color: #000; text-decoration: none; }
.gow-pill--primary { border-color: #000; background: #000; color: #fff; }
.gow-pill--primary:hover { background: rgb(40,38,38); color: #fff; }

.gow-related { border-top: 1px solid #e5e7eb; background: #f9fafb; padding: 3rem 0; }
.gow-related__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .gow-related__inner { padding: 0 2.5rem; } }
.gow-related__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.gow-related__head h2 { margin: 0; font-size: 24px; font-weight: 700; }
.gow-related__grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .gow-related__grid { grid-template-columns: 1fr 1fr; } }
.gow-related__card {
  display: flex; gap: 1rem; padding: 0.75rem; background: #fff; border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08); text-decoration: none; color: inherit;
}
.gow-related__card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); text-decoration: none; }
.gow-related__card-thumb { flex-shrink: 0; width: 96px; height: 96px; overflow: hidden; border-radius: 2px; }
@media (min-width: 640px) { .gow-related__card-thumb { width: 112px; height: 112px; } }
.gow-related__card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gow-related__card:hover .gow-related__card-thumb img { transform: scale(1.03); }
.gow-related__card time { font-size: 12px; color: var(--gow-text-muted); }
.gow-related__card h3 { margin: 0.25rem 0; font-size: 16px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gow-related__card:hover h3 { text-decoration: underline; }
.gow-related__card p { margin: 0; font-size: 14px; color: var(--gow-text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Pages: services / contact */
.gow-page-section { background: #fff; padding: 3rem 1.5rem; }
@media (min-width: 1024px) { .gow-page-section { padding: 4rem 2.5rem; } }
.gow-page-narrow { max-width: 900px; margin: 0 auto; }
.gow-page-contact { max-width: 1000px; margin: 0 auto; }
.gow-page-section h1 { margin: 0 0 2.5rem; text-align: center; font-size: 32px; font-weight: 700; }
@media (min-width: 1024px) { .gow-page-section h1 { font-size: 40px; } }
.gow-promo { margin-bottom: 4rem; }
.gow-promo h2 { margin: 0 0 1.5rem; font-size: 24px; font-weight: 700; }
@media (min-width: 1024px) { .gow-promo h2 { font-size: 28px; } }
.gow-promo__img { margin-bottom: 1.5rem; max-width: 649px; aspect-ratio: 649 / 333; overflow: hidden; }
.gow-promo__img img { width: 100%; height: 100%; object-fit: cover; }
.gow-promo__rules-label { margin: 0 0 1rem; font-size: 16px; font-weight: 700; }
.gow-promo__rules { list-style: none; padding: 0; }
.gow-promo__rules li { margin-bottom: 0.5rem; font-size: 15px; line-height: 1.7; color: var(--gow-text-muted); }

.gow-contact-label { margin: 0 0 0.5rem; font-size: 16px; color: var(--gow-text-muted); }
.gow-page-contact h1 { text-align: left; margin-bottom: 2rem; font-size: 36px; }
@media (min-width: 1024px) { .gow-page-contact h1 { font-size: 48px; } }
.gow-contact-copy { margin-bottom: 3rem; font-size: 16px; line-height: 1.7; color: var(--gow-text-muted); }
@media (min-width: 1024px) { .gow-contact-copy { font-size: 18px; } }
.gow-contact-copy p { margin: 0 0 1rem; }
.gow-contact-details { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .gow-contact-details { grid-template-columns: 1fr 1fr; } }
.gow-contact-details h3 { margin: 0 0 0.5rem; font-size: 18px; font-weight: 700; }
.gow-contact-form label { display: block; margin-bottom: 1rem; }
.gow-contact-form span { display: block; margin-bottom: 0.25rem; font-size: 14px; font-weight: 500; }
.gow-contact-form input, .gow-contact-form textarea {
  width: 100%; border: 1px solid #d1d5db; padding: 0.75rem 1rem; font-size: 16px; outline: none;
}
.gow-contact-form input:focus, .gow-contact-form textarea:focus { border-color: #000; }
.gow-contact-form .gow-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .gow-contact-form .gow-row { grid-template-columns: 1fr 1fr; } }
.gow-contact-form button {
  border: 0; background: #000; color: #fff; padding: 0.75rem 2rem; font-size: 16px; font-weight: 500;
}
.gow-contact-form button:hover { opacity: .9; }

.gow-404 { text-align: center; padding: 4rem 1.5rem; }
.gow-404 h1 { font-size: 32px; margin-bottom: 1rem; }
.gow-share { display: flex; gap: 0.5rem; }
.gow-share button {
  width: 36px; height: 36px; border: 1px solid #e5e7eb; border-radius: 999px; background: #fff;
}
