:root {
  --light: #F5F0F2;
  --base: #EFD9E2;
  --accent: #786828;
  --dark: #2E2A26;
  --logo-gold: #726732;
  --bg: #FAF8F7;
  --text: #2E2A26;
  --text-muted: #7A7470;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 217, 226, 0.4);
}

.header-logo img {
  width: 140px;
  height: auto;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

nav a:hover { color: var(--accent); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--accent); }
nav a.active::after { width: 100%; }

/* ===== PAGE CONTENT ===== */
.page-content {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding-top: 62px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

/* ===== SPACER ===== */
.spacer {
  height: 5rem;
}

/* ===== NEWS SECTION ===== */
.news-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3rem;
}

.news-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(239, 217, 226, 0.4);
}

.news-item:first-child {
  border-top: 1px solid rgba(239, 217, 226, 0.4);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-date {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.news-category {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(120, 104, 40, 0.08);
  padding: 0.2em 0.8em;
  border-radius: 2px;
}

.news-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-body {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 2.2;
  color: var(--text-muted);
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--accent);
}

/* ===== NEWS DETAIL ===== */
.news-back {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 3rem 0;
}

.news-back a {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.news-back a:hover {
  color: var(--accent);
}

.news-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
}

.news-detail .news-meta {
  margin-bottom: 1.5rem;
}

.news-detail-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(239, 217, 226, 0.4);
}

.news-detail-body {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 2.4;
  color: var(--text-muted);
}

.news-detail-body p + p {
  margin-top: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 7rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  max-width: 860px;
  margin: 0 auto;
}
.contact-label {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.contact-lead {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.contact-item { text-align: center; }
.contact-item-label {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-item-value {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-decoration: none;
}
a.contact-item-value:hover { color: var(--accent); }
.contact-item-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.contact-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 2;
}

/* ===== FOOTER ===== */
footer {
  padding: 5rem 3rem 3rem;
  border-top: 1px solid rgba(239, 217, 226, 0.35);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
}

.footer-col a {
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(239, 217, 226, 0.25);
}

.footer-bottom small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-sns {
  display: flex;
  gap: 1.5rem;
}

.footer-sns a {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-sns a:hover { color: var(--accent); }

/* ===== FOOTER RECRUIT ===== */
.footer-recruit {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(239, 217, 226, 0.25);
  text-align: center;
}
.footer-recruit p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-recruit a {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(120, 104, 40, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}
.footer-recruit a:hover {
  border-bottom-color: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger - hidden on desktop */
.nav-toggle { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; position: fixed; }
  .header-logo img { width: 110px; height: auto; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 22px; height: 14px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
  }
  .nav-toggle span { display: block; width: 100%; height: 1px; background: var(--accent); transition: transform 0.3s ease, opacity 0.3s ease; }
  header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,248,247,0.98); backdrop-filter: blur(12px); padding: 1.5rem 2rem 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(239,217,226,0.4); }
  header.nav-open nav { display: flex; }
  nav a { font-size: 0.9rem; letter-spacing: 0.08em; }

  .page-header { padding: 3rem 1.5rem; }
  .page-header h1 { font-size: 1.8rem; }
  .news-section { padding: 0 1.5rem; }
  .news-item { padding: 2rem 0; }
  .news-title { font-size: 1.1rem; }
  .news-back { padding: 2rem 1.5rem 0; }
  .news-detail { padding: 2rem 1.5rem 4rem; }
  .news-detail-title { font-size: 1.5rem; }
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  footer { padding: 4rem 1.5rem 2rem; }
}
