@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,700;0,800;1,300;1,400&family=Noto+Serif+SC:wght@300;400&family=Long+Cang&display=swap");

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

:root {
  --paper: #f4f8fb;
  --ink: #1a1a1a;
  --mist: #dce8ee;
  --line: #e4eef2;
  --muted: #7690a0;
  --soft: #8ca3b0;
  --accent: #5c8fa8;
  --accent-2: #6e9cb0;
  --pale: #c3d8e2;
  --hover: #4c6c7e;
  --error: #8b2a2a;
  --max: 1280px;
  --pad: clamp(22px, 4.4vw, 56px);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.site-header,
.site-footer,
.section,
.newsletter {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 20px var(--pad);
  gap: 28px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  height: 71px;
  object-fit: contain;
  width: 70px;
}

.brand-word {
  display: block;
  height: 20px;
  object-fit: contain;
  width: auto;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 40px);
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.location-label {
  border-left: 1px solid var(--line);
  color: var(--soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-left: clamp(18px, 3vw, 40px);
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}

.hero-copy {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 6vw, 80px);
}

.hero-video {
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.hero-video video {
  display: block;
  height: 115%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: -5%;
  width: 100%;
}

.eyebrow {
  color: var(--soft);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow.on-dark {
  color: var(--mist);
}

.h1,
.h2,
.h3 {
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  margin: 0;
}

.h1 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero .h1 {
  color: var(--paper);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  max-width: 480px;
}

.h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.chinese {
  color: var(--pale);
  font-family: "Long Cang", "Noto Serif SC", serif;
  font-size: 26px;
  margin: 20px 0 28px;
}

.body,
.section p,
.article-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero .body {
  color: var(--mist);
  margin: 0 0 40px;
  max-width: 420px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  align-items: center;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.18em;
  min-height: 45px;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 220ms, color 220ms, border-color 220ms;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid var(--paper);
  color: var(--paper);
}

.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--paper);
}

.btn-dark {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--hover);
  border-color: var(--hover);
}

.btn-light {
  background: var(--paper);
  border: 1px solid var(--paper);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--line);
  border-color: var(--line);
}

.text-link {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--mist);
  color: var(--accent);
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 0 0 4px;
  text-decoration: none;
  text-transform: uppercase;
}

.statement {
  max-width: 980px;
  padding: 100px var(--pad);
  text-align: center;
}

.statement p {
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.statement span {
  color: var(--accent);
}

.philosophy {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr 1.1fr;
  padding: 88px var(--pad) 110px;
}

.portrait-img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  width: 100%;
}

.ways {
  background: var(--mist);
  padding: 96px var(--pad);
}

.ways-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.way-row {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 88px;
}

.way-row:last-child {
  margin-bottom: 0;
}

.way-row.flip .way-copy {
  order: 2;
}

.way-row.flip .way-media {
  order: 1;
}

.character {
  color: var(--accent-2);
  display: block;
  font-family: "Long Cang", "Noto Serif SC", serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 18px;
}

.italic-title {
  color: var(--ink);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 16px;
}

.ratio-43 {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.mosaic {
  padding: 100px var(--pad);
}

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

.mosaic-grid img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  width: 100%;
}

.mosaic-grid img:nth-child(2) {
  margin-top: 48px;
}

.photo-quote {
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.photo-quote img,
.photo-quote::after {
  inset: 0;
  position: absolute;
}

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

.photo-quote::after {
  background: rgba(28, 22, 15, 0.4);
  content: "";
}

.photo-quote-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 40px;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.photo-quote-content p {
  color: var(--paper);
  font-size: clamp(26px, 3.4vw, 42px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 36px;
  max-width: 640px;
}

.page-title {
  padding: 88px var(--pad) 64px;
}

.offering {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
  padding: 0 var(--pad) 100px;
}

.centered-intro {
  max-width: 900px;
  padding: 88px var(--pad) 0;
  text-align: center;
}

.about-grid {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 64px var(--pad) 96px;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  width: 100%;
}

.signature {
  height: 52px;
  margin-top: 32px;
  width: auto;
}

.values {
  background: var(--ink);
  padding: 88px var(--pad);
}

.values-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.values-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.values-grid h3 {
  color: var(--paper);
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 12px;
}

.values-grid p {
  color: var(--mist);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.journal-card {
  display: block;
  text-decoration: none;
}

.journal-card img {
  aspect-ratio: 21 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.meta {
  color: var(--soft);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 28px 0 16px;
  text-transform: uppercase;
}

.article-body {
  max-width: 760px;
  padding: 0 var(--pad) 96px;
}

.article-body p {
  color: #5a7686;
  font-size: 17px;
  font-weight: 300;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 0 var(--pad) 100px;
}

.detail-row {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.detail-row .eyebrow {
  margin-bottom: 8px;
}

.detail-row a {
  border-bottom: 1px solid var(--mist);
  color: var(--accent);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--soft);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.newsletter input[type="email"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #a8bdc8;
  border-radius: 0;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 17px;
  padding: 12px 0;
  width: 100%;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.newsletter input[type="email"]:focus {
  border-bottom-color: var(--ink);
  outline: none;
}

.newsletter {
  padding: 88px var(--pad);
}

.newsletter-inner {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 460px;
  padding-top: 34px;
  text-align: left;
}

.newsletter-form {
  margin-top: 30px;
}

.newsletter-row {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.newsletter-row input {
  flex: 1 1 220px;
}

.checkbox-row {
  align-items: flex-start;
  color: #5c707c;
  cursor: pointer;
  display: flex;
  font-size: 12px;
  gap: 11px;
  line-height: 1.55;
  margin-top: 22px;
}

.checkbox-row input {
  accent-color: var(--ink);
  margin-top: 2px;
}

.form-error {
  color: var(--error);
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.site-notification {
  background: var(--ink);
  border: 1px solid rgba(244, 248, 251, 0.18);
  bottom: 24px;
  box-shadow: 0 18px 50px rgba(26, 26, 26, 0.18);
  color: var(--paper);
  font-size: 13px;
  left: 50%;
  letter-spacing: 0.02em;
  line-height: 1.45;
  max-width: min(420px, calc(100vw - 44px));
  opacity: 0;
  padding: 15px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
  width: max-content;
  z-index: 20;
}

.site-notification[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-notification[data-tone="error"] {
  background: var(--error);
}

.success-card {
  display: none;
}

.success-card .tea-mark {
  color: #9a5e3f;
  font-family: "Noto Serif SC", serif;
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 22px;
}

.success-card h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 16px;
}

.success-card .closing {
  color: #9a5e3f;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px;
}

.site-footer {
  align-items: flex-end;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 40px var(--pad) 56px;
}

.footer-brand img:first-child {
  height: 47px;
  width: 54px;
}

.footer-brand img:nth-child(2) {
  height: 14px;
  width: auto;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--soft);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  border-bottom: 1px solid var(--mist);
  color: var(--ink);
  font-size: 16px;
  text-decoration: none;
}

.contact-email {
  margin-bottom: 16px;
}

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

  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .location-label {
    border-left: 0;
    padding-left: 0;
  }

  .hero,
  .philosophy,
  .way-row,
  .offering,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 68vh;
  }

  .way-row.flip .way-copy,
  .way-row.flip .way-media {
    order: initial;
  }

  .values-grid,
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-grid img:nth-child(2) {
    margin-top: 0;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    height: 58px;
    width: 57px;
  }

  .brand-word {
    height: 16px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-video {
    min-height: 360px;
  }

  .statement {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .values-grid,
  .mosaic-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-row .btn {
    width: 100%;
  }
}
