/* ===== GOOGLE FONTS ===== */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Noto+Serif+JP:wght@300;400;500&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #e8e3d8;
  --text: #3a3530;
  --muted: #8a8278;
  --border: #c8c3ba;
  --border-light: #ddd9d0;
  --bg-card: #dedad2;
  --bg-fee: #eae7e0;
  --hover: #8e8888;
  --hover-bg: rgba(142, 136, 136, 0.3);
  /* 本文・UI用：明朝体ベース（日本語）＋EB Garamond（欧文）*/
  --font-main: "EB Garamond", "Noto Serif JP", "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "HiraMinProN-W3", serif;
  /* 見出し・ロゴ用：同上（デザイン意図で使い分けるための別変数）*/
  --font-display: "EB Garamond", "Noto Serif JP", "Yu Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", serif;
  /* 数字・英字専用：本文と高さ・太さを合わせたセリフ体 */
  --font-numeral: "EB Garamond", "Noto Serif JP", serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.hd {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 32px;
}
.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.hd-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
}
.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.hd-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.hd-nav a {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.hd-nav a:hover {
  color: var(--hover);
}
.btn-inq {
  border: 1px solid var(--text);
  background: none;
  padding: 7px 18px;
  font-size: 11px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.btn-inq:hover {
  background: var(--hover-bg);
  color: #fff;
  border-color: var(--hover);
}

/* ===== PAGE TITLE ===== */
.ptitle {
  text-align: center;
  padding: 50px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ptitle .en {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 70px);
  color: #d4cfc6;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  display: block;
}
.ptitle .ja {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 1;
}

/* ===== SECTION HEADING ===== */
.sh {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 52px 0 24px;
}

/* ===== INNER WRAPPER ===== */
.inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) 80px;
}

/* ===== HOME HERO ===== */
h1.hero-label {
  font-size: 11px !important;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}
.hero-label {
  text-align: right;
  padding: 14px clamp(16px, 4vw, 48px) 4px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.hero-img {
  width: 100%;
  max-width: 1440px;
  max-height: 460px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* ===== INTRO ===== */
.intro-wrap {
  max-width: 400px;
  margin: 48px auto;
  text-align: center;
  font-size: 14px;
  line-height: 2.5;
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}
.intro-wrap a {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  font-family: var(--font-display);
  transition: opacity 0.2s;
}
.intro-wrap a:hover {
  opacity: 0.3;
}

/* ===== HOME 2COL（menu section） ===== */
.home-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.home-2col-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.home-2col-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.home-menu-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;

  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
}
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mbtn {
  display: block;
  background: none;
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.mbtn:last-child {
  border-bottom: 1px solid var(--border);
}
.mbtn:hover {
  background: var(--hover-bg);
  color: var(--bg);
  border-color: var(--hover);
}

/* ===== CAROUSEL ===== */
.about-artist {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  padding: 14px 14px;
  letter-spacing: 0.06em;
  font-size: 13px;
  font-weight: 500;
}
.carousel-outer {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) 48px;
}
.carousel-wrap {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}
.carousel-slide img {
  width: 240px;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
}
.v-text {
  position: static;
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
}
.v-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.carousel-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.c-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #b0aba4;
  background: none;
  font-size: 14px;
  color: #7a7068;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.c-btn:hover {
  background: var(--hover-bg);
  color: var(--bg);
  border-color: var(--hover);
}
.c-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8c3ba;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.c-dot.on {
  background: var(--text);
}

/* ===== BEGINNERS（初めての方へ） ===== */
.beg {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px clamp(16px, 4vw, 48px);
}
.beg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.beg-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beg h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  width: 100%;
  text-align: center;
}
.beg p {
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 16px;
  margin: 0 auto;
  font-weight: 300;
}
.beg-img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  display: block;
  padding-left: 30px;
}

/* ===== BUTTON ===== */
.btn-link {
  display: inline-block;
  border: 1px solid var(--text);
  padding: 10px 32px;
  font-size: 12px;
  color: var(--text);
  background: none;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.btn-link:hover {
  background: var(--hover-bg);
  color: var(--bg);
  border-color: var(--hover);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.blog-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.blog-item a {
  transition: opacity 0.2s;
}
.blog-item a:hover {
  opacity: 0.3;
}

.blog-item p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
  font-weight: 300;
}
.blog-date {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.blog-more {
  text-align: center;
  margin: 28px 0 60px;
}

/* ===== FOOTER CTA ===== */
.fcta {
  text-align: center;
  padding: 60px 20px;
}
.fcta-ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.fcta-en {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 54px);
  color: #d4cfc6;
  font-weight: 300;
  letter-spacing: 0.08em;
  display: block;
  line-height: 1;
}
.fcta-ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}
.fcta p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 26px clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.ft-left {
  font-size: 11px;
  color: var(--muted);
  line-height: 2.2;
}
.ft-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #b0aba4;
  border-radius: 3px;
  margin-bottom: 6px;
  margin-right: 10px;
  transition: opacity 0.2s;
}
.ft-insta:hover {
  opacity: 0.3;
}
.ft-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: flex-end;
}
.ft-nav a {
  font-size: 12px;
  color: var(--text);
  transition: color 0.2s;
}
.ft-nav a:hover {
  color: var(--hover);
}
.ft-bottom {
  text-align: center;
  padding: 13px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--border-light);
}
.ft-bottom a {
  color: var(--muted);
  transition: opacity 0.2s;
}
.ft-bottom a:hover {
  opacity: 0.3;
}

/* ===== CLASS ===== */
.class-sh {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 52px 0 24px;
}
.class-sh-sub {
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
}
.class-card {
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.class-head {
  background: var(--bg-card);
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.class-body {
  padding: 20px;
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
}
.class-body p + p {
  margin-top: 12px;
}
.class-fee {
  background: var(--bg-fee);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #5a5550;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  margin: 32px 0;
  letter-spacing: 0.06em;
  line-height: 2;
}
.about-img {
  width: 100%;
  height: clamp(200px, 35vw, 300px);
  object-fit: cover;
  margin-bottom: 40px;
}

/* ===== WORKS THUMBNAILS ===== */
.works-thumbs {
  margin: 32px 0 8px;
}

.works-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.works-thumb-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-card);
}

.works-thumb-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.works-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.works-thumb-item:hover img {
  transform: scale(1.04);
}

.works-thumbs-more {
  text-align: right;
  margin-top: 10px;
}

.works-thumbs-more a {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.works-thumbs-more a:hover {
  opacity: 0.5;
}

@media (max-width: 640px) {
  .works-thumbs-grid {
    gap: 6px;
  }
}
.about-body {
  font-size: 13px;
  line-height: 2.4;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.prof-sec {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  margin-top: 36px;
}
.prof-label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 6px;
}
.prof-name {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 8px 0 4px;
}
.prof-sub {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}
.ctbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--font-main);
}
.ctbl td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.9;
  font-weight: 300;
  font-family: var(--font-main);
}
.ctbl td:first-child {
  width: 130px;
  color: var(--muted);
  white-space: nowrap;
}
.sec-label {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 24px 0 10px;
}
.prof-career {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 2.2;
  font-weight: 300;
}
.prof-career a {
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.prof-career a:hover {
  opacity: 0.3;
}
/* ===== NEWS ===== */
.news-wrap {
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 0 clamp(20px, 4vw, 40px);
}
.news-list {
  list-style: none;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 300;
}
.news-item:first-child {
  border-top: 1px solid var(--border-light);
}
.news-item a {
  flex: 1;
  letter-spacing: 0.03em;
  line-height: 1.7;
  transition: opacity 0.2s;
}
.news-item a:hover {
  opacity: 0.4;
}
.news-date {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.news-tag {
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 1px 0;
  white-space: nowrap;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  display: inline-block;
}
.news-more {
  text-align: right;
  margin-top: 16px;
}
.news-more a {
  font-family: var(--font-display);
  font-size: 11px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.news-more a:hover {
  opacity: 0.3;
}
.news-article {
  border-top: 1px solid var(--border-light);
  padding: 0 0 32px;
  margin-bottom: 30px;
}
.news-article:last-child {
  border-bottom: 1px solid var(--border-light);
}
.news-article-card-head {
  background: var(--bg-fee);
  padding: 11px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.news-article-title {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}
.news-article-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0 0;
}
.news-article-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-article-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}
.news-article-body {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
}
.news-article-body p + p {
  margin-top: 8px;
}
.news-article-link {
  margin-top: 14px;
  text-align: right;
}
.news-article-link a {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.news-article-link a:hover {
  opacity: 0.5;
}

/* ===== ACCESS ===== */
.access-note {
  font-size: 13px;
  line-height: 2.2;
  text-align: left;
  margin: 16px 0 28px;
  font-weight: 300;
  padding-left: 70px;
}
.access-note small {
  padding-left: 12px;
  font-size: 12px;
  color: var(--muted);
}
.map-wrap {
  width: 100%;
  height: 260px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.itbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--font-main);
}
.itbl tr {
  border-bottom: 1px solid var(--border-light);
}
.itbl th {
  text-align: left;
  padding: 13px 0;
  width: 120px;
  font-family: var(--font-main);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
  vertical-align: top;
}
.itbl td {
  padding: 13px 0;
  line-height: 1.9;
  font-weight: 300;
  font-size: 13px;
  font-family: var(--font-main);
}
.itbl small {
  font-size: 11px;
  color: var(--muted);
}
.num {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.03em;
  font-feature-settings:
    "lnum" 1,
    "tnum" 0;
  vertical-align: baseline;
}

/* ===== JOIN ===== */
.join-intoro {
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
}
.blist {
  list-style: none;
  font-size: 14px;
  line-height: 2.1;
  padding-left: 1em;
  font-weight: 300;
}
.blist li {
  position: relative;
  padding-left: 0.5em;
}
.blist li::before {
  content: "・";
  position: absolute;
  left: -1em;
  color: var(--muted);
}
.blist-group {
  margin-bottom: 28px;
}
.blist-group + .blist-group {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  margin-top: 0;
}

/* ===== CONTACT ===== */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s;
  font-weight: 300;
}
.form-input:focus {
  border-color: var(--text);
}
.form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  min-height: 140px;
  font-family: inherit;
  resize: vertical;
  color: var(--text);
  transition: border-color 0.2s;
  font-weight: 300;
}
.form-textarea:focus {
  border-color: var(--text);
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
}
.form-select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
/* ===== PRIVACY ===== */
.priv-intro {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
}
.priv-sec {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.priv-sec:last-child {
  border-bottom: 1px solid var(--border);
}
.priv-sec h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}
.priv-sec p,
.priv-sec li {
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
}
.priv-sec ul {
  padding-left: 1.4em;
  list-style: disc;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .home-2col {
    grid-template-columns: 1fr;
  }
  .beg-inner {
    grid-template-columns: 1fr;
  }
  .beg-img {
    height: 220px;
  }
  .carousel-slide {
    grid-template-columns: 1fr;
  }
  .carousel-slide img {
    width: 100%;
    height: 200px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .ft-nav {
    align-items: flex-start;
  }
  /* news */
  .news-article-inner {
    grid-template-columns: 1fr;
  }
  .news-article-img,
  .news-article-img img {
    width: 100%;
    height: 200px;
  }
  .news-item {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .news-item a {
    flex: 0 0 100%;
    order: 3;
    font-size: 12px;
    margin-top: 2px;
  }
  .news-date {
    order: 1;
    font-size: 10px;
  }
  .news-tag {
    order: 2;
    width: 46px;
    text-align: center;
    padding: 1px 0;
  }
}

/* ===== HAMBURGER / DRAWER ===== */
.hd-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hd-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}
.hd-menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hd-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.hd-menu-btn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hd-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(280px, 80vw);
  height: 100vh;
  background: var(--bg);
  z-index: 300;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
}
.hd-drawer.open {
  right: 0;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer-nav a {
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.08em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.drawer-nav a:first-child {
  border-top: 1px solid var(--border-light);
}
.drawer-nav a:hover {
  color: var(--hover);
}

.hd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 53, 48, 0.35);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.hd-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .hd-nav {
    display: none !important;
  }
  .hd-menu-btn {
    display: flex;
  }
}

/* ===== FAQ ===== */
.faq-list {
  margin: 0 0 60px;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::before {
  content: "Q";
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.faq-q-text {
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
details[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  padding: 12px 20px 20px 44px;
  font-size: 13px;
  line-height: 2.2;
  font-weight: 300;
  color: var(--text);
  position: relative;
  background: var(--bg-fee);
}
.faq-a::before {
  content: "A";
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  position: absolute;
  left: 20px;
  top: 12px;
  letter-spacing: 0.06em;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: var(--text);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.2s;
  z-index: 100;
  font-family: inherit;
}
.scroll-top.visible {
  opacity: 1;
}
.scroll-top:hover {
  background: var(--hover-bg);
}