:root {
  --forest: #1d4b39;
  --moss: #7d9636;
  --gold: #b5884a;
  --ink: #303833;
  --muted: #5e655f;
  --paper: #fcfbf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #e7e5df; }
body {
  margin: 0;
  color: var(--ink);
  background: #e7e5df;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-frame {
  width: min(100%, 1440px);
  min-height: 100vh;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(74, 76, 72, .35);
}
.page-container { width: min(calc(100% - 140px), 1120px); margin-inline: auto; }

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(40px, 5.2vw, 76px);
  background: linear-gradient(180deg, rgba(252,251,248,.6), rgba(252,251,248,.1) 76%, transparent);
}
.brand { display: flex; align-items: center; gap: 17px; transition: opacity .25s ease, transform .25s ease; }
.brand:hover { opacity: .82; transform: translateY(-1px); }
.brand > img { width: 57px; height: 72px; object-fit: contain; mix-blend-mode: multiply; }
.brand-copy { display: flex; flex-direction: column; gap: 6px; }
.brand-copy strong {
  color: #1d211e;
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.1;
}
.brand-copy small { color: #303632; font-family: serif; font-size: 16px; letter-spacing: .08em; }
.desktop-nav { display: flex; align-items: center; gap: 39px; font-size: 15px; letter-spacing: .08em; }
.desktop-nav-item { position: relative; }
.desktop-nav-link { position: relative; display: block; padding: 18px 0; transition: color .25s ease; }
.desktop-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.desktop-nav-link:hover, .desktop-nav-link:focus-visible { color: var(--forest); }
.desktop-nav-link:hover::after, .desktop-nav-link:focus-visible::after, .desktop-nav-item:focus-within > .desktop-nav-link::after { transform: scaleX(1); }
.desktop-submenu {
  position: absolute;
  z-index: 5;
  top: calc(100% - 5px);
  left: 50%;
  display: grid;
  width: 156px;
  gap: 4px;
  padding: 9px;
  border: 1px solid rgba(38, 75, 58, .12);
  border-radius: 13px;
  background: rgba(252,251,248,.98);
  box-shadow: 0 16px 34px rgba(30,44,35,.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity .2s ease, transform .2s ease;
}
.desktop-submenu a { padding: 11px 13px; border-radius: 8px; color: #31473d; white-space: nowrap; transition: color .2s ease, background .2s ease, transform .2s ease; }
.desktop-submenu a:hover, .desktop-submenu a:focus-visible { color: var(--forest); background: #edf1ec; transform: translateX(2px); outline: none; }
.desktop-about-menu:hover .desktop-submenu, .desktop-about-menu:focus-within .desktop-submenu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.language-button {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #222;
  background: #f2f1ee;
  box-shadow: 0 8px 20px rgba(33, 40, 35, .08);
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.language-button:hover { color: #fff; background: var(--forest); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(29,75,57,.2); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; height: 680px; isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 53% 45%; filter: saturate(1.04) contrast(1.025); transform: translateY(20px) scale(1.25); transform-origin: right center; }
.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(252,251,248,.08) 0%, transparent 56%, rgba(252,251,248,.3) 76%, rgba(252,251,248,.88) 93%, #fcfbf8 100%),
    linear-gradient(90deg, rgba(251,250,247,.56) 0%, rgba(251,250,247,.45) 18%, rgba(251,250,247,.26) 34%, rgba(251,250,247,.06) 52%, transparent 67%);
}
.hero-content { width: min(calc(100% - 160px), 1120px); margin-inline: auto; padding-top: 158px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; color: #526f2d; font-family: serif; font-size: 20px; letter-spacing: .15em; }
.eyebrow img { width: 20px; height: 20px; filter: invert(50%) sepia(25%) saturate(900%) hue-rotate(43deg); transform: rotate(-18deg); }
.hero h1 {
  margin: 0;
  color: #153f30;
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.34;
  white-space: pre-line;
}
.hero-description { margin: 19px 0 0; color: #5d635f; font-size: 15px; letter-spacing: .04em; line-height: 1.85; white-space: pre-line; }
.hero blockquote { margin: 27px 0 0; padding-left: 19px; border-left: 1px solid #5a8a63; color: #9b6630; font-family: serif; }
.hero blockquote p { margin: 0; font-size: 15px; letter-spacing: .05em; line-height: 1.9; white-space: pre-line; }
.hero blockquote cite { display: block; margin-top: 4px; font-size: 15px; font-style: normal; letter-spacing: .05em; }
.hero-curve {
  position: absolute;
  z-index: 1;
  display: none;
}
.content-surface { position: relative; background: var(--paper); }

/* Shared */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.section-heading { display: flex; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.section-heading h2 { margin: 0; color: #213d32; font-family: "Noto Serif TC", "Songti TC", serif; font-size: 26px; font-weight: 600; letter-spacing: .16em; line-height: 1.3; }
.section-heading p { margin: 8px 0 0; color: #70756f; font-size: 14px; letter-spacing: .09em; }
.heading-leaf { width: 20px; height: 20px; opacity: .75; filter: invert(51%) sepia(43%) saturate(660%) hue-rotate(38deg); }
.heading-leaf-left { transform: rotate(-62deg); }
.heading-leaf-right { transform: scaleX(-1) rotate(-62deg); }
.heading-rule { width: 49px; height: 1px; background: #d7d6d0; }

/* Explanation */
.explanation {
  position: relative;
  z-index: 3;
  margin-top: -112px;
  padding: 31px 30px 30px;
  border: 1px solid rgba(234,225,211,.72);
  border-radius: 17px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(53,67,57,.09);
  backdrop-filter: blur(9px);
}
.explanation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.explanation-card {
  display: flex;
  min-height: 158px;
  align-items: center;
  padding: 26px 25px;
  border: 1px solid #eadfce;
  border-radius: 11px;
  background: rgba(255,255,255,.43);
}
.explanation-card p { margin: 0 0 0 23px; color: #525a55; font-size: 17px; letter-spacing: .035em; line-height: 1.95; white-space: pre-line; }
.icon-orb { display: inline-grid; flex: 0 0 auto; width: 74px; height: 74px; place-items: center; border-radius: 999px; background: #eef0e7; }
.icon-orb img { width: 35px; height: 35px; }
.icon-orb-forest img { filter: invert(24%) sepia(17%) saturate(1380%) hue-rotate(103deg); }
.icon-orb-moss { background: #eef0e2; }
.icon-orb-moss img { filter: invert(56%) sepia(29%) saturate(984%) hue-rotate(35deg); }
.icon-orb-gold { background: #f5ead7; }
.icon-orb-gold img { filter: invert(56%) sepia(40%) saturate(685%) hue-rotate(357deg); }
.icon-orb-gray { background: #eeeeeb; }
.icon-orb-gray img { filter: invert(34%) sepia(9%) saturate(592%) hue-rotate(98deg); }

/* Methods */
.methods { padding-top: 37px; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
.method-card {
  position: relative;
  display: flex;
  min-height: 257px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 20px 19px 22px;
  border: 1px solid #ebe9e3;
  border-radius: 11px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 10px 28px rgba(52,71,57,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.method-card:hover { transform: translateY(-5px); border-color: #d7d9cc; box-shadow: 0 17px 35px rgba(52,71,57,.11); }
.method-card .icon-orb { width: 68px; height: 68px; }
.method-card .icon-orb img { width: 32px; height: 32px; }
.method-card h3 { margin: 15px 0 8px; color: #214539; font-family: serif; font-size: 21px; font-weight: 600; letter-spacing: .1em; }
.method-card > p { min-height: 48px; margin: 0; color: #656b66; font-size: 14px; line-height: 1.75; text-align: center; white-space: pre-line; }
.give-button {
  display: inline-flex;
  min-width: 142px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: auto;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-family: serif;
  font-size: 15px;
  letter-spacing: .09em;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.give-button img { width: 14px; height: 14px; filter: invert(1); transition: transform .25s ease; }
.give-button:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 18px rgba(29,75,57,.22); }
.give-button:hover img { transform: translateX(4px); }
.give-button-moss { background: linear-gradient(90deg, #849629, #a0a52b); }
.give-button-gold { background: linear-gradient(90deg, #a9783a, #ba9258); }

/* Payment */
.payment-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 16px; padding-top: 24px; }
.payment-card { min-height: 240px; padding: 20px 20px 17px; border: 1px solid #ebe8e1; border-radius: 11px; background: rgba(255,255,255,.7); box-shadow: 0 8px 25px rgba(52,71,57,.035); }
.payment-card h2 { display: flex; align-items: center; gap: 13px; margin: 0 0 13px; color: #203f33; font-family: serif; font-size: 21px; letter-spacing: .11em; }
.payment-card h2 img { width: 23px; height: 23px; filter: invert(23%) sepia(13%) saturate(1450%) hue-rotate(104deg); }
.bank-details { margin: 0; }
.bank-details > div { display: grid; grid-template-columns: 116px 1fr; min-height: 32px; align-items: center; border-top: 1px solid #e6e3dc; font-size: 14px; }
.bank-details dt { padding-left: 12px; }
.bank-details dd { margin: 0; color: #515a55; }
.transfer-note { display: flex; align-items: center; gap: 15px; margin: 14px 0 0; padding: 10px 13px; border-radius: 7px; color: #506156; background: linear-gradient(90deg,#ecf0e9,#f2f2eb); font-size: 13px; line-height: 1.65; }
.transfer-note span, .qr-copy > p { white-space: pre-line; }
.transfer-note img { width: 24px; height: 24px; flex: 0 0 auto; filter: invert(36%) sepia(18%) saturate(940%) hue-rotate(102deg); }
.online-content { display: grid; width: fit-content; grid-template-columns: 111px max-content; align-items: center; justify-content: center; gap: 28px; margin: 8px auto 0; }
.qr-code { width: 111px; height: 111px; object-fit: cover; }
.qr-copy { color: #5c625e; font-size: 13px; line-height: 1.85; }
.qr-copy p { margin: 0 0 11px; }
.qr-copy .give-button { min-width: 117px; height: 35px; margin: 0; font-size: 13px; }

.footer { display: flex; height: 72px; align-items: center; justify-content: center; gap: 17px; color: #405c50; background: var(--paper); }
.footer > img { width: 23px; height: 23px; opacity: .85; filter: invert(34%) sepia(13%) saturate(830%) hue-rotate(103deg); }
.footer p { margin: 0; font-family: serif; font-size: 17px; letter-spacing: .05em; }
.footer span { width: 162px; height: 1px; margin-left: 6px; background: #e3e1dc; }

@media (max-width: 900px) {
  .page-container { width: calc(100% - 70px); }
  .navbar { height: 110px; padding-inline: 35px; }
  .brand > img { width: 60px; height: 74px; }
  .brand-copy strong { font-size: 24px; }
  .brand-copy small { font-size: 16px; }
  .desktop-nav { gap: 34px; font-size: 15px; }
  .hero { height: 720px; }
  .hero-content { width: calc(100% - 132px); padding-top: 170px; }
  .hero-image { object-position: 62% 50%; }
  .hero-image { transform: scale(1.18); }
  .hero-wash {
    background:
      linear-gradient(180deg, rgba(252,251,248,.08) 0%, transparent 55%, rgba(252,251,248,.34) 75%, rgba(252,251,248,.9) 94%, #fcfbf8 100%),
      linear-gradient(90deg,rgba(251,250,247,.76) 0%,rgba(251,250,247,.62) 28%,rgba(251,250,247,.34) 50%,rgba(251,250,247,.04) 80%);
  }
  .hero h1 { font-size: 48px; }
  .hero-description { font-size: 15px; line-height: 2.05; }
  .hero-curve { display: block; right: -8%; bottom: -38px; left: -8%; height: 66px; border-radius: 50% 50% 0 0 / 48% 48% 0 0; background: var(--paper); }
  .explanation {
    width: min(calc(100% - 70px), 642px);
    margin-top: -28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .explanation-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
  .explanation-card { min-height: 140px; padding: 22px 26px; }
  .explanation-card p { margin-left: 28px; font-size: 18px; line-height: 1.9; }
  .icon-orb { width: 76px; height: 76px; }
  .methods { width: calc(100% - 70px); padding-top: 32px; }
  .method-grid { grid-template-columns: repeat(4,1fr); gap: 22px; }
  .method-card { min-height: 270px; padding: 19px 10px 20px; }
  .method-card .icon-orb { width: 62px; height: 62px; }
  .method-card h3 { font-size: 19px; }
  .method-card > p { font-size: 13px; }
  .method-card .give-button { min-width: 136px; }
  .payment-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .payment-card { min-height: 240px; }
  .online-content { grid-template-columns: 112px max-content; }
  .footer { margin-top: 8px; }
}

@media (max-width: 640px) {
  .site-frame { box-shadow: none; }
  .page-container { width: calc(100% - 36px); }
  .navbar { height: 82px; align-items: center; gap: 10px; padding: 0 18px; }
  .brand { min-width: 0; flex: 1 1 auto; gap: 9px; }
  .brand > img { width: 43px; height: 53px; }
  .brand-copy { min-width: 0; flex: 1 1 auto; gap: 3px; }
  .brand-copy strong,
  .brand-copy small {
    display: block;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    -webkit-line-clamp: unset;
  }
  .brand-copy strong { font-size: 12px; letter-spacing: .03em; line-height: 1.3; }
  .brand-copy small { font-size: 10px; letter-spacing: 0; line-height: 1.3; }
  .desktop-nav { display: none; }
  .mobile-nav { position: static; display: flex; flex: 0 0 auto; align-items: center; gap: 5px; margin-left: auto; }
  .mobile-nav > a, .mobile-nav > button, .mobile-about-toggle { min-width: 0; padding: 9px 10px; border: 0; border-radius: 999px; color: #244738; background: rgba(239,242,236,.9); text-align: center; white-space: nowrap; box-shadow: 0 5px 14px rgba(30,44,35,.06); transition: color .2s ease, background .2s ease, transform .2s ease; }
  .mobile-nav > a:hover, .mobile-nav > button:hover, .mobile-about-toggle:hover { color: #fff; background: var(--forest); transform: translateY(-1px); }
  .mobile-about-group { position: relative; min-width: 0; }
  .mobile-about-toggle { display: flex; width: 100%; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
  .mobile-about-chevron { width: 15px; height: 15px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
  .mobile-about-toggle[aria-expanded="true"] .mobile-about-chevron { transform: rotate(180deg); }
  .mobile-about-submenu { position: absolute; z-index: 10; top: calc(100% + 9px); left: 0; display: grid; width: 166px; max-height: 0; gap: 3px; overflow: hidden; border: 0 solid rgba(38,75,58,.12); border-radius: 12px; background: rgba(252,251,248,.98); box-shadow: 0 15px 30px rgba(30,44,35,.13); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: max-height .25s ease, opacity .2s ease, padding .25s ease, transform .2s ease, border-width .2s ease; }
  .mobile-about-submenu.is-open { max-height: 120px; padding: 7px; border-width: 1px; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-about-submenu a { padding: 10px 12px; border-radius: 8px; color: #52645b; font-size: 14px; text-align: left; white-space: nowrap; }
  .mobile-about-submenu a:hover { background: #edf1ec; }
  .hero { height: 700px; }
  .hero-image { object-position: 70% 50%; }
  .hero-image { transform: scale(1.08); transform-origin: center bottom; }
  .hero-wash {
    background:
      linear-gradient(180deg, rgba(251,250,247,.9) 0%, rgba(251,250,247,.72) 42%, rgba(251,250,247,.08) 66%, rgba(251,250,247,.38) 81%, rgba(252,251,248,.94) 95%, #fcfbf8 100%),
      linear-gradient(90deg, rgba(251,250,247,.72), rgba(251,250,247,.14) 82%);
  }
  .hero-content { width: calc(100% - 42px); padding-top: 122px; }
  .eyebrow { margin-bottom: 13px; font-size: 16px; }
  .hero h1 { font-size: clamp(34px,10.5vw,45px); line-height: 1.38; }
  .hero-description { margin-top: 16px; font-size: 15px; line-height: 1.8; }
  .desktop-break { display: none; }
  .hero blockquote { margin-top: 20px; padding-left: 14px; }
  .hero blockquote p, .hero blockquote cite { font-size: 15px; }
  .explanation { width: calc(100% - 24px); margin-top: -76px; padding: 25px 14px 16px; border-radius: 15px; }
  .section-heading { gap: 10px; }
  .section-heading h2 { font-size: 23px; }
  .heading-rule { width: 26px; }
  .heading-leaf { width: 17px; height: 17px; }
  .explanation-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 15px; }
  .explanation-card { min-height: 144px; padding: 20px 16px; }
  .explanation-card .icon-orb { width: 64px; height: 64px; }
  .explanation-card .icon-orb img { width: 31px; height: 31px; }
  .explanation-card p { flex: 1 1 auto; min-width: 0; margin-left: 12px; font-size: 15px; letter-spacing: .02em; line-height: 1.85; white-space: normal; text-wrap: pretty; }
  .explanation-card p br { display: none; }
  .methods { padding-top: 32px; }
  .section-heading p { font-size: 12px; }
  .method-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .method-card {
    min-height: 218px;
    padding: 16px 10px 17px;
    background:
      radial-gradient(circle at 100% 0, rgba(123,151,64,.09) 0 42px, transparent 43px),
      rgba(255,255,255,.8);
  }
  .method-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 52px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #d3c395, #85a641);
    content: "";
    transform: translateX(-50%);
  }
  .method-card .icon-orb { width: 59px; height: 59px; }
  .method-card h3 { margin: 12px 0 5px; font-size: 20px; }
  .method-card > p { min-height: 0; font-size: 14px; line-height: 1.65; }
  .method-card .give-button { min-width: 134px; height: 37px; margin-top: 12px; font-size: 15px; }
  .payment-grid { grid-template-columns: 1fr; padding-top: 20px; gap: 16px; }
  .payment-card { min-height: 0; padding: 22px 20px; }
  .payment-card h2 { font-size: 19px; }
  .bank-details > div { grid-template-columns: 96px 1fr; padding: 9px 0; font-size: 13px; }
  .bank-details dt { padding-left: 5px; }
  .transfer-note { padding: 12px 14px; font-size: 12px; }
  .online-content { grid-template-columns: 120px max-content; gap: 22px; }
  .qr-code { width: 120px; height: 120px; }
  .footer { height: auto; min-height: 82px; padding: 22px 18px; gap: 12px; text-align: center; }
  .footer p { font-size: 14px; }
  .footer span { display: none; }
}

@media (max-width: 480px) {
  .navbar { gap: 6px; padding-inline: 10px; }
  .brand { gap: 6px; }
  .brand > img { width: 36px; height: 45px; }
  .brand-copy strong { font-size: 11px; letter-spacing: .02em; }
  .brand-copy small { font-size: 9px; letter-spacing: 0; }
  .mobile-nav { gap: 3px; font-size: 11px; }
  .mobile-nav > a, .mobile-nav > button, .mobile-about-toggle { padding: 8px 7px; }
  .mobile-about-toggle { gap: 3px; }
  .mobile-about-chevron { width: 12px; height: 12px; }
}

@media (max-width: 350px) {
  .navbar { padding-inline: 8px; }
  .brand > img { width: 30px; height: 38px; }
  .brand-copy strong { font-size: 10px; }
  .brand-copy small { display: block; font-size: 8px; }
  .mobile-nav { font-size: 10px; }
  .mobile-nav > a, .mobile-nav > button, .mobile-about-toggle { padding-inline: 6px; }
}

@media (max-width: 390px) {
  .explanation-card { align-items: center; flex-direction: column; min-height: 0; gap: 8px; padding: 16px; }
  .explanation-card p { width: 100%; margin-left: 0; text-align: center; line-height: 1.7; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 0; padding: 15px 16px 16px; }
  .online-content { width: 100%; grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

/* Large desktop: expand with the browser instead of freezing the entire page
   at 1440px. Content remains capped for readability on ultra-wide monitors. */
@media (min-width: 1441px) {
  html,
  body { background: var(--paper); }

  .site-frame {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .page-container { width: min(86vw, 1600px); }

  .navbar {
    height: 126px;
    padding-inline: clamp(76px, 6vw, 128px);
  }

  .brand { gap: 20px; }
  .brand > img { width: 66px; height: 84px; }
  .brand-copy strong { font-size: clamp(25px, 1.5vw, 29px); }
  .brand-copy small { font-size: clamp(17px, 1vw, 19px); }
  .desktop-nav { gap: clamp(38px, 3vw, 58px); font-size: 17px; }
  .language-button { width: 54px; height: 54px; font-size: 17px; }

  .hero { height: 760px; }
  .hero-content {
    width: min(82vw, 1520px);
    padding-top: 188px;
  }
  .eyebrow { font-size: 23px; }
  .eyebrow img { width: 23px; height: 23px; }
  .hero h1 { font-size: clamp(62px, 3.8vw, 72px); }
  .hero-description { margin-top: 23px; font-size: 18px; }
  .hero blockquote { margin-top: 31px; }
  .hero blockquote p,
  .hero blockquote cite { font-size: 17px; }

  .explanation {
    margin-top: -124px;
    padding: 38px 38px 36px;
    border-radius: 20px;
  }
  .section-heading h2 { font-size: 30px; }
  .heading-leaf { width: 23px; height: 23px; }
  .explanation-grid { gap: 24px; margin-top: 23px; }
  .explanation-card { min-height: 178px; padding: 30px 32px; }
  .explanation-card p { font-size: 19px; }
  .icon-orb { width: 82px; height: 82px; }
  .icon-orb img { width: 39px; height: 39px; }

  .methods { padding-top: 46px; }
  .section-heading p { font-size: 16px; }
  .method-grid { gap: 22px; margin-top: 20px; }
  .method-card { min-height: 286px; padding: 25px 20px 26px; }
  .method-card .icon-orb { width: 76px; height: 76px; }
  .method-card .icon-orb img { width: 36px; height: 36px; }
  .method-card h3 { font-size: 23px; }
  .method-card > p { font-size: 16px; }
  .method-card .give-button { min-width: 154px; height: 40px; font-size: 16px; }

  .payment-grid { gap: 22px; padding-top: 31px; }
  .payment-card { min-height: 270px; padding: 25px 27px 22px; }
  .payment-card h2 { font-size: 23px; }
  .bank-details > div { min-height: 38px; font-size: 16px; }
  .transfer-note { font-size: 14px; }
  .qr-code { width: 130px; height: 130px; }
  .qr-copy { font-size: 16px; }
  .footer { min-height: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
