:root {
  --page-width: 980px;
  --text: #5f5854;
  --brown: #966b4c;
  --line: #ddd5cf;
  --soft: #f7f5f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .025em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.section-width { width: min(var(--page-width), calc(100% - 32px)); margin: 0 auto; }

/* Header: close to the original Wix layout */
.site-header { background: #fff; border-bottom: 1px solid #efefef; }
.header-inner {
  width: min(var(--page-width), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-title {
  flex: 0 0 320px;
  display: block;
  width: 320px;
  line-height: 0;
}
.site-title img {
  display: block;
  width: 100%;
  height: auto;
}
.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .055em;
}
.global-nav a {
  padding: 35px 13px 30px;
  border-bottom: 2px solid transparent;
}
.global-nav a:hover,
.global-nav a.is-current { color: var(--brown); border-bottom-color: var(--brown); }

/* Typography: tuned toward the original Wix site */
h1, h2, h3, h4, p, li, a, span, time {
  font-family: inherit;
}
h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: .045em;
}
strong { font-weight: 400; }

/* Home */
.home-main { padding-top: 0; }
.home-logo-image {
  width: 980px;
  height: auto;
  margin: 0 auto 28px;
}
.main-visual-wrap {
  position: relative;
  width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}
.main-visual {
  width: 980px;
  height: auto;
  margin: 0 auto;
  opacity: .42;
  filter: saturate(.92) brightness(1.08);
}
.main-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.14), rgba(255,255,255,.18));
  pointer-events: none;
}

.message-section {
  padding: 72px 0 78px;
  text-align: center;
}
.message-section h2 {
  margin: 0 0 34px;
  color: var(--brown);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.65;
}
.message-text { font-size: 14px; font-weight: 300; line-height: 2.15; letter-spacing: .04em; }
.message-text p { margin: 0 0 22px; }
.simple-button {
  display: inline-block;
  min-width: 108px;
  margin-top: 12px;
  padding: 8px 18px;
  border: 1px solid #7e746e;
  background: #fff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .05em;
  text-align: center;
}
.simple-button:hover { background: #f5f2ef; }

.news-section {
  padding: 58px 0 70px;
  border-top: 1px solid var(--line);
}
.news-section > h2,
.contact-section > h2,
.partners > h2 {
  margin: 0 0 32px;
  color: var(--brown);
  font-size: 27px;
  font-weight: 300;
  text-align: center;
}
.news-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-item {
  min-height: 250px;
  padding: 34px 44px 36px;
  text-align: center;
}
.news-item + .news-item { border-left: 1px solid var(--line); }
.news-item time { font-size: 12px; color: #817973; }
.news-item h3 { margin: 18px 0 24px; font-size: 16px; font-weight: 400; line-height: 1.8; }
.news-title { margin: 14px 0; line-height: 1.8; }

.anniversary {
  display: grid;
  grid-template-columns: 647px 333px;
  align-items: stretch;
  margin-top: 8px;
  margin-bottom: 72px;
}
.anniversary-image-wrap img {
  width: 647px;
  height: 647px;
  object-fit: cover;
}
.anniversary-copy {
  padding: 70px 34px 30px;
  background: #fff;
  text-align: center;
}
.anniversary-copy h2 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 24px;
  font-weight: 400;
}
.anniversary-copy h3 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 30px;
  font-weight: 400;
}
.anniversary-copy h4 {
  margin: 0 0 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}
.anniversary-copy p { margin: 0 0 12px; font-size: 13px; line-height: 1.8; }

.contact-section {
  padding: 56px 0 60px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.contact-section p { margin: 4px 0; }
.contact-mail { margin-top: 18px !important; }

.partners {
  padding: 55px 0 60px;
  border-top: 1px solid var(--line);
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 44px;
  align-items: center;
  justify-items: center;
}
.partner-logos img {
  width: auto;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}

.site-footer {
  padding: 24px 0 28px;
  border-top: 1px solid #eee;
  color: #817973;
  font-size: 11px;
  text-align: center;
}

/* Subpages */
.subpage-hero {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 34px;
  border-bottom: 1px solid var(--line);
}
.subpage-hero .shell,
.content-section .shell { width: 100%; margin: 0 auto; }
.section-kicker { display: none; }
.subpage-title {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 30px;
  font-weight: 400;
}
.subpage-lead { margin: 0; }
.content-section {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 72px;
}
.narrow { max-width: 780px; }
.about-intro-photo { margin: 0 0 46px; }
.about-intro-photo img { width: 100%; max-height: 520px; object-fit: cover; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.mission-photo { width: 100%; }
.content-card { padding: 0; border: 0; background: #fff; }
.content-card + .content-card { margin-top: 48px; }
.content-card h2 { color: var(--brown); font-size: 24px; font-weight: 400; }
.content-card h3 { font-size: 16px; }
.bullet-list { padding-left: 1.4em; }
.notice { margin-top: 28px; padding: 18px 22px; background: var(--soft); }
.news-list article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.news-list time { color: #817973; font-size: 12px; }
.news-list h2 { margin: 7px 0 0; font-size: 16px; font-weight: 400; }


/* About page: two-column composition matching the original 980px Wix layout */
.about-page {
  padding: 52px 0 78px;
}
.about-heading {
  padding: 0 0 42px;
  text-align: center;
}
.about-heading h1 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .07em;
}
.about-heading p {
  margin: 0;
  color: #615a56;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .05em;
}
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: stretch;
}
.about-photo {
  margin: 0;
  overflow: hidden;
  background: #f7f5f3;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-cat {
  height: 325px;
}
.about-photo-guinea {
  height: 402px;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 44px;
  background: #fff;
  text-align: center;
}
.about-copy h2 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .08em;
}
.about-copy h3 {
  margin: 20px 0 14px;
  color: #655d58;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .045em;
}
.about-copy p {
  margin: 4px 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .025em;
}
.about-emphasis {
  color: #554e4a;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}
.about-vision-row {
  margin-top: 52px;
}
.about-vision-copy {
  padding: 28px 38px;
}
.about-vision-copy p {
  margin: 7px 0;
  line-height: 1.9;
}
.about-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid #ece8e5;
  color: #766d67;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .04em;
}
.about-links a:hover { color: var(--brown); }

@media (max-width: 820px) {
  .about-row { grid-template-columns: 1fr; }
  .about-photo-cat, .about-photo-guinea { height: auto; aspect-ratio: auto; }
  .about-photo img { height: auto; }
  .about-mission-copy { order: 2; }
  .about-vision-copy { order: 1; }
  .about-photo-guinea { order: 2; }
  .about-copy { padding: 38px 28px 42px; }
  .about-vision-row { margin-top: 34px; }
  .header-inner { min-height: auto; padding: 20px 0 10px; display: block; }
  .site-title { width: min(360px, 92%); margin: 0 auto 12px; }
  .global-nav { flex-wrap: wrap; justify-content: center; }
  .global-nav a { padding: 8px 10px; }
  .home-main { padding-top: 0; }
  .home-logo-image { width: 100%; }
  .main-visual-wrap { width: 100%; }
  .anniversary { grid-template-columns: 1fr; }
  .anniversary-image-wrap img { width: 100%; height: auto; aspect-ratio: 1/1; }
  .anniversary-copy { padding: 40px 26px 44px; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .about-page { padding-top: 36px; }
  .about-heading { padding-bottom: 30px; }
  .about-heading h1 { font-size: 25px; }
  .about-heading p { font-size: 12.5px; }
  .about-copy h2 { font-size: 22px; }
  body { font-size: 13px; }
  .section-width,
  .subpage-hero,
  .content-section { width: min(100% - 24px, var(--page-width)); }
  .site-title { width: min(330px, 94%); }
  .global-nav { font-size: 12px; }
  .message-section { padding: 48px 0 54px; }
  .message-section h2 { font-size: 21px; }
  .message-text { font-size: 13px; }
  .news-columns { grid-template-columns: 1fr; }
  .news-item { min-height: 0; padding: 30px 24px; }
  .news-item + .news-item { border-left: 0; border-top: 1px solid var(--line); }
  .partner-logos { grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
  .partner-logos img { max-width: 145px; max-height: 62px; }
}


/* News page / article pages: static HTML equivalent of the Wix News area */
.news-page {
  padding: 54px 0 78px;
}
.news-page > h1 {
  margin: 0 0 32px;
  color: var(--brown);
  font-size: 30px;
  font-weight: 400;
}
.news-list {
  max-width: 780px;
}
.news-list-item {
  padding: 25px 0 30px;
  border-bottom: 1px solid var(--line);
}
.news-list-item time {
  color: #817973;
  font-size: 12px;
}
.news-list-item h2 {
  margin: 7px 0 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
.read-more {
  display: inline-block;
  color: #706762;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article-main {
  min-height: 60vh;
}
.news-article {
  max-width: 780px;
  padding: 48px 0 82px;
}
.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: #706762;
  font-size: 12px;
}
.news-article h1 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.55;
}
.news-article > time {
  display: block;
  margin-bottom: 34px;
  color: #817973;
  font-size: 12px;
}
.article-body {
  margin-top: 32px;
  line-height: 2;
}
.article-body p {
  margin: 0 0 20px;
}
.article-subtitle {
  margin: 34px 0 16px;
  color: var(--brown);
  font-size: 20px;
  font-weight: 400;
}
.article-list {
  margin: 0;
  padding-left: 1.6em;
}
.article-list li {
  margin-bottom: 18px;
}
.table-scroll {
  width: 100%;
  margin: 28px 0 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.award-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.65;
}
.award-table th,
.award-table td {
  padding: 12px 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.award-table th {
  background: var(--soft);
  font-weight: 600;
}
@media (max-width: 620px) {
  .news-page { padding: 40px 0 58px; }
  .news-page > h1 { font-size: 26px; }
  .news-list-item h2 { font-size: 16px; }
  .news-article { width: min(100% - 24px, 780px); padding: 36px 0 62px; }
  .news-article h1 { font-size: 23px; }
  .article-body { font-size: 13px; }
}

/* ---------------------------------------------------------
   JavaScript enhancements
   The site remains fully usable even when JavaScript is off.
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .28s ease, background-color .28s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 5px 20px rgba(68, 51, 41, .08);
}
.header-inner,
.site-title,
.site-title img,
.global-nav a {
  transition: all .28s ease;
}
@media (min-width: 821px) {
  .site-header.is-scrolled .header-inner { min-height: 72px; }
  .site-header.is-scrolled .site-title { width: 282px; flex-basis: 282px; }
  .site-header.is-scrolled .global-nav a { padding-top: 25px; padding-bottom: 22px; }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 5px auto;
  background: #6d615b;
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
}
.global-nav a.is-section-current {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

.js-enabled .js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1);
}
.js-enabled .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .site-header { position: sticky; }
  .header-inner {
    position: relative;
    padding: 13px 0;
  }
  .site-title {
    width: min(330px, calc(100% - 58px));
    margin: 0;
  }
  .js-enabled .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    transform: translateY(-50%);
  }
  .js-enabled .global-nav {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    margin-top: 0;
    border-top: 0 solid #eee;
    transition: max-height .35s ease, opacity .25s ease, margin-top .3s ease, border-top-width .3s ease;
  }
  .js-enabled .global-nav a {
    display: block;
    width: 100%;
    padding: 10px 4px;
    border-bottom: 1px solid #eee;
    text-align: left;
  }
  .js-enabled .global-nav a.is-current,
  .js-enabled .global-nav a.is-section-current {
    border-bottom-color: #eee;
    color: var(--brown);
  }
  .js-enabled .site-header.menu-open .global-nav {
    max-height: 430px;
    margin-top: 12px;
    border-top-width: 1px;
    opacity: 1;
  }
  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

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

/* ============================================================
   Wix fidelity pass v3
   Tuned to the proportions and spacing of animal-smile.org.
   ============================================================ */
:root {
  --page-width: 980px;
  --text: #5f5854;
  --brown: #98694b;
  --brown-dark: #7e3515;
  --line: #e2ddd9;
  --soft: #faf9f8;
}

body {
  color: #5b5551;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .018em;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,.98);
  border-bottom: 0;
  box-shadow: none;
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(80,60,45,.055);
}
.header-inner {
  min-height: 98px;
  padding: 0;
  align-items: center;
  gap: 22px;
}
.site-title {
  flex: 0 0 304px;
  width: 304px;
}
.global-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  font-size: 12px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.global-nav a {
  position: relative;
  padding: 37px 10px 33px;
  border-bottom: 0;
  color: #5f5955;
  transition: color .2s ease;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 0;
  height: 1px;
  background: var(--brown);
  transform: translateX(-50%);
  transition: width .2s ease;
}
.global-nav a:hover,
.global-nav a.is-current,
.global-nav a.is-section-current { color: var(--brown); border-bottom-color: transparent; }
.global-nav a:hover::after,
.global-nav a.is-current::after,
.global-nav a.is-section-current::after { width: calc(100% - 20px); }

/* Home: keep the user-supplied banner at the very top, then the 980x593 dog image. */
.intro.section-width { width: min(var(--page-width), 100%); }
.home-logo-image {
  width: 980px;
  margin: 0 auto;
}
.main-visual-wrap {
  width: 980px;
  height: 593px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}
.main-visual {
  width: 980px;
  height: 593px;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.9) brightness(1.07);
}
.main-visual-wrap::after {
  background: rgba(255,255,255,.12);
}

.message-section {
  max-width: 760px;
  padding: 82px 0 86px;
}
.message-section h2 {
  margin-bottom: 36px;
  color: #8e6247;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .065em;
}
.message-text {
  font-size: 13.5px;
  line-height: 2.2;
  letter-spacing: .035em;
}
.message-text p { margin-bottom: 24px; }
.simple-button {
  min-width: 103px;
  margin-top: 14px;
  padding: 7px 18px;
  border-color: #9a9089;
  font-size: 11px;
  letter-spacing: .025em;
}

.news-section {
  width: min(var(--page-width), calc(100% - 32px));
  padding: 55px 0 74px;
  border-top: 0;
}
.news-section > h2,
.contact-section > h2,
.partners > h2 {
  margin-bottom: 35px;
  color: #8e6247;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: .04em;
}
.news-columns {
  border-top: 1px solid #e5dfdc;
  border-bottom: 1px solid #e5dfdc;
}
.news-item {
  min-height: 270px;
  padding: 42px 52px 38px;
}
.news-item + .news-item { border-left-color: #e5dfdc; }
.news-item h3 { font-size: 15px; font-weight: 300; line-height: 1.9; }
.news-title { font-size: 13px; line-height: 1.85; }

.anniversary {
  width: min(var(--page-width), calc(100% - 32px));
  grid-template-columns: 647px 333px;
  margin-top: 0;
  margin-bottom: 78px;
}
.anniversary-image-wrap,
.anniversary-image-wrap img { width: 647px; height: 647px; }
.anniversary-copy {
  padding: 72px 33px 34px;
}
.anniversary-copy h2 { font-size: 23px; font-weight: 300; }
.anniversary-copy h3 { font-size: 29px; font-weight: 300; }
.anniversary-copy h4 { font-size: 13.5px; font-weight: 400; }
.anniversary-copy p { font-size: 12.5px; line-height: 1.95; }

.contact-section {
  padding: 58px 0 68px;
  border-top: 0;
}
.contact-section p { font-size: 13px; line-height: 1.75; }
.contact-mail a { color: #8e6247; border-bottom: 1px solid rgba(142,98,71,.32); }

.partners {
  padding: 56px 0 72px;
  border-top: 0;
}
.partner-logos {
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 55px;
}
.partner-logos img { max-width: 195px; max-height: 72px; }

.site-footer {
  padding: 23px 0 27px;
  border-top: 1px solid #f0ece9;
  color: #877f79;
  font-size: 10.5px;
  letter-spacing: .015em;
}

/* About: exact two-column visual rhythm used by the live page. */
.about-page { padding: 58px 0 76px; }
.about-heading { padding-bottom: 46px; }
.about-heading h1 {
  color: #8e6247;
  font-size: 29px;
  font-weight: 300;
  letter-spacing: .055em;
}
.about-heading p { font-size: 13px; letter-spacing: .03em; }
.about-row { grid-template-columns: 488px 492px; gap: 0; }
.about-photo-cat { width: 488px; height: 325px; }
.about-photo-guinea { width: 489px; height: 402px; justify-self: end; }
.about-copy { padding: 30px 40px; }
.about-copy h2 { color: #8e6247; font-size: 23px; font-weight: 300; }
.about-copy h3 { font-size: 13px; }
.about-copy p { font-size: 12.5px; line-height: 1.85; }
.about-emphasis { font-size: 13.5px !important; font-weight: 300 !important; }
.about-vision-row { margin-top: 48px; }
.about-links {
  gap: 9px 30px;
  margin-top: 52px;
  padding-top: 26px;
  font-size: 11.5px;
}
.document-text-link { color: #8e6247; text-decoration: underline; text-underline-offset: 3px; }

/* Membership: simple centered page, close to the original Wix treatment. */
.membership-page {
  max-width: 820px;
  padding: 66px 0 82px;
}
.membership-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}
.membership-heading h1 {
  margin: 0 0 26px;
  color: #8e6247;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .08em;
}
.membership-heading p {
  margin: 0;
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: .025em;
}
.membership-fee-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
}
.membership-fee-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #7a2f12;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
}
.membership-fee-table th,
.membership-fee-table td {
  padding: 13px 10px;
  border-right: 1px solid #a44e2c;
  border-bottom: 1px solid #a44e2c;
  vertical-align: middle;
}
.membership-fee-table th:last-child,
.membership-fee-table td:last-child { border-right: 0; }
.membership-fee-table thead th {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #ef4655;
  color: #fff;
  border-right-color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
}
.membership-fee-table thead tr:first-child th {
  font-size: 18px;
}
.membership-fee-table tbody th {
  width: 14%;
  color: #7a2f12;
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
}
.membership-fee-table tbody td {
  background: #fff;
  color: #7a2f12;
  font-size: 18px;
  font-weight: 300;
  white-space: nowrap;
}
.membership-notes {
  max-width: 720px;
  margin: 34px auto 0;
  color: #6f6762;
  font-size: 11.5px;
  line-height: 1.85;
}
.membership-notes p { margin: 5px 0; }
.membership-paused { margin-top: 17px !important; color: #8e6247; }
.membership-docs { margin-top: 35px; text-align: center; }
.document-button {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid #8d837c;
  background: #fff;
  color: #665e59;
  font-size: 11.5px;
  letter-spacing: .035em;
  transition: background-color .2s ease, color .2s ease;
}
.document-button:hover { background: #f7f4f2; color: #8e6247; }

/* News page: reproduce the live "Latest News + Search" hierarchy. */
.news-page { max-width: 820px; padding: 64px 0 82px; }
.news-page > h1 {
  margin: 0 0 28px;
  color: #3f3a37;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .02em;
}
.news-search-wrap { margin: 0 0 28px; }
.news-search {
  position: relative;
  display: block;
  width: 260px;
}
.news-search input {
  width: 100%;
  height: 36px;
  padding: 0 38px 0 12px;
  border: 1px solid #d9d2ce;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #5f5854;
  font: inherit;
  font-size: 12px;
}
.news-search input:focus { border-color: #a98a77; }
.news-search-clear {
  position: absolute;
  top: 50%; right: 6px;
  width: 26px; height: 26px;
  border: 0; background: transparent;
  color: #8c817a; font-size: 17px;
  transform: translateY(-50%);
  cursor: pointer;
}
.news-list { max-width: 780px; }
.news-list-item { padding: 26px 0 31px; }
.news-list-item h2 { font-size: 17px; font-weight: 300; }
.news-list-item.is-filtered-out { display: none; }
.news-empty {
  display: none;
  padding: 30px 0;
  color: #817973;
  font-size: 12px;
}
.news-empty.is-visible { display: block; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Reveal motion is deliberately quiet so the static layout remains Wix-like. */
.js-enabled .js-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.js-enabled .js-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .header-inner { width: min(100% - 28px, var(--page-width)); }
  .site-title { flex-basis: 285px; width: 285px; }
  .global-nav a { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 820px) {
  .header-inner { padding: 14px 0; display: flex; min-height: 76px; }
  .site-title { width: min(330px, calc(100% - 62px)); flex: 0 1 auto; margin: 0; }
  .menu-toggle {
    display: inline-flex;
    width: 38px; height: 38px;
    margin-left: auto;
    padding: 8px;
    border: 0; background: transparent;
    flex-direction: column; justify-content: center; gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: #6c625d; transition: transform .2s, opacity .2s; }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    padding: 7px 18px 15px;
    background: rgba(255,255,255,.99);
    border-top: 1px solid #eee9e6;
    box-shadow: 0 12px 24px rgba(80,60,45,.08);
  }
  .site-header.menu-open .global-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .global-nav a { padding: 10px 12px; text-align: center; }
  .global-nav a::after { display: none; }

  .intro.section-width { width: 100%; }
  .home-logo-image, .main-visual-wrap, .main-visual { width: 100%; }
  .main-visual-wrap, .main-visual { height: auto; }

  .anniversary { grid-template-columns: 1fr; }
  .anniversary-image-wrap, .anniversary-image-wrap img { width: 100%; height: auto; aspect-ratio: 1/1; }

  .about-row { grid-template-columns: 1fr; }
  .about-photo-cat, .about-photo-guinea { width: 100%; height: auto; }
  .about-photo img { height: auto; }
  .about-vision-copy { order: 1; }
  .about-photo-guinea { order: 2; }

  .membership-page { width: min(100% - 30px, 820px); }
}

@media (max-width: 620px) {
  .home-logo-image { margin-bottom: 0; }
  .message-section { padding: 54px 0 58px; }
  .message-section h2 { font-size: 20px; }
  .news-section { padding-top: 46px; }
  .news-item { padding: 30px 22px; }
  .anniversary { width: 100%; }
  .anniversary-copy { padding: 40px 26px 44px; }
  .contact-section, .partners { width: min(100% - 28px, 980px); }

  .membership-page { padding: 48px 0 64px; }
  .membership-heading { margin-bottom: 38px; }
  .membership-heading h1 { font-size: 19px; }
  .membership-heading p { font-size: 12.5px; }

  .news-page { width: min(100% - 28px, 820px); padding-top: 46px; }
  .news-search { width: 100%; }
}

/* Hitori Gothic handwritten-heading overrides */
@font-face {
  font-family: "HitoriGothicWeb";
  src:
    local("ひとりゴシック"),
    local("HitoriGothic"),
    url("assets/hitori-gothic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* Decorative headings only — body copy stays easy to read. */
.message-section h2,
.news-section > h2,
.contact-section > h2,
.partners > h2,
.anniversary-copy h2,
.anniversary-copy h3,
.about-heading h1,
.about-copy h2,
.membership-heading h1,
.membership-fee-table thead th,
.news-page > h1,
.news-article h1,
.article-subtitle,
.subpage-title {
  font-family: "HitoriGothicWeb", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: .07em;
}

/* A little more of the original site's airy handwritten feel. */
.about-heading h1,
.membership-heading h1,
.news-page > h1 {
  letter-spacing: .09em;
}

@media (max-width: 620px) {
  .message-section h2,
  .about-heading h1,
  .membership-heading h1,
  .news-page > h1 {
    letter-spacing: .055em;
  }
}

@media (max-width: 620px) {
  .membership-fee-table { min-width: 700px; font-size: 15px; }
  .membership-fee-table thead th { font-size: 16px; padding: 11px 8px; }
  .membership-fee-table tbody th { font-size: 15px; }
  .membership-fee-table tbody td { font-size: 16px; padding: 12px 8px; }
}


/* Handwritten message block */
.handwritten-message {
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .055em;
}
.handwritten-message p {
  margin: 0 0 28px;
}
.handwritten-message .message-indent {
  display: inline-block;
  padding-left: 2.2em;
}

@media (max-width: 620px) {
  .handwritten-message {
    font-size: 15px;
    line-height: 2.05;
    letter-spacing: .035em;
  }
  .handwritten-message .message-indent {
    padding-left: 1.15em;
  }
}

/* ============================================================
   Original-site color fidelity pass
   Brown tones sampled from the supplied original logo/banner.
   ============================================================ */
:root {
  --text: #6a3114;
  --brown: #966d4d;
  --brown-dark: #6a3114;
  --muted-brown: #8b6f5f;
  --line: #e8ded7;
}

body {
  color: #6a3114;
}

.global-nav a {
  color: #6a3114;
}
.global-nav a:hover,
.global-nav a.is-current,
.global-nav a.is-section-current {
  color: #966d4d;
}
.global-nav a::after {
  background: #966d4d;
}

.message-section h2,
.news-section > h2,
.contact-section > h2,
.partners > h2,
.anniversary-copy h2,
.anniversary-copy h3,
.about-heading h1,
.about-copy h2,
.content-card h2,
.membership-heading h1,
.article-subtitle {
  color: #966d4d;
}

.message-text,
.handwritten-message {
  color: #6a3114;
}

.news-item,
.news-title,
.news-item h3,
.anniversary-copy,
.contact-section,
.about-heading p,
.about-copy,
.about-copy h3,
.about-copy p,
.about-emphasis,
.membership-heading p,
.news-page,
.news-list-item h2,
.news-article,
.article-body {
  color: #6a3114;
}

.news-item time,
.news-list time,
.news-list-item time,
.news-article > time,
.news-empty,
.site-footer,
.membership-notes {
  color: #8b6f5f;
}

.contact-mail a,
.document-text-link,
.membership-paused,
.read-more,
.back-link,
.about-links,
.about-links a:hover {
  color: #966d4d;
}

.simple-button,
.document-button {
  color: #6a3114;
  border-color: #a98a77;
}
.simple-button:hover,
.document-button:hover {
  color: #966d4d;
  background: #fbf8f6;
}

.news-page > h1 {
  color: #6a3114;
}
.news-search input {
  color: #6a3114;
  border-color: #e1d7d0;
}
.news-search input::placeholder {
  color: #9d8374;
}
.news-search-clear {
  color: #9d8374;
}

.site-footer {
  border-top-color: #f1e9e4;
}



/* Message overlay on the dog image */
.main-visual-wrap {
  position: relative;
  width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}
.main-visual {
  width: 980px;
  height: auto;
  margin: 0 auto;
  opacity: .42;
  filter: saturate(.92) brightness(1.08);
}
.main-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.14), rgba(255,255,255,.18));
  pointer-events: none;
}
.main-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 48px 42px;
}
.main-visual-copy {
  width: min(92%, 760px);
  text-align: center;
}
.main-visual-copy h2 {
  margin: 0 0 24px;
  color: #966d4d;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .07em;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.message-overlay-button {
  margin-top: 6px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(1px);
}
.message-section {
  display: none;
}
.handwritten-message {
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: #6a3114;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: .055em;
  text-shadow: 0 1px 0 rgba(255,255,255,.48);
}
.handwritten-message p {
  margin: 0 0 18px;
}
.handwritten-message .message-indent {
  display: inline-block;
  padding-left: 2.1em;
}
@media (max-width: 820px) {
  .main-visual-wrap { width: 100%; }
  .main-visual-overlay {
    position: static;
    inset: auto;
    padding: 26px 22px 28px;
    background: #fff;
  }
  .main-visual-copy {
    width: 100%;
  }
  .main-visual-copy h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .handwritten-message {
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .035em;
    text-shadow: none;
  }
  .handwritten-message .message-indent {
    padding-left: 1.1em;
  }
}


/* ===== Overlay layout fix: keep the copy contained inside the dog image ===== */
.main-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  padding: 0;
}
.main-visual-copy {
  position: absolute;
  left: 52px;
  top: 48px;
  width: 430px;
  max-width: calc(100% - 104px);
  padding: 24px 28px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset;
  backdrop-filter: blur(1px);
}
.main-visual-copy .main-visual-lead,
.main-visual-copy .handwritten-message {
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: .04em;
  color: #6a3114;
  text-align: left;
  text-shadow: none;
}
.main-visual-copy .main-visual-lead {
  margin: 0 0 16px;
}
.main-visual-copy .handwritten-message {
  margin: 0;
}
.main-visual-copy .handwritten-message p {
  margin: 0 0 14px;
}
.main-visual-copy .handwritten-message .message-indent {
  display: inline;
  padding-left: 0;
}
.message-overlay-button {
  margin-top: 6px;
  margin-left: 0;
  background: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
  .main-visual-copy {
    left: 34px;
    top: 34px;
    width: 380px;
    max-width: calc(100% - 68px);
    padding: 18px 20px 14px;
  }
  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    font-size: 13.5px;
    line-height: 1.82;
  }
  .main-visual-copy .main-visual-lead {
    margin-bottom: 12px;
  }
  .main-visual-copy .handwritten-message p {
    margin-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .main-visual-overlay {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
  }
  .main-visual-copy {
    position: static;
    width: 100%;
    max-width: none;
    padding: 26px 22px 22px;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }
  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    font-size: 15px;
    line-height: 1.95;
  }
  .main-visual-copy .main-visual-lead {
    margin-bottom: 16px;
  }
}


/* ===== Overlay fine tuning per latest feedback ===== */
.home-logo-image {
  margin-bottom: 42px !important;
}

.main-visual-wrap {
  position: relative;
  width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.main-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  display: block;
}

.main-visual-copy {
  position: absolute;
  left: 42px;
  top: 20px;
  width: 520px;
  max-width: calc(100% - 170px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.main-visual-copy .main-visual-lead,
.main-visual-copy .handwritten-message {
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.92;
  letter-spacing: .025em;
  color: #6a3114;
  text-align: left;
  text-shadow: 0 1px 2px rgba(255,255,255,.95), 0 0 10px rgba(255,255,255,.7);
}

.main-visual-copy .main-visual-lead {
  margin: 0 0 8px;
}

.main-visual-copy .handwritten-message {
  margin: 0;
}

.main-visual-copy .handwritten-message p {
  margin: 0 0 10px;
}

.main-visual-copy .message-line {
  display: block;
  white-space: nowrap;
}

.main-visual-copy .handwritten-message .message-indent {
  display: block;
  padding-left: 0;
}

.message-overlay-button {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: none;
}

@media (max-width: 980px) {
  .main-visual-copy {
    left: 30px;
    top: 18px;
    width: 470px;
    max-width: calc(100% - 140px);
  }
  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    font-size: 12.8px;
    line-height: 1.82;
  }
  .message-overlay-button {
    right: 28px;
  }
}

@media (max-width: 820px) {
  .home-logo-image {
    margin-bottom: 26px !important;
  }
  .main-visual-overlay {
    position: static;
    inset: auto;
  }
  .main-visual-copy {
    position: static;
    width: 100%;
    max-width: none;
    padding: 22px 20px 18px;
  }
  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    font-size: 15px;
    line-height: 1.95;
    text-shadow: none;
  }
  .main-visual-copy .message-line {
    white-space: normal;
  }
  .message-overlay-button {
    position: static;
    transform: none;
    margin-top: 10px;
    background: #fff;
  }
}



/* ===== Accent headings: Mission / Vision ===== */
.section-accent-title {
  position: relative;
  display: inline-block;
  margin: 0 0 26px !important;
  padding: 5px 18px 7px;
  color: #b43d34 !important;
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif !important;
  font-size: 27px !important;
  font-weight: 400 !important;
  line-height: 1.35;
  letter-spacing: .09em !important;
  background: #fff5f1;
  border-left: 5px solid #ef5b62;
}

.section-accent-title::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: #ef5b62;
}

@media (max-width: 620px) {
  .section-accent-title {
    font-size: 23px !important;
    padding: 4px 14px 6px;
  }
  .section-accent-title::after {
    left: 14px;
    width: 48px;
  }
}



/* ===== Dog hero overlay: left copy / right View more ===== */
@media (min-width: 821px) {
  .main-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    align-items: stretch;
    padding: 0;
  }

  .main-visual-copy {
    position: static;
    display: contents;
  }

  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    grid-column: 1;
    margin-left: 34px;
    margin-right: 8px;
    font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.92;
    letter-spacing: .025em;
    color: #6a3114;
    text-align: left;
    text-shadow:
      0 1px 2px rgba(255,255,255,.98),
      0 0 10px rgba(255,255,255,.82);
  }

  .main-visual-copy .main-visual-lead {
    align-self: start;
    margin-top: 16px;
    margin-bottom: 6px;
  }

  .main-visual-copy .handwritten-message {
    align-self: start;
    margin-top: 72px;
    margin-bottom: 10px;
  }

  .main-visual-copy .handwritten-message p {
    margin: 0 0 13px;
  }

  .main-visual-copy .message-line {
    display: block;
    white-space: nowrap;
  }

  .message-overlay-button {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: static;
    align-self: center;
    justify-self: center;
    transform: none;
    margin: 0;
    min-width: 112px;
    background: rgba(255,255,255,.90);
  }
}

/* Slightly tighter fit on medium desktop/tablet landscape */
@media (min-width: 821px) and (max-width: 980px) {
  .main-visual-overlay {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .main-visual-copy .main-visual-lead,
  .main-visual-copy .handwritten-message {
    margin-left: 24px;
    font-size: 14.5px;
    line-height: 1.84;
  }

  .main-visual-copy .main-visual-lead {
    margin-top: 13px;
  }

  .main-visual-copy .handwritten-message {
    margin-top: 62px;
  }

  .main-visual-copy .handwritten-message p {
    margin-bottom: 10px;
  }
}

/* Mobile: keep readable stacked layout */
@media (max-width: 820px) {
  .main-visual-copy {
    display: block;
  }

  .message-overlay-button {
    display: block;
    width: 120px;
    margin: 16px auto 0;
  }
}




/* ============================================================
   Final home hero layout — close to the original Wix composition
   ============================================================ */
.home-logo-image {
  width: 980px;
  height: auto;
  margin: 0 auto 52px !important;
}

.main-visual-wrap {
  position: relative;
  width: 980px;
  height: 593px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.main-visual {
  display: block;
  width: 980px;
  height: 593px;
  object-fit: cover;
  margin: 0;
  opacity: .40;
  filter: saturate(.88) brightness(1.10);
}

.main-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255,255,255,.09);
}

.main-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 680px 300px;
  width: 100%;
  height: 100%;
  padding: 0;
}

.main-visual-text {
  grid-column: 1;
  min-width: 0;
  padding: 18px 18px 14px 44px;
  display: flex;
  align-items: flex-start;
}

.hero-message {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #6a3114;
  font-family: "HitoriGothicWeb", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .018em;
  text-align: left;
  text-shadow:
    0 1px 1px rgba(255,255,255,.98),
    0 0 8px rgba(255,255,255,.72);
}

.hero-message p,
.hero-message .hero-lead {
  margin: 0 0 14px;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.hero-message .hero-lead {
  margin-bottom: 17px;
}

.hero-message span {
  display: block;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}

.main-visual-action {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.message-overlay-button {
  position: static !important;
  transform: none !important;
  margin: 0 !important;
  min-width: 112px;
  padding: 8px 18px;
  background: rgba(255,255,255,.84);
  color: #6a3114;
  border-color: #a98a77;
  text-align: center;
}

/* Avoid old experimental overlay rules affecting this final version. */
.main-visual-copy {
  position: static;
  width: auto;
  max-width: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 980px) and (min-width: 821px) {
  .main-visual-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 980 / 593;
  }

  .main-visual {
    width: 100%;
    height: 100%;
  }

  .main-visual-overlay {
    grid-template-columns: 69.4% 30.6%;
  }

  .main-visual-text {
    padding: 14px 12px 10px 28px;
  }

  .hero-message {
    font-size: clamp(12.5px, 1.65vw, 16px);
    line-height: 1.68;
  }

  .hero-message p,
  .hero-message .hero-lead {
    margin-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .home-logo-image {
    margin-bottom: 28px !important;
  }

  .main-visual-wrap {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .main-visual {
    width: 100%;
    height: auto;
  }

  .main-visual-overlay {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }

  .main-visual-text {
    padding: 24px 18px 8px;
  }

  .hero-message {
    font-size: 15px;
    line-height: 1.9;
    text-shadow: none;
  }

  .hero-message span {
    white-space: normal;
  }

  .main-visual-action {
    padding: 8px 0 28px;
  }

  .message-overlay-button {
    margin: 0 auto !important;
    background: #fff;
  }
}

.news-event-date {
  margin: 0 0 8px;
  color: #8b6f5f;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .035em;
}



/* ============================================================
   Hero overlay retune:
   - larger text
   - vertically centered text block
   - View more near the dog's cheek
   ============================================================ */
@media (min-width: 821px) {
  .main-visual-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    z-index: 2 !important;
  }

  .main-visual-text {
    position: absolute !important;
    left: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 620px !important;
    max-width: 620px !important;
    min-width: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .hero-message {
    width: 100% !important;
    font-size: 18.5px !important;
    line-height: 1.78 !important;
    letter-spacing: .018em !important;
    text-align: left !important;
  }

  .hero-message p,
  .hero-message .hero-lead {
    margin: 0 0 15px !important;
  }

  .hero-message .hero-lead {
    margin-bottom: 18px !important;
  }

  .main-visual-action {
    position: absolute !important;
    right: 96px !important;
    top: 300px !important;
    transform: translateY(-50%) !important;
    width: 120px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .message-overlay-button {
    min-width: 112px !important;
    margin: 0 !important;
    padding: 8px 18px !important;
    background: rgba(255,255,255,.84) !important;
  }
}

@media (min-width: 821px) and (max-width: 980px) {
  .main-visual-text {
    left: 28px !important;
    width: 58% !important;
    max-width: 58% !important;
  }

  .hero-message {
    font-size: 15.8px !important;
    line-height: 1.72 !important;
  }

  .hero-message p,
  .hero-message .hero-lead {
    margin-bottom: 11px !important;
  }

  .main-visual-action {
    right: 48px !important;
    top: 50% !important;
  }
}

@media (max-width: 820px) {
  .main-visual-text {
    padding: 24px 18px 8px !important;
    transform: none !important;
  }

  .hero-message {
    font-size: 16px !important;
    line-height: 1.9 !important;
  }

  .main-visual-action {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    padding: 8px 0 28px !important;
  }
}


/* 2026 summer meeting report */
.article-feature-figure {
  margin: 0 0 34px;
}
.article-feature-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.news-summary {
  margin: 7px 0 10px;
  color: #6a3114;
  font-size: 13px;
  line-height: 1.8;
}
.article-body strong {
  font-weight: 600;
  color: #966d4d;
}



/* ===== Final button placement: around the dog's cheek center ===== */
@media (min-width: 821px) {
  .main-visual-action {
    position: absolute !important;
    right: 128px !important;
    top: 318px !important;
    transform: translateY(-50%) !important;
    width: 120px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .message-overlay-button {
    margin: 0 !important;
  }
}



/* Keep all personal names on one line */
.person-name,
.person-name-cell {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.award-table th.person-name-cell,
.award-table td.person-name-cell {
  min-width: 7.5em;
}



/* ============================================================
   Unified News / Event / Award presentation
   ============================================================ */
.article-category {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 11px 5px;
  border-radius: 999px;
  background: #f8ece7;
  color: #966d4d;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .07em;
}

.news-article h1 {
  margin-bottom: 10px;
  color: #6a3114;
  font-family: "HitoriGothicWeb", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .055em;
}

.event-info-card {
  margin: 0 0 34px;
  padding: 22px 26px;
  border-top: 2px solid #ef5b62;
  border-bottom: 1px solid #eaded7;
  background: #fffaf8;
}

.event-info-grid {
  margin: 0;
}
.event-info-grid > div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 5px 0;
}
.event-info-grid dt {
  color: #966d4d;
  font-weight: 600;
  white-space: nowrap;
}
.event-info-grid dd {
  margin: 0;
  color: #6a3114;
}

.event-document-links {
  margin-top: 16px;
}
.event-program-link {
  margin: 0;
}

.article-feature-figure {
  margin: 30px 0 34px;
}
.article-feature-figure a {
  display: block;
}
.article-feature-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.article-feature-figure figcaption {
  margin-top: 8px;
  color: #8b6f5f;
  font-size: 11px;
  text-align: center;
  letter-spacing: .03em;
}

.award-list-title {
  margin-top: 34px !important;
}

.award-highlight {
  margin: 0 0 28px;
  padding: 24px 28px 26px;
  border-left: 5px solid #ef5b62;
  background: #fff7f4;
}
.award-highlight-label {
  margin-bottom: 7px;
  color: #966d4d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.award-highlight-name {
  margin-bottom: 6px;
  color: #b43d34;
  font-family: "HitoriGothicWeb", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 25px;
  line-height: 1.45;
  letter-spacing: .06em;
}
.award-highlight-affiliation {
  color: #8b6f5f;
  font-size: 12px;
}
.award-highlight-theme {
  margin-top: 10px;
  color: #6a3114;
  font-size: 15px;
  line-height: 1.8;
}

.award-table {
  border-top: 2px solid #ef5b62;
}
.award-table th {
  background: #f8ece7;
  color: #6a3114;
}
.award-table td.person-name-cell,
.award-table th.person-name-cell {
  white-space: nowrap !important;
  word-break: keep-all !important;
  min-width: 8.5em;
}
.award-table td.person-name-cell {
  color: #b43d34;
  font-weight: 600;
}

.news-list-item {
  padding: 27px 0 30px;
}
.news-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 8px;
}
.news-type {
  display: inline-block;
  padding: 3px 9px 4px;
  border-radius: 999px;
  background: #f8ece7;
  color: #966d4d;
  font-size: 10.5px;
  line-height: 1.4;
  letter-spacing: .055em;
}
.news-date {
  color: #8b6f5f;
  font-size: 11.5px;
}
.news-entry-title {
  margin: 0 0 9px !important;
  color: #6a3114;
  font-family: "HitoriGothicWeb", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: .035em;
}
.news-summary {
  margin: 0 0 9px;
}
.news-recipient-name {
  color: #b43d34;
  font-weight: 600;
}

@media (max-width: 620px) {
  .news-article h1 {
    font-size: 23px;
  }
  .event-info-card {
    padding: 18px 17px;
  }
  .event-info-grid > div {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 7px 0;
  }
  .award-highlight {
    padding: 20px 18px;
  }
  .award-highlight-name {
    font-size: 22px;
  }
  .news-entry-title {
    font-size: 16px !important;
  }
}


/* Unified event / award presentation */
.news-item .news-title,
.news-list-item h2,
.news-article h1 {
  font-variant-numeric: proportional-nums;
}

.unified-award-table th,
.unified-award-table td {
  vertical-align: middle;
}

.unified-award-table td:first-child {
  white-space: nowrap;
  color: #966d4d;
  font-weight: 500;
}

.unified-award-table .person-name-cell {
  white-space: nowrap !important;
  font-weight: 600;
  color: #966d4d;
}


/* Unified event article flow */
.event-opening {
  margin: 0 0 24px;
  line-height: 2;
}

.event-award-intro {
  margin: 34px 0 16px;
  color: #6a3114;
  font-size: 15px;
  line-height: 1.9;
}


/* Article flow without redundant award/meeting subheadings */
.event-award-intro {
  margin-top: 24px;
}


/* Clean News list: date -> title -> Read More only */
.news-list-item > time {
  display: block;
  margin-bottom: 7px;
}
.news-list-item > h2 {
  margin: 0 0 10px;
}
.news-list-item > .read-more {
  margin-top: 0;
}


/* Final event/article cleanup */
.event-document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-photo-link {
  display: inline-block;
}

.event-opening {
  margin: 28px 0 22px;
  line-height: 2;
}

.news-article .back-link + h1 {
  margin-top: 0;
}



/* ============================================================
   Member-company logos — layout matched to the original Wix page
   ============================================================ */
.partners {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 56px;
  border-top: 0;
}

.partners-title {
  margin: 0 0 26px;
  color: #6a3114;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .025em;
  text-align: left;
}

.partner-logos-original {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.partner-logo-item {
  flex: 1 1 0;
  min-width: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logos-original .partner-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 145px !important;
  max-height: 66px !important;
  object-fit: contain;
}

/* The narrow company-name logos look closer to the Wix original
   when they are given a little more usable width. */
.partner-logos-original .partner-logo-item:nth-child(1) img,
.partner-logos-original .partner-logo-item:nth-child(4) img,
.partner-logos-original .partner-logo-item:nth-child(5) img {
  max-width: 154px !important;
}

@media (max-width: 820px) {
  .partners {
    width: min(100% - 28px, 980px);
    padding: 44px 0 50px;
  }

  .partners-title {
    margin-bottom: 22px;
    text-align: center;
  }

  .partner-logos-original {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 28px;
  }

  .partner-logo-item {
    flex: 0 1 calc(33.333% - 20px);
    height: 70px;
  }

  .partner-logos-original .partner-logo-item img {
    max-width: 150px !important;
    max-height: 62px !important;
  }
}

@media (max-width: 560px) {
  .partner-logo-item {
    flex-basis: calc(50% - 16px);
  }
}



/* ============================================================
   Member-company logos — exact original 2-row / 3-column layout
   Row 1: Yoshimi / SEED / Shimadzu
   Row 2: Fuji / TAUNS / Akiyama
   ============================================================ */
.partner-logos-2x3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, auto);
  column-gap: 64px;
  row-gap: 34px;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.partner-logos-2x3 .partner-logo-item {
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logos-2x3 .partner-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 210px !important;
  max-height: 72px !important;
  object-fit: contain;
}

/* Fine-tune visual balance for wide/narrow logos */
.partner-logos-2x3 .partner-logo-item:nth-child(1) img,
.partner-logos-2x3 .partner-logo-item:nth-child(4) img,
.partner-logos-2x3 .partner-logo-item:nth-child(6) img {
  max-width: 220px !important;
}

@media (max-width: 820px) {
  .partner-logos-2x3 {
    column-gap: 28px;
    row-gap: 28px;
    max-width: 720px;
  }

  .partner-logos-2x3 .partner-logo-item img {
    max-width: 170px !important;
    max-height: 64px !important;
  }
}

@media (max-width: 560px) {
  .partner-logos-2x3 {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 24px;
    row-gap: 24px;
  }
}



/* Member-company logo links */
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.partner-logo-link img {
  transition: opacity .18s ease, transform .18s ease;
}

.partner-logo-link:hover img,
.partner-logo-link:focus-visible img {
  opacity: .78;
  transform: translateY(-1px);
}

.partner-logo-link:focus-visible {
  outline: 2px solid #966d4d;
  outline-offset: 5px;
  border-radius: 2px;
}


/* Contact form */
.contact-form-lead { margin: 28px 0 22px !important; color: #6a3114; }
.contact-form { width: min(680px, 100%); margin: 28px auto 0; text-align: left; }
.contact-form-field { margin-bottom: 20px; }
.contact-form-field label {
  display: block; margin-bottom: 7px; color: #6a3114;
  font-size: 13px; letter-spacing: .035em;
}
.required-mark {
  display: inline-block; margin-left: 6px; padding: 1px 7px;
  border-radius: 999px; background: #f7e8e3; color: #a3493e;
  font-size: 10px; line-height: 1.6; vertical-align: 1px;
}
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #d9ccc4; background: rgba(255,255,255,.96);
  color: #6a3114; font: inherit; font-size: 14px; line-height: 1.7;
  padding: 11px 12px; outline: none;
}
.contact-form textarea { min-height: 180px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #a98a77; box-shadow: 0 0 0 2px rgba(150,109,77,.09);
}
.contact-submit {
  display: block; min-width: 150px; margin: 28px auto 0; padding: 10px 24px;
  border: 1px solid #a98a77; background: #fff; color: #6a3114;
  font: inherit; font-size: 13px; letter-spacing: .06em; cursor: pointer;
}
.contact-submit:hover { background: #fbf5f1; color: #966d4d; }
.contact-honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}
.contact-result-page {
  width: min(680px, calc(100% - 32px)); margin: 70px auto 90px; text-align: center;
}
.contact-result-page h1 { margin: 0 0 24px; color: #966d4d; font-size: 26px; }
