@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_semi_bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./materials/nourd_heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f0e7;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf9;
  --text: #1f1a17;
  --muted: #6b625b;
  --line: rgba(31, 26, 23, 0.1);
  --accent: #8d5e3c;
  --accent-deep: #5d3a23;
  --shadow: 0 24px 70px rgba(69, 46, 30, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nourd", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 141, 101, 0.2), transparent 34%),
    radial-gradient(circle at top right, rgba(93, 58, 35, 0.13), transparent 28%),
    linear-gradient(180deg, #f1e8db 0%, var(--bg) 42%, #f8f3ec 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 75%);
  opacity: 0.32;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background: #222;
  border-bottom: 1px solid #080808;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  transition: all 0.35s;
}

.site-header__inner,
.site-footer__inner,
.site-footer__bottom {
  width: min(calc(100% - 30px), 1360px);
  margin: 0 auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.site-brand__logo,
.site-footer__logo {
  display: block;
  width: 255px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding-left: 30px;
}

.site-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__item {
  position: relative;
}

.site-header__item-head {
  display: flex;
  align-items: center;
}

.site-header__nav a {
  display: block;
  padding: 0 15px;
  color: #9d9d9d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 76px;
  transition: color 0.35s;
}

.site-header__submenu-toggle {
  display: none;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9d9d9d;
  cursor: pointer;
}

.site-header__submenu-toggle::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: #fff;
}

.site-header__item--has-submenu > .site-header__item-head > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.site-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 180px;
  padding: 10px 5px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-header__submenu li a {
  padding: 8px 14px;
  color: #222;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: none;
  white-space: nowrap;
}

.site-header__submenu li a:hover,
.site-header__submenu li a:focus-visible {
  color: #0c3;
  background: transparent;
}

.site-header__item:hover > .site-header__submenu,
.site-header__item:focus-within > .site-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-brand:hover,
.site-brand:focus-visible {
  opacity: 0.96;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 108px auto 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 248, 240, 0.76)),
    url("./materials/hero_img.png") center center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.74), rgba(245, 240, 231, 0.56));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 94, 60, 0.2), transparent 62%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

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

.brand-mark {
  width: 68px;
  height: 68px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 26, 23, 0.07);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #ffffff;
  color: var(--text);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 24px 4px 10px;
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Nourd", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 700;
  line-height: 0.94;
  max-width: 10ch;
}

h2 {
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.hero-copy p {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button-primary {
  color: #fff9f3;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 34px rgba(93, 58, 35, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.94)),
    #fff;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: rise 900ms ease 120ms both;
  text-align: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(31, 26, 23, 0.08);
  pointer-events: none;
}

.hero-panel .logo-lockup {
  width: min(320px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  justify-self: center;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 32ch;
  text-align: left;
}

.hero-panel-quote {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-panel-verse {
  margin-top: 8px;
  font-size: 1.02rem;
  font-weight: 300;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  margin-top: 24px;
}

.section-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.section-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.schedule-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}

.schedule-item:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 94, 60, 0.25);
}

.schedule-item strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 600;
}

.schedule-time {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 26, 23, 0.08);
  font-weight: 600;
  white-space: nowrap;
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(141, 94, 60, 0.08);
  color: var(--accent-deep);
  font-weight: 500;
}

.stack {
  display: grid;
  gap: 24px;
}

.contact-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.contact-item strong,
.contact-item a {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}

.social-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(141, 94, 60, 0.25);
}

.social-link strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

.social-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.social-copy {
  min-width: 0;
}

.social-copy strong {
  overflow-wrap: anywhere;
}

.site-footer {
  margin-top: 64px;
  padding: 15px 0;
  background: #0c3;
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 6px;
}

.site-footer__contact {
  display: none;
}

.site-footer__sns {
  display: table;
  margin: 5px auto;
}

.site-footer__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #0c3;
  text-decoration: none;
}

.site-footer__sns-link svg {
  width: 12px;
  height: 12px;
}

.site-footer__bottom {
  display: block;
  padding: 0;
  border-top: 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__nav,
  .site-header__menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 10px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin-top: 132px;
    margin-bottom: 36px;
  }

  .hero,
  .section-card {
    padding: 20px;
    border-radius: 28px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
  }

  .site-header__inner,
  .site-footer__bottom {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    gap: 12px;
    min-height: 72px;
  }

  .site-brand__logo {
    width: 210px;
    padding-left: 0;
  }

  .site-header__toggle {
    display: inline-block;
  }

  .site-header__nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    padding: 12px 0 16px;
    border-top: 1px solid #101010;
  }

  .site-header.is-open .site-header__nav {
    display: block;
  }

  .site-header__menu {
    display: block;
    width: 100%;
  }

  .site-header__item--has-submenu > a::after {
    display: none;
  }

  .site-header__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header__item-head {
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
  }

  .site-header__nav a {
    line-height: 1.2;
    padding: 14px 0;
  }

  .site-header__item-head > a {
    flex: 1;
  }

  .site-header__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__item.is-submenu-open .site-header__submenu-toggle::before {
    transform: rotate(180deg);
  }

  .site-header__submenu {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 12px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header__item.is-submenu-open > .site-header__submenu {
    display: block;
  }

  .site-header__submenu li a {
    color: #cfcfcf;
    padding: 8px 0;
  }

  .site-header__submenu li a:hover,
  .site-header__submenu li a:focus-visible {
    color: #fff;
  }

  h1 {
    max-width: none;
  }

  .hero-panel {
    padding: 22px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .social-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-time {
    white-space: normal;
  }
}
