:root {
  --ink: #3b4252;
  --muted: #74777b;
  --line: #e9e3dc;
  --paper: #fdfcfa;
  --quiet: #f8f5f0;
  --deep: #3b4252;
  --sage: #a8b5a0;
  --blue: #64717b;
  --plum: #9b858d;
  --warm: #d4a5a5;
  --gold: #8b7355;
  --card: #fdfcfa;
  --card-line: #e8e2d7;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --shadow: 0 22px 54px rgba(21, 27, 30, 0.08);
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  background: var(--paper);
  letter-spacing: 0;
}

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

[id] {
  scroll-margin-top: 150px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 20px 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 252, 250, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
}

.brand-kicker {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(10px, 2.6vw, 12px);
  font-weight: 500;
  line-height: 1.4;
}

.brand-kicker::before,
.brand-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 8px 4px 0;
  border-top: 2px dotted #d6c7bf;
}

.brand-kicker::after {
  margin: 0 0 4px 8px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-name {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(25px, 5.3vw, 42px);
  font-weight: 400;
  line-height: 1;
  white-space: normal;
}

.brand-icon {
  flex: 0 0 auto;
  width: clamp(34px, 4.6vw, 42px);
  height: clamp(34px, 4.6vw, 42px);
  margin-left: 10px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.search-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 17px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-button {
  gap: 6px;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.category-nav {
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 15px 0 16px;
  scrollbar-width: none;
  white-space: nowrap;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  color: #3f4652;
  font-size: clamp(14px, 3.4vw, 17px);
  font-weight: 500;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: #f7f7f5;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: min(48svh, 520px);
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253, 252, 250, 0.82), rgba(253, 252, 250, 0.54) 35%, rgba(253, 252, 250, 0.18) 66%, rgba(253, 252, 250, 0.1)),
    linear-gradient(180deg, rgba(253, 252, 250, 0.08), rgba(253, 252, 250, 0.22));
}

.hero-panel {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 4vw, 46px);
  width: min(440px, calc(100% - 36px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  z-index: 2;
}

.hero-panel p {
  margin: 0 0 8px;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

.hero-panel h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.9vw, 36px);
  font-weight: 400;
  line-height: 1.45;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: #4e5557;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.hero-actions,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions a,
.text-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
}

.hero-actions a {
  min-width: 156px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(253, 252, 250, 0.88);
  color: var(--deep);
  text-shadow: none;
}

.hero-actions a + a {
  background: rgba(17, 63, 70, 0.72);
  color: #fff;
}

.text-links a {
  padding: 0 14px;
  border: 1px solid #cfd7d3;
  background: var(--card);
  color: var(--deep);
  font-size: 14px;
}

.entry,
.intro,
.featured,
.search-panel,
.portal-intro,
.positioning,
.note-grid,
.magazines,
.latest-posts,
.mens,
.latest,
.profile {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px 18px 0;
}

.intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 0.62fr);
  gap: 22px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.portal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 0.85fr;
  gap: 28px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.portal-intro h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 4.7vw, 34px);
  font-weight: 400;
}

.portal-intro p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #4f5658;
  font-size: clamp(15px, 3.4vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.portal-links {
  display: grid;
  gap: 10px;
}

.portal-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dededb;
  border-radius: 8px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
}

.portal-links a:first-child {
  background: var(--deep);
  color: #fff;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.positioning h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 4.6vw, 33px);
  font-weight: 400;
}

.positioning p:not(.section-kicker) {
  margin: 14px 0 0;
  color: #4f5658;
  font-size: clamp(15px, 3.4vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.positioning-tags {
  display: flex;
  width: min(100%, 380px);
  min-height: 248px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  margin-inline: auto;
}

.positioning-tags span {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--card);
  color: #3d4547;
  font-size: 14px;
  font-weight: 500;
}

.portrait {
  display: grid;
  width: clamp(180px, 14vw, 200px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(232, 226, 215, 0.9);
  border-radius: 50%;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(24, 35, 36, 0.1);
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-copy h2 {
  color: var(--deep);
  font-family: var(--serif);
  font-size: clamp(23px, 4.9vw, 32px);
  font-weight: 400;
}

.intro-copy p:not(.section-kicker) {
  margin: 12px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.6vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

.intro-facts {
  display: grid;
  gap: 0 !important;
}

.intro-facts div {
  display: flex;
  min-height: auto !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.intro-facts strong {
  color: var(--deep);
  font-family: var(--serif);
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.intro-facts span {
  color: #8b8680 !important;
  font-size: 11px !important;
  font-weight: 500;
  text-align: right;
  text-transform: lowercase !important;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.section-kicker {
  margin: 0;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

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

h1,
h2,
h3,
h4,
h5,
.section-title,
.card-title,
.magazine-title {
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.section-head h2,
.mens h2,
.profile h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 4.8vw, 30px);
  font-weight: 400;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entry-card {
  display: grid;
  min-height: 172px;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(28, 38, 39, 0.07);
}

.entry-card span,
.article-card span,
.service-card span,
.mens-points span {
  width: fit-content;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.entry-card span {
  text-transform: none;
}

.entry-card strong {
  font-family: var(--serif);
  font-size: clamp(18px, 4.2vw, 22px);
  font-weight: 400;
  line-height: 1.25;
}

.entry-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.entry-card.is-blog {
  background: #f9faf7;
}

.entry-card.is-analysis {
  background: #f6f8f9;
}

.entry-card.is-line {
  background: #faf8f6;
}

.section-card {
  display: flex !important;
  min-height: 240px !important;
  flex-direction: column !important;
  justify-content: flex-start;
}

.section-card span {
  text-transform: none !important;
}

.pinned {
  padding-top: 28px;
}

.article-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
}

.article-card {
  min-width: 0;
}

.article-card a {
  display: grid;
  gap: 10px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.62;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}

.article-card span {
  display: block;
  color: var(--sage);
}

.article-card h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 3.8vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.featured .article-strip {
  align-items: stretch !important;
}

.featured .article-card {
  display: flex !important;
  height: 100% !important;
  flex-direction: column !important;
}

.featured .article-card a {
  display: flex !important;
  height: 100% !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.featured .article-card small {
  margin-top: auto !important;
}

.reading-paths {
  display: grid;
  gap: 22px;
}

.reading-group {
  padding: clamp(18px, 3.2vw, 28px);
  border: 1px solid var(--card-line);
  border-radius: 8px;
}

.reading-group-note {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(248, 245, 240, 0.72)),
    #fdfcfa;
}

.reading-group-blog {
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.94), rgba(243, 244, 241, 0.76)),
    #f9faf7;
}

.reading-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.reading-group-head h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.5;
}

.reading-group-head p:not(.section-kicker) {
  margin: 8px 0 0;
  color: #5a6470;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
}

.reading-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded8cf;
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.62);
  color: #3b4252;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.reading-group .article-card img {
  background: #fffefe;
}

.reading-group-blog .article-card h3 {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.65;
}

.reading-group-blog .article-card small {
  color: #7b7f7d;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-grid {
  padding-top: 38px;
}

.magazine-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 18px;
}

.magazine-article-grid article {
  min-width: 0;
  height: 100%;
}

.magazine-article-grid a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.magazine-article-grid img {
  width: 100%;
  aspect-ratio: 1.78;
  border: 1px solid #e8e8e5;
  border-radius: 8px;
  object-fit: cover;
}

.magazine-article-grid h3 {
  flex-grow: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 3.8vw, 22px);
  font-weight: 400;
  line-height: 1.65;
}

.magazine-article-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.search-panel h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(21px, 4.4vw, 28px);
  font-weight: 400;
}

.search-box {
  display: grid;
  gap: 10px;
  justify-self: stretch;
}

.search-box p {
  margin: 0;
  color: var(--deep);
  font-size: clamp(14px, 2.8vw, 16px);
  font-weight: 500;
  line-height: 1.7;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-form label {
  position: relative;
  display: block;
}

.search-form-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #e8e2d7;
  border-radius: 4px;
  padding: 0 12px 0 36px;
  background: #fffefe;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.search-form input:focus {
  border-color: #c9a876;
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.15);
}

.search-form button {
  min-height: 40px;
  border: 1px solid #e8e2d7;
  border-radius: 4px;
  padding: 0 16px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
}

.search-form button:hover {
  border-color: #c9a876;
}

.mens {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 14px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.magazines {
  padding-top: 42px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.magazine-grid a {
  display: grid;
  min-height: 190px;
  align-content: start;
  gap: 9px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(28, 38, 39, 0.06);
}

.magazine-grid span,
.post-list span {
  width: fit-content;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none !important;
}

.magazine-grid strong {
  font-family: var(--serif);
  font-size: clamp(17px, 3.7vw, 21px);
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
}

.magazine-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.latest-posts {
  padding-top: 38px;
}

.post-list {
  display: grid;
  border-top: 1px solid #e8e2d7;
}

.post-list a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e2d7;
}

.post-list span {
  text-transform: none !important;
}

.post-list strong {
  font-family: var(--serif);
  font-size: clamp(16px, 3.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
}

.post-list small {
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.mens-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.mens-lead span {
  display: block;
}

.mens-points {
  display: grid;
  gap: 12px;
}

.mens-points div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

.mens-points strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.mens-points small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.latest {
  padding-bottom: 8px;
}

.consultation {
  padding-top: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid {
  gap: 16px;
}

.service-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.96), rgba(250, 248, 244, 0.82)),
    var(--card);
}

.service-card-primary {
  border-color: #d8d3ca;
}

.monitor-card {
  background:
    linear-gradient(145deg, rgba(253, 252, 250, 0.96), rgba(247, 244, 238, 0.9)),
    var(--card);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 4.4vw, 25px);
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: #47504f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin-top: 4px;
}

.price-row strong {
  color: #3b4252;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
}

.price-row strong .currency {
  margin-left: 2px;
  font-size: 0.62em;
  font-weight: 400;
}

.price-row span {
  color: #8b8680;
  font-family: var(--serif);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.service-card .price-subtext,
.service-card .meta-text,
.service-card small {
  color: #8b8680 !important;
  font-family: var(--serif) !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.service-card small {
  align-self: end;
  color: var(--muted);
  font-weight: 400;
}

.service-flow-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 16px;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  color: #3b4252;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.service-flow-link:hover {
  border-color: #c9a876;
  background: #f8f5f0;
}

.service-card > span {
  text-transform: none !important;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.service-notes div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

.service-notes .service-note-wide {
  grid-column: 1 / -1;
  gap: 10px;
  padding: 18px 20px;
}

.service-notes span {
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  text-transform: none !important;
}

.service-notes strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.service-notes small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.service-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 2px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  list-style: none;
}

.service-notes li {
  position: relative;
  padding-left: 14px;
}

.service-notes li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9a876;
  content: "";
}


.profile {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 58px;
}

.profile p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #46504f;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 400;
  line-height: 1.9;
}

.profile-links {
  display: grid;
  gap: 10px;
}

.profile-links a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd7d3;
  border-radius: 8px;
  background: var(--card);
  color: var(--deep);
  font-weight: 500;
}

.profile-links a:first-child {
  background: var(--deep);
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card);
}

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

.contact-form .wpcf7-form p {
  margin: 0;
}

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

.contact-form span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--card-line);
  border-radius: 4px;
  background: #fffefe;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline-color: var(--gold);
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.16);
}

.contact-form button,
.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0 28px;
  background: #5a6470;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 32px 18px 44px;
  border-top: 1px solid var(--line);
  color: #5a6470;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
}

.footer-links a {
  color: #5a6470;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

.footer-tagline {
  margin: 2px 0 0;
  color: #3b4252;
  font-size: 12px;
  font-weight: 400;
}

.site-footer small {
  color: #8b8680;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
}

.section-kicker,
.section-label,
.featured-tag,
.eyebrow,
.category-label,
.card-label,
.intro-facts span,
.entry-card span,
.article-card span,
.service-card span,
.service-notes span,
.magazine-grid span,
.post-list span,
h2 .label,
h3 .label,
[class*="label"],
[class*="tag"],
[class*="eyebrow"] {
  text-transform: none !important;
}

.search-dialog {
  width: min(92vw, 520px);
  border: 0;
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(28, 34, 36, 0.24);
  backdrop-filter: blur(3px);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.search-dialog label {
  display: grid;
  gap: 10px;
  color: var(--deep);
  font-weight: 500;
}

.search-dialog input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd7d3;
  border-radius: 6px;
  padding: 0 14px;
  outline-color: var(--sage);
}

@media (min-width: 768px) {
  .menu-toggle,
  .hamburger-menu,
  .nav-toggle,
  .menu-button,
  [data-menu-toggle],
  [class*="hamburger"],
  [class*="menu-toggle"] {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-kicker::before,
  .brand-kicker::after {
    width: 24px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    margin-left: 8px;
  }

  .category-nav {
    gap: 26px;
  }

  .hero img {
    height: 48svh;
    min-height: 345px;
  }

  .entry-grid,
  .service-grid,
  .service-notes,
  .intro,
  .search-panel,
  .portal-intro,
  .positioning,
  .magazine-grid,
  .magazine-article-grid,
  .mens,
  .profile {
    grid-template-columns: 1fr;
  }

  .service-notes ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .portrait {
    width: 96px;
  }

  .post-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .post-list small {
    white-space: normal;
  }

  .article-strip {
    gap: 24px;
  }

  .reading-group-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reading-link {
    justify-self: start;
    white-space: normal;
  }

  .positioning {
    align-items: start;
  }

  .positioning-tags {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    gap: 10px;
    margin-inline: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px 10px;
  }

  .brand-name {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .brand-kicker {
    font-size: 10px;
  }

  .brand-kicker::before,
  .brand-kicker::after {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .search-icon {
    width: 25px;
    height: 25px;
    border-width: 4px;
  }

  .menu-button span {
    width: 27px;
  }

  .search-panel button {
    justify-self: stretch;
  }

  .hero-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 22px 16px 20px;
    padding: 0;
  }
}

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 24px 40px 0;
  }

  .header-actions {
    grid-column: 3;
  }

  .category-nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .entry,
  .intro,
  .featured,
  .search-panel,
  .portal-intro,
  .positioning,
  .note-grid,
  .magazines,
  .latest-posts,
  .mens,
  .latest,
  .profile {
    padding-inline: 30px;
  }

  .entry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reading-group-blog .article-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
